@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=Sora:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f7f8fa;
  --bg-deep: #f2f0ee;
  --bg-soft: #faf9f8;
  --surface: rgba(255, 255, 255, 0.96);
  --surface-strong: rgba(250, 249, 248, 0.98);
  --surface-raised: rgba(242, 240, 238, 0.94);
  --surface-glass: rgba(255, 255, 255, 0.8);
  --card-glow: rgba(228, 126, 26, 0.08);
  --text: #1e1f21;
  --text-soft: #53585f;
  --text-muted: #776e64;
  --line: rgba(30, 31, 33, 0.1);
  --line-strong: rgba(29, 96, 118, 0.22);
  --mint: #00a3ad;
  --mint-strong: #1d6076;
  --mint-deep: #1e6177;
  --leaf: #e47e1a;
  --accent: #eb9d00;
  --white: #ffffff;
  --radius-xl: 2rem;
  --radius-lg: 1.4rem;
  --radius-md: 1rem;
  --radius-pill: 999px;
  --shadow-lg: 0 24px 70px rgba(69, 53, 54, 0.12);
  --shadow-md: 0 14px 36px rgba(69, 53, 54, 0.1);
  --content-width: 100%;
  --shell-gutter: clamp(1.25rem, 4vw, 4.75rem);
  --transition: 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(0, 163, 173, 0.1), transparent 24%),
    radial-gradient(circle at top right, rgba(228, 126, 26, 0.1), transparent 22%),
    linear-gradient(180deg, #f7f8fa 0%, #faf9f8 52%, #f2f0ee 100%);
  min-height: 100vh;
}

body.menu-open {
  overflow: hidden;
}

body.is-transitioning {
  cursor: progress;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell > main,
.brand-lockup,
.header-service-switch {
  transition:
    transform 260ms ease,
    filter 260ms ease,
    opacity 260ms ease;
}

.site-shell::before {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 31, 33, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 31, 33, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 95%);
  pointer-events: none;
  content: "";
}

.site-header-shell {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: 0.35rem;
  padding-bottom: 0;
  background: linear-gradient(180deg, rgba(247, 248, 250, 0.94), rgba(247, 248, 250, 0.84) 58%, rgba(247, 248, 250, 0.12));
  backdrop-filter: blur(10px);
  box-shadow: none;
}

.site-header {
  position: relative;
  z-index: 40;
  background: transparent;
  border-bottom: 0;
}

.header-inner,
.container {
  width: auto;
  max-width: none;
  margin-inline: var(--shell-gutter);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 0.8rem;
  min-height: 46px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(30, 31, 33, 0.04);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 1);
  box-shadow: none;
}

.brand-mark--header {
  padding: 0;
  border-color: transparent;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark--header img {
  width: clamp(92px, 8.4vw, 116px);
}

.brand-mark--footer {
  margin-bottom: 1rem;
}

.brand-mark img {
  display: block;
  width: clamp(148px, 18vw, 210px);
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 0.45rem;
  min-width: 0;
  width: fit-content;
  padding: 0.34rem;
  border: 1px solid rgba(30, 31, 33, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 28px rgba(69, 53, 54, 0.08);
  backdrop-filter: blur(14px);
}

.desktop-nav > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 1.1rem;
  border-radius: 999px;
  color: #4c4745;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition), opacity var(--transition), transform var(--transition), box-shadow var(--transition);
}

.desktop-nav > a:hover,
.desktop-nav > a:focus-visible,
.desktop-nav > a.is-active {
  background: rgba(215, 150, 63, 0.12);
  color: #d7963f;
  transform: translateY(-1px);
}

.desktop-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
  margin-left: auto;
  white-space: nowrap;
}

.header-location,
.header-login {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #4c4745;
  font-size: 0.84rem;
  font-weight: 500;
  transition: color var(--transition), transform var(--transition);
}

.header-meta-icon {
  color: #4c4745;
  font-size: 0.9rem;
}

