:root {
  --blue: #2563eb;
  --blue-hover: #1d4ed8;
  --blue-soft: #dbeafe;
  --blue-mist: #eff6ff;
  --blue-tint: #f4f8ff;
  --navy: #0f172a;
  --ink: #1e293b;
  --slate: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --green: #16a34a;
  --green-soft: #ecfdf5;
  --orange: #ea580c;
  --orange-soft: #fff7ed;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --radius: 20px;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  color: var(--navy);
  letter-spacing: -0.035em;
}

.lead {
  color: var(--muted);
  font-size: 16px;
  max-width: 560px;
  margin: 12px auto 0;
}

/* Header */
.skip-link {
  position: absolute;
  left: 16px;
  top: -40px;
  background: var(--blue);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 100;
}

.skip-link:focus {
  top: 12px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.admin-bar .header {
  top: 32px;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 72px;
}

.header-inner > .btn-primary {
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: -0.04em;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--blue);
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.04em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
}

.nav a:hover {
  color: var(--navy);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  padding: 12px 20px;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 14px 24px;
  font-size: 15px;
}

.btn-ghost {
  background: transparent;
  color: var(--blue);
  padding: 12px 8px;
  font-size: 14px;
}

.btn-ghost:hover {
  color: var(--blue-hover);
}