.header-location:hover,
.header-location:focus-visible,
.header-login:hover,
.header-login:focus-visible {
  color: #d7963f;
  transform: translateY(-1px);
}

.nav-shell {
  position: absolute;
  top: calc(100% - 0.2rem);
  right: 0;
  z-index: 45;
  display: none;
  width: min(360px, calc(100vw - 2rem));
  padding-top: 0.9rem;
}

.nav-shell.is-open {
  display: block;
}

.nav-shell-panel {
  display: grid;
  gap: 0.85rem;
  padding: 0.9rem;
  border: 1px solid rgba(30, 31, 33, 0.08);
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 44px rgba(69, 53, 54, 0.12);
  backdrop-filter: blur(18px);
}

.nav-links {
  display: grid;
  gap: 0.3rem;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.nav-links a {
  padding: 0.82rem 0.95rem;
  border-radius: 1rem;
  color: #4c4745;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1;
  white-space: normal;
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  background: rgba(215, 150, 63, 0.12);
  color: #d7963f;
  transform: translateX(2px);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.72rem;
  width: auto;
  height: 40px;
  padding: 0 0.9rem;
  border: 1px solid rgba(30, 31, 33, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 1);
  color: #4c4745;
}

.nav-toggle-icon {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle-icon {
  position: relative;
  margin: 0;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle-icon::before {
  top: -5px;
}

.nav-toggle-icon::after {
  top: 5px;
}

.nav-toggle-label {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle.is-open .nav-toggle-icon {
  background: transparent;
}

.nav-toggle.is-open .nav-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.header-actions {
  display: grid;
  gap: 0.85rem;
}

.header-service-switch {
  display: flex;
  justify-content: center;
  margin: -0.1rem auto 0;
  width: fit-content;
  padding: 0.1rem;
  border: 1px solid rgba(30, 31, 33, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 18px rgba(69, 53, 54, 0.05);
}

.service-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 30px;
  padding: 0.28rem 0.85rem;
  border-radius: 999px;
  color: #8f9298;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.service-tab:hover,
.service-tab:focus-visible {
  color: #5f615f;
  transform: translateY(-2px) scale(1.02);
}

.service-tab.is-active {
  background: #fff5df;
  color: #3e3731;
  box-shadow: inset 0 0 0 1px #efc66f;
}

.service-tab-icon {
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.95rem 1.45rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.btn-primary {
  background: linear-gradient(135deg, #eb9d00, #e47e1a);
  border-color: transparent;
  color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, #faa05a, #e47e1a);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.86);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(0, 163, 173, 0.08);
}

.header-cta {
  min-height: 56px;
}

.section,
.home-hero,
.page-hero {
  padding: 5.5rem 0;
}

.home-hero {
  padding-top: 0.65rem;
}

.page-hero {
  padding-top: 0.55rem;
}

.hero-grid,
.page-hero-grid,
.split-grid,
.cta-grid,
.hero-actions,
.stack-actions,
.stat-grid,
.service-grid,
.card-grid,
.audience-grid,
.process-grid,
.contact-grid,
.coverage-grid,
.feature-grid,
.policy-list,
.menu-grid,
.pricing-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid,
.page-hero-grid,
.split-grid,
.cta-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.home-hero .container,
.section .container,
.page-hero .container {
  position: relative;
  z-index: 1;
}

.kicker,
.section-label,
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(30, 31, 33, 0.08);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker::before,
.section-label::before,
.hero-pill::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--leaf), var(--mint));
  content: "";
}

.hero-copy h1,
.page-hero-copy h1,
.section-heading,
.hero-stage h2,
.cta-banner h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 0.95;
}

.hero-copy h1 {
  margin-top: 1.2rem;
  font-size: clamp(4rem, 7vw, 6.4rem);
  max-width: 11.5ch;
}

.page-hero-copy h1 {
  margin-top: 1.2rem;
  font-size: clamp(3rem, 6vw, 5.2rem);
  max-width: 11ch;
}

.section-heading,
.cta-banner h2 {
  font-size: clamp(2.4rem, 4.4vw, 3.9rem);
}

.lead,
.section-intro,
.page-hero-copy p,
.rich-copy p,
.card p,
.feature-card p,
.process-card p,
.panel p,
.testimonial p,
.coverage-card p,
.contact-card p,
.faq-answer p,
.policy-list li span,
.footer-brand p,
.hero-stage p,
.metric-chip span,
.callout-box p {
  color: var(--text-soft);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.75;
}

.hero-copy .lead,
.page-hero-copy p {
  max-width: 60ch;
  margin-top: 1.25rem;
}

.hero-actions,
.stack-actions {
  grid-auto-flow: column;
  justify-content: start;
  margin-top: 2rem;
}

.hero-copy,
.page-hero-copy,
.hero-stage,
.page-showcase {
  will-change: transform, opacity;
}

.hero-quick-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-quick-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.hero-quick-list li::before {
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--leaf), var(--mint));
  content: "";
}

.hero-metrics,
.service-band,
.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-metrics {
  margin-top: 2rem;
}

.metric-chip,
.service-band span,
.badge-list span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.88);
}

.metric-chip strong {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.metric-chip span,
.service-band span,
.badge-list span {
  font-size: 0.95rem;
}

.hero-stage,
.page-showcase,
.panel,
.card,
.feature-card,
.process-card,
.audience-card,
.coverage-card,
.testimonial,
.contact-card,
.faq-item,
.callout-box,
.stat-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 249, 248, 0.96)),
    var(--surface);
  box-shadow: var(--shadow-md);
}

.hero-stage,
.page-showcase {
  padding: 2.2rem;
  min-height: 0;
}

.hero-stage::before,
.page-showcase::before,
.card::before,
.panel::before,
.feature-card::before,
.process-card::before,
.audience-card::before,
.coverage-card::before,
.testimonial::before,
.contact-card::before,
.faq-item::before,
.callout-box::before,
.stat-card::before {
  position: absolute;
  inset: auto auto -30% -10%;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 126, 26, 0.12), transparent 70%);
  pointer-events: none;
  content: "";
}

.hero-stage::after,
.page-showcase::after {
  position: absolute;
  inset: 16px 16px auto auto;
  width: 130px;
  height: 130px;
  border-radius: 38% 62% 56% 44% / 42% 42% 58% 58%;
  background: radial-gradient(circle at top, rgba(0, 163, 173, 0.14), transparent 70%);
  content: "";
}

.stage-mark {
  max-width: 260px;
  margin-bottom: 1.6rem;
}

.stage-mark--logo {
  overflow: hidden;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(30, 31, 33, 0.08);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
}

.stage-mark--logo img {
  width: 100%;
  height: auto;
}

.hero-stage h2,
.page-showcase h2 {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  max-width: 12ch;
}

.hero-stage p,
.page-showcase p {
  max-width: 100%;
  margin-top: 1rem;
}

.route-line {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.route-stop {
  padding: 1rem;
  border: 1px solid rgba(30, 31, 33, 0.08);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.88);
}

.route-stop strong,
.stat-card strong,
.faq-item h3,
.feature-card h3,
.process-card h3,
.coverage-card h3,
.contact-card h3,
.audience-card h3,
.card h3,
.panel h3,
.page-showcase h3 {
  display: block;
  margin: 0;
  font-family: "Sora", sans-serif;
}

.route-stop strong {
  font-size: 1rem;
}

.route-stop span {
  display: block;
  margin-top: 0.4rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.35rem;
}

.section-head .section-intro {
  max-width: 52ch;
}

.service-grid,
.card-grid,
.audience-grid,
.feature-grid,
.coverage-grid,
.menu-grid,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid,
.stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.mini-panel--full {
  grid-column: 1 / -1;
}

.card,
.feature-card,
.process-card,
.audience-card,
.coverage-card,
.contact-card,
.stat-card,
.callout-box {
  padding: 1.7rem;
}