/* Hero */
.hero {
  position: relative;
  overflow: visible;
  padding: 48px 0 36px;
  background:
    radial-gradient(ellipse 80% 60% at 70% 10%, #dbeafe 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 0%, #eff6ff 0%, transparent 50%),
    #fbfdff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(36px, 4.4vw, 50px);
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero-copy {
  color: var(--muted);
  font-size: 16px;
  max-width: 460px;
  margin-bottom: 22px;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--slate);
  font-size: 14.5px;
}

.check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #dcfce7;
  color: var(--green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-laptop {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  filter: drop-shadow(0 28px 40px rgba(15, 23, 42, 0.14));
}

.hero-phone {
  position: absolute;
  right: 2%;
  bottom: 4%;
  width: 31%;
  max-width: 180px;
  z-index: 2;
  filter: drop-shadow(0 22px 28px rgba(15, 23, 42, 0.18));
}

.quote-band {
  padding: 8px 0 28px;
  background: #fff;
}

.quote-card {
  width: 100%;
  margin: 0;
  background: #eef5ff;
  border-radius: 16px;
  padding: 22px 26px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  position: relative;
}

.quote-card p {
  font-size: 14px;
  color: var(--slate);
}

.quote-card strong {
  color: var(--navy);
}

.quote-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff;
  color: var(--blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

/* Team */
.section {
  padding: 88px 0;
}

.center {
  text-align: center;
}

.section h2 {
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 40px;
}

.team-card {
  background: #f8fafc;
  border: 1px solid #eef2f7;
  border-radius: 22px;
  padding: 28px;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  align-items: start;
}

.avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 0 6px #fff, 0 8px 20px rgba(15, 23, 42, 0.08);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.team-card h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.team-card .role {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 14px;
}

.team-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.team-card li {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: var(--slate);
}

.team-note {
  text-align: center;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

/* Process */
.process {
  background: linear-gradient(#fff, #f8fbff);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 48px;
  position: relative;
}

.step {
  text-align: center;
  padding: 0 6px;
  position: relative;
}

.step-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 16px;
  background: var(--blue-mist);
  color: var(--blue);
  display: grid;
  place-items: center;
}

.step-num {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
}

.step h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.step p {
  font-size: 13px;
  color: var(--muted);
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 26px;
  left: calc(50% + 36px);
  width: calc(100% - 72px);
  height: 0;
  border-top: 2px dotted #bfdbfe;
}

.process-green .step-icon {
  background: var(--green-soft);
  color: var(--green);
}

.process-green .step-num {
  color: var(--green);
}

.process-green .step:not(:last-child)::after {
  border-top-color: #86efac;
}

.process-orange .step-icon {
  background: var(--orange-soft);
  color: var(--orange);
}

.process-orange .step-num {
  color: var(--orange);
}

.process-orange .step:not(:last-child)::after {
  border-top-color: #fdba74;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.service-card,
.team-card {
  text-align: left;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 26px 24px;
  box-shadow: var(--shadow-sm);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.icon-blue {
  background: var(--blue-mist);
  color: var(--blue);
}

.icon-green {
  background: var(--green-soft);
  color: var(--green);
}

.icon-orange {
  background: var(--orange-soft);
  color: var(--orange);
}

.service-card h3 {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.service-card .desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.service-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.service-card li {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: var(--slate);
}

.learn-more {
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
}

.learn-more:hover {
  color: var(--blue-hover);
}

.service-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.service-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 26px 24px;
  box-shadow: var(--shadow-sm);
  color: inherit;
  min-height: 220px;
  transition: transform 0.2s ease;
}

.service-box:hover {
  transform: translateY(-3px);
}

.service-box h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.service-box p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
  flex: 1;
}

.offer-card {
  display: flex;
  flex-direction: column;
}

.offer-card ul {
  flex: 1;
}

.offer-card > .learn-more {
  margin-top: auto;
}

.price-embed {
  margin: 4px 0 16px;
  border-radius: 16px;
  padding: 16px;
  text-align: left;
}

.price-embed .price strong {
  font-size: 28px;
}

.price-embed .price-note {
  margin: 4px 0 12px;
}

/* Pricing */
.pricing {
  background: #f8fbff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.price-card {
  border-radius: 22px;
  padding: 26px 24px;
  overflow: hidden;
}

.price-blue {
  background: #e8f1ff;
}

.price-green {
  background: #e9f8ef;
}

.price-orange {
  background: #fff3e8;
}

.price-card h3 {
  font-size: 18px;
  margin-bottom: 14px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--navy);
}

.price strong {
  font-size: 36px;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.price span {
  color: var(--muted);
  font-size: 14px;
}

.price-note {
  margin: 8px 0 18px;
  font-size: 13px;
  color: var(--muted);
}

.price-inner {
  background: #fff;
  border-radius: 16px;
  padding: 18px 16px;
}

.price-inner .detail {
  margin-top: 8px;
  font-size: 13px;
  color: var(--slate);
  line-height: 1.5;
}

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.why-item {
  text-align: center;
  padding: 8px 10px;
}

.why-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--blue-mist);
  color: var(--blue);
  display: grid;
  place-items: center;
}

.why-item h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.why-item p {
  font-size: 13px;
  color: var(--muted);
}

/* CTA */
.cta-band {
  padding-bottom: 88px;
}

.cta-box {
  background: #eaf2ff;
  border-radius: 24px;
  padding: 52px 24px;
  text-align: center;
}

.cta-box h2 {
  font-size: clamp(28px, 4vw, 36px);
  margin: 8px 0 10px;
}

.cta-box p {
  color: var(--muted);
  margin-bottom: 22px;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  background: #f8fafc;
  padding: 56px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 48px 32px;
  padding-bottom: 36px;
}

.footer-col h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 16px;
}

.footer-about .logo {
  display: inline-flex;
  margin-bottom: 22px;
}

.footer-about p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 380px;
}

.footer-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  color: var(--slate);
}

.footer-links-col {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links-col a:hover {
  color: var(--blue);
}

.footer-contact {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 0;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.45;
}

.footer-contact a {
  color: var(--ink);
  font-weight: 600;
}

.footer-contact a:hover {
  color: var(--blue);
}

.footer-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--blue);
  margin-top: 2px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--slate);
  display: grid;
  place-items: center;
}

.socials a:hover {
  background: var(--blue-mist);
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}

.footer-credit {
  text-align: center;
}

.footer-heart {
  color: #e11d48;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  display: none;
  place-items: center;
  z-index: 50;
  padding: 24px;
}

.modal.open {
  display: grid;
}

.modal-card {
  width: min(500px, 100%);
  max-height: min(90vh, 760px);
  overflow-y: auto;
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.modal-card h3 {
  font-size: 24px;
  margin-bottom: 6px;
}

.modal-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
}