.card:hover,
.feature-card:hover,
.process-card:hover,
.audience-card:hover,
.coverage-card:hover,
.contact-card:hover,
.testimonial:hover,
.panel:hover,
.callout-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card,
.feature-card,
.process-card,
.audience-card,
.coverage-card,
.contact-card,
.testimonial,
.panel,
.callout-box {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover,
.feature-card:hover,
.process-card:hover,
.audience-card:hover,
.coverage-card:hover,
.contact-card:hover,
.testimonial:hover,
.panel:hover,
.callout-box:hover {
  border-color: rgba(29, 96, 118, 0.22);
}

.card > img,
.hero-stage img,
.page-showcase img,
.stage-mark img {
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.card:hover > img,
.hero-stage:hover img,
.page-showcase:hover img {
  transform: scale(1.045);
}

.card .section-label,
.feature-card .section-label,
.process-card .section-label,
.audience-card .section-label,
.coverage-card .section-label,
.contact-card .section-label {
  margin-bottom: 1rem;
}

.card h3,
.feature-card h3,
.process-card h3,
.audience-card h3,
.coverage-card h3,
.contact-card h3,
.panel h3 {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
}

.card ul,
.panel ul,
.callout-box ul {
  display: grid;
  gap: 0.75rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.card li,
.panel li,
.callout-box li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--text-soft);
  line-height: 1.65;
}

.card li::before,
.panel li::before,
.callout-box li::before {
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--leaf), var(--mint));
  content: "";
}

.process-card {
  counter-increment: steps;
}

.process-card .process-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 163, 173, 0.14), rgba(228, 126, 26, 0.18));
  color: var(--text);
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.split-grid {
  gap: 2.4rem;
}

.split-grid--cta {
  align-items: stretch;
}

.panel--pricing {
  max-width: 980px;
  margin: 0 auto;
  padding: 2.1rem;
}

.panel--pricing h3 {
  max-width: 20ch;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.02;
}

.panel--pricing p {
  max-width: 62ch;
  margin-top: 1rem;
}

.panel--pricing .stack-actions {
  margin-top: 1.6rem;
}

.rich-copy ul {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.rich-copy li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.rich-copy li::before {
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--leaf), var(--mint));
  content: "";
}

.stat-grid {
  margin-top: 1.75rem;
}

.stat-grid--home {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.callout-box--stats {
  align-self: start;
}

.callout-box--stats .stat-card {
  min-width: 0;
  min-height: 100%;
  padding: 1.35rem 1.2rem;
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 250, 0.96));
}

.callout-box--stats .stat-card strong {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.95;
}

.callout-box--stats .stat-card p {
  font-size: 1rem;
  line-height: 1.55;
}

.panel--coverage {
  align-self: start;
}

.hours-list--coverage {
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.hours-list--coverage li {
  grid-template-columns: minmax(132px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(30, 31, 33, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
}

.hours-list--coverage span {
  margin-top: 0.1rem;
  line-height: 1.4;
  word-break: normal;
}

.stat-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card strong {
  font-size: 2.4rem;
  margin-bottom: 0.4rem;
}

.stat-card p {
  margin: 0;
  font-size: 0.96rem;
}

.service-band {
  margin-top: 2.2rem;
}

.service-band span {
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
}

.service-band span::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leaf);
  content: "";
}

.service-band span {
  gap: 0.8rem;
}

.page-hero-copy {
  max-width: 58ch;
}

.page-showcase {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.page-showcase-grid {
  display: grid;
  gap: 1rem;
}

.mini-panel {
  padding: 1rem 1.15rem;
  border: 1px solid rgba(30, 31, 33, 0.08);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.9);
}

.mini-panel strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.mini-panel span {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.testimonial {
  padding: 1.7rem;
}

.testimonial strong {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  font-family: "Sora", sans-serif;
}

.testimonial footer {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.coverage-stack,
.info-stack {
  display: grid;
  gap: 1rem;
}

.coverage-card p:last-child,
.contact-card p:last-child,
.callout-box p:last-child,
.panel p:last-child,
.rich-copy p:last-child {
  margin-bottom: 0;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours-list {
  display: grid;
  gap: 0.9rem;
}

.hours-list li {
  display: grid;
  gap: 0.3rem;
}

.hours-list span {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hours-list strong {
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

.form-shell {
  padding: 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 249, 248, 0.96));
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field-group {
  display: grid;
  gap: 0.55rem;
}

.field-group--full {
  grid-column: 1 / -1;
}

.field-group label {
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 500;
}

.field-group input,
.field-group textarea,
.field-group select {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(30, 31, 33, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.field-group input:focus,
.field-group textarea:focus,
.field-group select:focus {
  outline: none;
  border-color: rgba(0, 163, 173, 0.3);
  box-shadow: 0 0 0 4px rgba(0, 163, 173, 0.08);
  background: rgba(255, 255, 255, 1);
}

.field-group textarea {
  min-height: 160px;
  resize: vertical;
}

.form-heading {
  margin: 1rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.02;
}

.form-intro {
  margin: 1rem 0 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.form-status {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.96rem;
}

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.faq-grid {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 0;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.35rem 1.5rem;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
}

.faq-item h3 {
  font-size: 1.16rem;
}

.faq-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--mint);
  font-size: 1.25rem;
  font-weight: 700;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 300ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer p {
  margin: 0;
  padding: 0 1.5rem 1.5rem;
}

.faq-item.is-open .faq-answer {
  max-height: 240px;
  opacity: 1;
  transform: translateY(0);
}

.faq-item.is-open .faq-toggle-icon {
  color: var(--leaf);
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.policy-list li {
  display: grid;
  gap: 0.35rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(30, 31, 33, 0.08);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.88);
}

.policy-list li strong {
  font-size: 1rem;
  font-family: "Sora", sans-serif;
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
}

.pricing-card {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.pricing-card p {
  margin: 0;
}

.pricing-card--featured {
  border-color: rgba(29, 96, 118, 0.22);
  background:
    radial-gradient(circle at top right, rgba(0, 163, 173, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 240, 238, 0.96)),
    var(--surface);
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
}

.pricing-card--featured:hover {
  transform: translateY(-12px);
}

.pricing-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.pricing-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(29, 96, 118, 0.12);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-tag--featured {
  background: rgba(0, 163, 173, 0.08);
  color: var(--text);
}

.pricing-price {
  display: flex;
  align-items: end;
  gap: 0.35rem;
  margin-top: 0.25rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.6rem, 5vw, 3.5rem);
  line-height: 0.95;
}

.pricing-price span {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.4;
}

.pricing-note {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.pricing-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-list li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.pricing-list li::before {
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--leaf), var(--mint));
  content: "";
}

.comparison-board {
  overflow-x: auto;
  padding: 0.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 249, 248, 0.94));
  box-shadow: var(--shadow-md);
}

.comparison-grid {
  display: grid;
  gap: 0.7rem;
  min-width: 760px;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, minmax(150px, 1fr));
  gap: 0.7rem;
}

.comparison-row > span {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(29, 96, 118, 0.08);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-soft);
  line-height: 1.55;
}

.comparison-row--head > span {
  min-height: 58px;
  background: rgba(29, 96, 118, 0.06);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-label {
  color: var(--text);
  font-weight: 700;
}

.site-footer {
  padding: 2.5rem 0 3rem;
}

.cta-banner {
  margin-bottom: 2.4rem;
  padding: 2rem;
  border: 1px solid rgba(29, 96, 118, 0.16);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(228, 126, 26, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(29, 96, 118, 0.96), rgba(0, 163, 173, 0.96));
  box-shadow: var(--shadow-md);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
  padding: 1.2rem 0 1.8rem;
}

.footer-title {
  margin: 0 0 1rem;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-soft);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--mint);
}

.footer-socials {
  margin-top: 1.35rem;
}

.social-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(29, 96, 118, 0.14);
  border-radius: 50%;
  background:
    radial-gradient(circle at top, rgba(0, 163, 173, 0.1), transparent 72%),
    rgba(255, 255, 255, 0.9);
  color: #5b666c;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 8px 18px rgba(69, 53, 54, 0.08);
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    color var(--transition);
}