.field input,
.field textarea {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
  outline: none;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.choice-field legend {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 8px;
}

.choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 14px;
  color: var(--slate);
  cursor: pointer;
}

.choice input {
  accent-color: var(--blue);
}

.choice:has(input:checked) {
  border-color: var(--blue);
  background: var(--blue-mist);
  color: var(--blue);
}

.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field[hidden] {
  display: none !important;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 1100px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 12px;
  }

  .step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 840px) {
  .hero-grid,
  .team-grid,
  .services-grid,
  .pricing-grid,
  .service-boxes {
    grid-template-columns: 1fr;
  }

  .steps,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .hero-visual {
    order: -1;
    min-height: 280px;
  }

  .hero-laptop {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 20px;
    border-bottom: 1px solid var(--line);
    gap: 14px;
    margin-left: 0;
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .header .btn-primary {
    display: none;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(var(--max), calc(100% - 32px));
  }

  .section {
    padding: 64px 0;
  }

  .team-card {
    grid-template-columns: 1fr;
  }

  .steps,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-phone {
    width: 36%;
    right: 8%;
  }
}

@media (max-width: 782px) {
  .admin-bar .header {
    top: 46px;
  }
}

/* Service pages */
.page-hero {
  padding: 48px 0 40px;
  background:
    radial-gradient(ellipse 80% 60% at 80% 0%, #dbeafe 0%, transparent 55%),
    #fbfdff;
}

.page-hero.hero-green {
  background:
    radial-gradient(ellipse 80% 60% at 80% 0%, #dcfce7 0%, transparent 55%),
    #f8fffb;
}

.page-hero.hero-orange {
  background:
    radial-gradient(ellipse 80% 60% at 80% 0%, #ffedd5 0%, transparent 55%),
    #fffaf5;
}

.page-hero h1 {
  font-size: clamp(34px, 4.4vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  max-width: 720px;
}

.page-hero-copy {
  max-width: 640px;
  margin-top: 12px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--blue);
  font-weight: 600;
}

.service-intro {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 36px;
  align-items: start;
  text-align: left;
}

.prose h2 {
  margin: 4px 0 16px;
}

.prose p {
  color: var(--slate);
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.7;
}

.highlight-box {
  background: #f8fafc;
  border: 1px solid #eef2f7;
  border-radius: 22px;
  padding: 28px;
}

.highlight-box h3 {
  font-size: 18px;
  margin-bottom: 16px;
}

.highlight-box ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.highlight-box li {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: var(--slate);
}

.include-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.include-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 16px;
}

.include-item p {
  margin: 0;
  color: var(--slate);
  font-size: 15px;
}

.service-pricing {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: 1fr 1fr;
}

.related-grid {
  max-width: 760px;
  margin: 40px auto 0;
  grid-template-columns: 1fr 1fr;
}

.price-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-link:hover {
  transform: translateY(-3px);
}

.form-status {
  font-size: 14px;
  margin: 4px 0 12px;
}

.form-status.is-success {
  color: var(--green);
}

.form-status.is-error {
  color: #b91c1c;
}

.wa-chat {
  position: fixed;
  right: calc(20px + env(safe-area-inset-right, 0px));
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-chat:hover,
.wa-chat:focus-visible {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.5);
}

.wa-chat-icon {
  display: flex;
}

.wa-chat-label {
  display: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.modal.open ~ .wa-chat {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (min-width: 720px) {
  .wa-chat {
    width: auto;
    height: 52px;
    padding: 0 18px 0 14px;
    gap: 10px;
  }

  .wa-chat-label {
    display: inline;
  }
}

@media print {
  .wa-chat {
    display: none;
  }
}

.prose-page {
  max-width: 760px;
}

.prose-page h1 {
  margin-bottom: 20px;
}

@media (max-width: 840px) {
  .service-intro,
  .include-grid,
  .service-pricing,
  .related-grid {
    grid-template-columns: 1fr;
  }
}