.social-link svg {
  display: block;
  width: 21px;
  height: 21px;
  fill: currentColor;
  flex: 0 0 21px;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(0, 163, 173, 0.26);
  background:
    radial-gradient(circle at top, rgba(0, 163, 173, 0.16), transparent 72%),
    rgba(255, 255, 255, 0.96);
  color: var(--mint-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 12px 24px rgba(29, 96, 118, 0.12);
}

.social-link--placeholder {
  cursor: default;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(30, 31, 33, 0.08);
  color: var(--text-muted);
  font-size: 0.92rem;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--mint-strong), var(--accent), var(--leaf));
  box-shadow: 0 0 16px rgba(29, 96, 118, 0.24);
}

.page-curtain {
  position: fixed;
  inset: 0;
  z-index: 120;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(135deg, #1d6076 0%, #00a3ad 48%, #eeb14a 100%);
  transform: scaleY(0);
  transform-origin: top center;
  pointer-events: none;
}

.floating-actions {
  position: fixed;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 95;
  display: grid;
  gap: 0.7rem;
  justify-items: end;
}

.floating-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(29, 96, 118, 0.18);
  transition:
    transform var(--transition),
    opacity var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.floating-action svg {
  width: 26px;
  height: 26px;
  display: block;
  flex: 0 0 26px;
  fill: currentColor;
}

.floating-action:hover,
.floating-action:focus-visible {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 22px 40px rgba(29, 96, 118, 0.22);
}

.floating-action--whatsapp {
  background: linear-gradient(135deg, #25d366, #119c4b);
}

.floating-action--top {
  background: linear-gradient(135deg, var(--mint-strong), var(--mint));
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.floating-action--top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.reveal {
  --reveal-x: 0px;
  --reveal-y: 34px;
  --reveal-scale: 0.985;
  --reveal-blur: 8px;
  --reveal-delay: 0s;
  --reveal-duration: 0.82s;
  opacity: 1;
  transform: none;
  filter: none;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  filter: blur(var(--reveal-blur));
  transition:
    opacity var(--reveal-duration) cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay),
    transform var(--reveal-duration) cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay),
    filter var(--reveal-duration) cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay);
  will-change: transform, opacity, filter;
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0px);
}

.reveal--from-top {
  --reveal-y: -46px;
}

.reveal--from-bottom {
  --reveal-y: 42px;
}

.reveal--from-left {
  --reveal-x: -52px;
  --reveal-y: 10px;
}

.reveal--from-right {
  --reveal-x: 52px;
  --reveal-y: 10px;
}

.reveal--soft {
  --reveal-blur: 5px;
  --reveal-scale: 0.992;
}

.reveal--snap {
  --reveal-duration: 0.68s;
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready .reveal,
  .motion-ready .reveal.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
    will-change: auto;
  }
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    min-height: 44px;
  }

  .desktop-nav {
    display: none;
  }

  .desktop-meta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-shell {
    width: min(360px, calc(100vw - 2rem));
  }

  .hero-grid,
  .page-hero-grid,
  .split-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .stat-grid,
  .service-grid,
  .card-grid,
  .audience-grid,
  .feature-grid,
  .coverage-grid,
  .menu-grid,
  .pricing-grid,
  .contact-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stage,
  .page-showcase {
    min-height: auto;
  }
}

@media (max-width: 980px) {
  .section-head {
    flex-direction: column;
    align-items: start;
    gap: 1rem;
  }

  .process-grid,
  .testimonial-grid,
  .contact-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid,
  .service-grid,
  .card-grid,
  .audience-grid,
  .feature-grid,
  .coverage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hours-list--coverage li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .hours-list--coverage span {
    margin-top: 0;
  }

  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-row > span,
  .comparison-row--head > span {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  body.menu-open .site-shell > main,
  body.menu-open .brand-lockup,
  body.menu-open .header-service-switch {
    filter: blur(8px);
    opacity: 0.72;
    transform: scale(1.02);
    transform-origin: top center;
  }

  .site-header-shell {
    position: relative;
    top: auto;
    padding-top: 0.2rem;
  }

  .header-inner,
  .container {
    margin-inline: 1.25rem;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    justify-items: stretch;
    min-height: 52px;
    gap: 0.75rem;
    padding: 0.2rem 0 0.1rem;
  }

  .desktop-nav {
    display: none;
  }

  .site-header-shell {
    position: relative;
    top: auto;
    padding-top: 0.2rem;
    padding-bottom: 0.05rem;
    backdrop-filter: none;
  }

  .nav-shell {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(320px, calc(100vw - 1.25rem));
    padding-top: 0.75rem;
  }

  .nav-shell-panel {
    padding: 0.8rem;
  }

  .nav-links a {
    padding: 0.78rem 0.88rem;
    font-size: 0.88rem;
  }

  .brand-mark--header img {
    width: clamp(96px, 22vw, 116px);
  }

  .brand-lockup {
    justify-content: flex-start;
  }

  .nav-toggle {
    gap: 0.55rem;
    height: 38px;
    width: auto;
    justify-content: center;
    padding: 0 0.8rem;
  }

  .nav-toggle-label {
    font-size: 0.78rem;
  }

  .header-service-switch {
    width: min(calc(100% - 1.25rem), 100%);
    justify-content: center;
    margin-inline: auto;
    margin-top: 0.08rem;
    overflow-x: auto;
    scrollbar-width: none;
    box-shadow: 0 8px 18px rgba(69, 53, 54, 0.05);
  }

  .header-service-switch::-webkit-scrollbar {
    display: none;
  }

  .service-tab {
    flex: 0 0 auto;
    min-height: 36px;
    padding-inline: 0.88rem;
    font-size: 0.84rem;
  }

  .home-hero,
  .page-hero,
  .section {
    padding: 4.5rem 0;
  }

  .home-hero {
    padding-top: 0.8rem;
  }

  .page-hero {
    padding-top: 1.4rem;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    max-width: none;
  }

  .hero-actions,
  .stack-actions {
    grid-auto-flow: row;
  }

  .hero-actions .btn,
  .stack-actions .btn {
    width: 100%;
  }

  .route-line,
  .process-grid,
  .stat-grid,
  .service-grid,
  .card-grid,
  .audience-grid,
  .feature-grid,
  .coverage-grid,
  .menu-grid,
  .pricing-grid,
  .contact-grid,
  .hero-card-grid,
  .testimonial-grid,
  .form-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-stage,
  .page-showcase,
  .card,
  .feature-card,
  .process-card,
  .audience-card,
  .coverage-card,
  .contact-card,
  .testimonial,
  .callout-box,
  .panel,
  .cta-banner,
  .form-shell {
    padding: 1.35rem;
  }

  .service-band span,
  .metric-chip,
  .badge-list span {
    width: 100%;
  }

  .stat-grid--home {
    grid-template-columns: 1fr;
  }

  .hours-list--coverage li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-actions {
    right: 1rem;
    bottom: 1rem;
    gap: 0.6rem;
  }

  .floating-action {
    width: 52px;
    height: 52px;
  }

  .floating-action svg {
    width: 23px;
    height: 23px;
    flex-basis: 23px;
  }

  .social-link {
    width: 42px;
    height: 42px;
  }

  .social-link svg {
    width: 19px;
    height: 19px;
    flex-basis: 19px;
  }

  .pricing-card--featured,
  .pricing-card--featured:hover {
    transform: none;
  }

  .pricing-head {
    flex-direction: column;
  }

  .panel--pricing {
    padding: 1.35rem;
  }

  .panel--pricing h3,
  .panel--pricing p {
    max-width: none;
  }
}
