:root {
  --ink: #111827;
  --ink-2: #1f2937;
  --muted: #5b6675;
  --muted-2: #748092;
  --paper: #ffffff;
  --paper-2: #f6f8fb;
  --paper-3: #eef4f7;
  --line: #dfe7ee;
  --line-2: #cbd7e2;
  --navy: #102033;
  --navy-2: #183653;
  --teal: #39c6b8;
  --teal-2: #1f968d;
  --teal-soft: #e2fbf8;
  --amber: #f2b544;
  --amber-soft: #fff3d5;
  --green: #11a36a;
  --green-soft: #e5f8ef;
  --danger: #b45309;
  --shadow-sm: 0 8px 20px rgba(16, 32, 51, .07);
  --shadow-md: 0 16px 36px rgba(16, 32, 51, .11);
  --shadow-lg: 0 22px 58px rgba(16, 32, 51, .16);
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --max: 1180px;
  --header: 68px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 26px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
strong { color: var(--ink); font-weight: 900; }

.skip-link {
  position: absolute;
  top: -110px;
  left: 20px;
  z-index: 2000;
  padding: 11px 14px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
}
.skip-link:focus { top: 16px; }
.container { width: min(100% - 48px, var(--max)); margin-inline: auto; }
.narrow { max-width: 820px; }
.center { text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header);
  border-bottom: 1px solid rgba(223, 231, 238, .88);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
}
.nav-shell {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 240px;
}
.brand-mark {
  width: 48px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.brand-mark img { width: 48px; height: 34px; object-fit: contain; }
.brand-text { display: grid; gap: 1px; }
.brand-name { font-size: .88rem; line-height: 1.08; font-weight: 950; letter-spacing: -.035em; }
.brand-loc { color: var(--muted); font-size: .72rem; font-weight: 750; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(246, 248, 251, .8);
}
.nav-links a {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 850;
}
.nav-links a:hover, .nav-links a.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 6px 16px rgba(16, 32, 51, .06);
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.phone-link { color: var(--ink-2); font-weight: 900; white-space: nowrap; }
.mobile-toggle {
  display: none;
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: var(--navy);
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #fff;
  color: var(--ink);
  font-weight: 950;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}
.btn:hover, .btn:focus { transform: translateY(-1px); }
.btn-primary { background: var(--teal); color: #062b29; box-shadow: 0 14px 30px rgba(57, 198, 184, .24); }
.btn-primary:hover { background: #5bd7cd; box-shadow: 0 18px 38px rgba(57, 198, 184, .32); }
.btn-dark { background: var(--navy); color: #fff; box-shadow: 0 16px 34px rgba(16, 32, 51, .22); }
.btn-dark:hover { background: #071522; }
.btn-ghost { border-color: var(--line); background: rgba(255,255,255,.78); color: var(--ink); }
.btn-ghost:hover { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.btn-wide { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 46px 0 46px;
  background:
    radial-gradient(circle at 11% 10%, rgba(57,198,184,.18), transparent 30rem),
    radial-gradient(circle at 86% 13%, rgba(24,54,83,.15), transparent 34rem),
    linear-gradient(180deg, #fff, #f6fbfd 72%, #fff);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.07fr) minmax(330px, .64fr); gap: 24px; align-items: center; }
.hero-copy { padding: 8px 0; }
.eyebrow, .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(57,198,184,.3);
  background: rgba(226,251,248,.76);
  color: #0d6861;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 5px rgba(57,198,184,.16); }
.hero h1, .page-hero h1 {
  margin: 20px 0 16px;
  max-width: 830px;
  color: var(--ink);
  font-size: clamp(2.45rem, 4.35vw, 3.85rem);
  line-height: .96;
  letter-spacing: -.066em;
  font-weight: 950;
}
.hero-lede, .page-lede {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  font-weight: 650;
}
.hero-actions { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-points { margin-top: 24px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; max-width: 840px; }
.point {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 10px 24px rgba(16,32,51,.055);
}
.point strong { display: block; font-size: .96rem; letter-spacing: -.03em; }
.point span { display: block; margin-top: 4px; color: var(--muted); font-size: .84rem; font-weight: 650; }

.intake-card, .premium-card {
  border: 1px solid rgba(223,231,238,.9);
  background: rgba(255,255,255,.92);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px;
}
.intake-card h2, .premium-card h2 { margin: 0 0 10px; font-size: clamp(1.45rem, 2vw, 1.9rem); letter-spacing: -.06em; line-height: 1.02; }
.intake-card p, .premium-card p { margin: 0 0 16px; color: var(--muted); font-weight: 650; }
.manual-options { display: grid; gap: 10px; }
.small-note { margin-top: 12px; color: var(--muted-2); font-size: .84rem; font-weight: 650; }
.small-note a { color: var(--teal-2); font-weight: 900; }

.section { padding: 58px 0; }
.section-tight { padding: 42px 0; }
.section-soft { background: var(--paper-2); }
.section-dark { background: var(--navy); color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark strong { color: #fff; }
.section-dark p, .section-dark li { color: #cbd7df; }
.section-dark .tag { color: #95f0eb; background: rgba(57,198,184,.13); border-color: rgba(149,240,235,.18); }
.section-head { max-width: 780px; margin-bottom: 28px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title {
  margin: 0;
  font-size: clamp(1.85rem, 3vw, 2.85rem);
  line-height: 1;
  letter-spacing: -.07em;
  font-weight: 950;
}
.section-lede { margin: 14px 0 0; color: var(--muted); font-weight: 650; font-size: 1rem; }
.center .section-lede { margin-inline: auto; }

.page-hero {
  padding: 46px 0 40px;
  background:
    radial-gradient(circle at 9% 8%, rgba(57,198,184,.17), transparent 30rem),
    radial-gradient(circle at 90% 16%, rgba(24,54,83,.14), transparent 33rem),
    linear-gradient(180deg, #fff, #f8fbfd);
}
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(310px, .62fr); gap: 24px; align-items: center; }

.track-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.track-card {
  min-height: 326px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
}
.track-card.dark {
  background:
    radial-gradient(circle at 86% 12%, rgba(57,198,184,.24), transparent 23rem),
    linear-gradient(135deg, #102033, #172f49);
  border-color: rgba(255,255,255,.12);
  color: #fff;
}
.track-card.dark p, .track-card.dark li { color: #d5e1ea; }
.track-icon, .mini-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--teal-soft);
  color: var(--teal-2);
  margin-bottom: 16px;
}
.track-card.dark .track-icon { background: rgba(57,198,184,.14); color: #9bf3ed; border: 1px solid rgba(155,243,237,.18); }
.track-card h3 { margin: 0 0 10px; font-size: clamp(1.4rem, 2.2vw, 2rem); line-height: 1.02; letter-spacing: -.055em; }
.track-card p { margin: 0; color: var(--muted); font-weight: 650; }
.track-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.check-list { display: grid; gap: 9px; margin: 18px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 9px; color: var(--muted); font-weight: 750; }
.check { flex: 0 0 21px; width: 21px; height: 21px; border-radius: 999px; display: grid; place-items: center; background: var(--teal); color: #062b29; font-size: .78rem; font-weight: 950; margin-top: 1px; }

.service-layout { display: grid; grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr); gap: 26px; align-items: start; }
.service-sticky { position: sticky; top: calc(var(--header) + 20px); }
.service-sticky p { color: var(--muted); font-weight: 650; }
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.service-card, .info-card, .step-card, .faq-item {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.service-card h3, .info-card h3, .step-card h3, .faq-item h3 { margin: 0 0 8px; font-size: 1.12rem; line-height: 1.1; letter-spacing: -.035em; }
.service-card p, .info-card p, .step-card p, .faq-item p { margin: 0; color: var(--muted); font-weight: 650; }

.feature-band { background: var(--navy); color: #fff; }
.feature-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, .65fr); gap: 24px; align-items: center; }
.feature-panel { padding: 24px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-xl); background: rgba(255,255,255,.06); box-shadow: var(--shadow-lg); }
.feature-panel h3 { color: #fff; margin-top: 0; }
.workflow-line { display: grid; gap: 10px; }
.workflow-line div { padding: 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 15px; background: rgba(255,255,255,.06); }
.workflow-line strong { display: block; color: #fff; }
.workflow-line span { display: block; color: #cbd7df; font-weight: 650; font-size: .92rem; margin-top: 4px; }

.pricing-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(57,198,184,.3);
  background:
    radial-gradient(circle at 92% 0%, rgba(57,198,184,.18), transparent 18rem),
    #fff;
  box-shadow: var(--shadow-lg);
}
.price-row { display: flex; align-items: flex-end; gap: 12px; margin: 14px 0; }
.old-price { color: var(--muted-2); text-decoration: line-through; text-decoration-thickness: 2px; font-size: 1.25rem; font-weight: 900; }
.new-price { font-size: clamp(3rem, 6vw, 4.4rem); line-height: .88; letter-spacing: -.08em; font-weight: 950; color: var(--ink); }
.price-sub { color: var(--muted); font-weight: 750; margin: 0 0 18px; }
.badge { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: var(--amber); color: #442500; font-size: .72rem; font-weight: 950; letter-spacing: .06em; text-transform: uppercase; }

.compare-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.compare-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.compare-card header { padding: 18px 20px; background: var(--paper-3); }
.compare-card.highlight header { background: var(--teal-soft); }
.compare-card h3 { margin: 0; font-size: 1.35rem; letter-spacing: -.05em; }
.time-list { margin: 0; padding: 0; list-style: none; }
.time-list li { display: flex; justify-content: space-between; gap: 16px; padding: 12px 20px; border-top: 1px solid var(--line); color: var(--muted); font-weight: 700; }
.time-list span:last-child { color: var(--ink); font-weight: 950; white-space: nowrap; }
.total-row { display: flex; justify-content: space-between; gap: 16px; padding: 16px 20px; background: #fbfdfe; border-top: 1px solid var(--line); font-weight: 950; }
.total-row strong:last-child { font-size: 1.3rem; color: var(--teal-2); }

.example-box {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 0%, rgba(57,198,184,.14), transparent 20rem),
    #fff;
  box-shadow: var(--shadow-md);
}
.quote { padding: 16px 18px; border-left: 4px solid var(--teal); background: var(--paper-2); color: var(--ink); font-size: 1.12rem; font-weight: 800; border-radius: 14px; margin: 16px 0; }
.output-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 16px; }
.output-grid div { padding: 12px; border-radius: 14px; background: var(--paper-2); border: 1px solid var(--line); }
.output-grid span { display: block; font-size: .74rem; color: var(--muted); font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.output-grid strong { display: block; margin-top: 3px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.steps { counter-reset: step; display: grid; gap: 14px; }
.step-card { position: relative; padding-top: 54px; }
.step-card::before { counter-increment: step; content: counter(step); position: absolute; top: 18px; left: 18px; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 10px; background: var(--teal); color: #062b29; font-weight: 950; }

.rate-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(320px, .55fr); gap: 22px; align-items: start; }
.rate-card { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.rate-card.featured { border-color: rgba(57,198,184,.35); background: linear-gradient(135deg, var(--teal-soft), #fff 62%); box-shadow: var(--shadow-md); }
.rate-number { display: block; font-size: clamp(2.8rem, 6vw, 4.2rem); font-weight: 950; letter-spacing: -.08em; line-height: .9; margin: 12px 0; }
.rate-number small { font-size: 1rem; color: var(--muted); letter-spacing: -.02em; }

.form-grid { display: grid; gap: 10px; }
.field { display: grid; gap: 7px; }
.field label { color: var(--ink); font-size: .84rem; font-weight: 900; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 13px;
  padding: 11px 12px;
  outline: none;
}
.field textarea { min-height: 92px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(57,198,184,.15); }

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 0%, rgba(57,198,184,.18), transparent 22rem),
    linear-gradient(135deg, #102033, #172f49);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta-card h2 { margin: 0; color: #fff; font-size: clamp(1.9rem, 3.4vw, 3rem); line-height: 1; letter-spacing: -.07em; }
.cta-card p { margin: 12px 0 0; color: #cbd7df; font-weight: 650; }
.cta-actions { display: grid; gap: 10px; min-width: 220px; }

.legal { max-width: 900px; margin: 0 auto; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.legal h2 { margin-top: 28px; font-size: 1.45rem; letter-spacing: -.04em; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: var(--muted); font-weight: 650; }
.legal ul { margin: 0 0 18px 18px; padding: 0; }

.site-footer { background: #081421; color: #d9e5ed; padding: 44px 0 24px; }
.footer-grid { display: grid; grid-template-columns: minmax(260px, 1.1fr) repeat(3, minmax(130px, .55fr)); gap: 24px; }
.site-footer .brand-mark { box-shadow: none; }
.site-footer .brand-name { color: #fff; }
.site-footer p { max-width: 430px; color: #9fb0bf; font-weight: 650; }
.site-footer h3 { margin: 0 0 10px; color: #fff; font-size: 1rem; }
.site-footer ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.site-footer a { color: #cbd7df; font-weight: 750; }
.site-footer a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.11); color: #8799aa; font-size: .86rem; font-weight: 750; }

body.modal-open { overflow: hidden; }
.service-modal[hidden] { display: none; }
.service-modal { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; padding: 24px; }
.service-modal__backdrop { position: absolute; inset: 0; background: rgba(8, 20, 33, .68); backdrop-filter: blur(8px); }
.service-modal__panel { position: relative; width: min(100%, 520px); padding: 28px; border-radius: 24px; background: #fff; box-shadow: 0 28px 80px rgba(8,20,33,.32); }
.service-modal__close { position: absolute; top: 13px; right: 14px; width: 38px; height: 38px; border: 0; border-radius: 999px; background: var(--paper-3); color: var(--ink); font-size: 25px; line-height: 1; cursor: pointer; }
.service-modal__panel h2 { margin: 8px 0 10px; font-size: clamp(1.7rem, 3vw, 2.2rem); line-height: 1; letter-spacing: -.06em; }
.service-modal__panel p { color: var(--muted); font-weight: 650; margin: 0; }
.service-modal__actions { display: grid; gap: 10px; margin-top: 20px; }
.service-modal__note { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); font-weight: 650; }
.service-modal__note a { color: var(--teal-2); font-weight: 900; }

@media (min-width: 1600px) {
  :root { --max: 1200px; }
  .hero { padding: 52px 0; }
}
@media (max-width: 1100px) {
  .nav-links, .phone-link { display: none; }
  .mobile-toggle { display: inline-flex; }
  .nav-links.is-open {
    position: absolute;
    left: 24px;
    right: 24px;
    top: calc(var(--header) + 10px);
    display: grid;
    gap: 4px;
    border-radius: 18px;
    padding: 10px;
    box-shadow: var(--shadow-lg);
    background: #fff;
  }
  .nav-links.is-open a { padding: 12px 14px; }
  .hero-grid, .page-hero-grid, .feature-grid, .rate-grid, .service-layout, .cta-card { grid-template-columns: 1fr; }
  .service-sticky { position: relative; top: auto; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  :root { --header: 64px; }
  .container { width: min(100% - 30px, var(--max)); }
  .brand { min-width: auto; }
  .brand-text { display: none; }
  .nav-actions .btn { padding: 10px 12px; font-size: .9rem; }
  .hero, .page-hero { padding: 34px 0; }
  .hero h1, .page-hero h1 { font-size: clamp(2.18rem, 12vw, 3.2rem); }
  .hero-points, .track-grid, .service-grid, .compare-grid, .grid-2, .grid-3, .grid-4, .output-grid, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 44px 0; }
  .section-tight { padding: 34px 0; }
  .track-card { min-height: auto; }
  .btn-row, .hero-actions, .track-actions { display: grid; }
  .btn-row .btn, .hero-actions .btn, .track-actions .btn, .cta-actions .btn { width: 100%; }
  .cta-card { padding: 24px; }
  .footer-bottom { display: grid; }
  .time-list li, .total-row { display: grid; gap: 4px; }
  .time-list span:last-child { white-space: normal; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; }
}


.hero-home-container {
  position: relative;
}
.hero-feedback-balloon {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  display: inline-grid;
  gap: 2px;
  max-width: 230px;
  padding: 14px 16px;
  border: 1px solid rgba(57, 198, 184, .36);
  border-radius: 22px 22px 22px 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(57,198,184,.18), transparent 10rem),
    rgba(255,255,255,.92);
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  transform: translateY(-10px);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.hero-feedback-balloon:hover,
.hero-feedback-balloon:focus {
  transform: translateY(-12px);
  border-color: rgba(57, 198, 184, .62);
  box-shadow: var(--shadow-lg);
}
.hero-feedback-balloon span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .02em;
}
.hero-feedback-balloon strong {
  color: var(--teal-2);
  font-size: 1.02rem;
  line-height: 1.05;
  letter-spacing: -.035em;
}
.hero-feedback-balloon::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -9px;
  width: 18px;
  height: 18px;
  border-right: 1px solid rgba(57, 198, 184, .36);
  border-bottom: 1px solid rgba(57, 198, 184, .36);
  background: rgba(255,255,255,.92);
  transform: rotate(45deg);
}

/* Homepage v2: collaborative structure */
.hero-full {
  padding: 54px 0 44px;
}
.hero-wide-copy {
  max-width: 1040px;
}
.hero-wide-copy h1 {
  margin: 18px 0 14px;
  max-width: 1060px;
  font-size: clamp(2.25rem, 4.15vw, 4.45rem);
  line-height: .98;
  letter-spacing: -.07em;
  font-weight: 950;
}
.hero-wide-copy h2 {
  max-width: 980px;
  margin: 0 0 14px;
  color: var(--ink-2);
  font-size: clamp(1.05rem, 1.55vw, 1.42rem);
  line-height: 1.36;
  letter-spacing: -.035em;
  font-weight: 850;
}
.hero-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.hero-path-card {
  position: relative;
  display: grid;
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-md);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.hero-path-card:hover,
.hero-path-card:focus {
  transform: translateY(-2px);
  border-color: var(--line-2);
  box-shadow: var(--shadow-lg);
}
.hero-path-card-dark {
  color: #fff;
  border-color: rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 86% 16%, rgba(57,198,184,.22), transparent 24rem),
    linear-gradient(135deg, #102033, #172f49);
}
.hero-path-card h3 {
  max-width: 680px;
  margin: 0 0 10px;
  color: inherit;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
  letter-spacing: -.055em;
}
.hero-path-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}
.hero-path-card-dark p {
  color: #cbd7df;
}
.hero-path-card strong {
  align-self: end;
  display: inline-flex;
  width: fit-content;
  margin-top: 20px;
  color: var(--teal-2);
  font-weight: 950;
}
.hero-path-card-dark strong {
  color: #9bf3ed;
}
.path-label {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--teal);
  color: #062b29;
  font-weight: 950;
}
.service-intro-panel h2 {
  margin-top: 12px;
}
.service-intro-panel p {
  font-size: 1rem;
}
.stacked-actions {
  margin-top: 18px;
}
.app-download-card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 22px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.app-qr {
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.app-qr img {
  width: 86px;
  height: 86px;
}
.app-download-card h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  line-height: 1.12;
  letter-spacing: -.035em;
}
.app-download-card p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.35;
}
.btn-small-app {
  min-height: 36px;
  padding: 8px 12px;
  font-size: .86rem;
}
.automation-split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.automation-card {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow-md);
}
.automation-card-highlight {
  background:
    radial-gradient(circle at 92% 0%, rgba(57,198,184,.17), transparent 20rem),
    rgba(255,255,255,.08);
  border-color: rgba(57,198,184,.25);
}
.automation-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(1.45rem, 2.35vw, 2.1rem);
  line-height: 1.03;
  letter-spacing: -.06em;
}
.automation-card p {
  margin: 0;
  color: #cbd7df;
  font-weight: 650;
}
.automation-card .check-list li {
  color: #d5e1ea;
}
.automation-card .btn-ghost {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}

@media (max-width: 1100px) {
  .hero-path-grid,
  .automation-split-grid {
    grid-template-columns: 1fr;
  }
  .hero-path-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .hero-full {
    padding: 38px 0 34px;
  }
  .hero-wide-copy h1 {
    font-size: clamp(2.2rem, 13vw, 3.2rem);
  }
  .hero-path-grid {
    margin-top: 24px;
  }
  .hero-path-card,
  .automation-card {
    padding: 20px;
    border-radius: 22px;
  }
  .app-download-card {
    grid-template-columns: 1fr;
  }
  .app-qr {
    width: fit-content;
  }
}


@media (max-width: 1100px) {
  .hero-feedback-balloon {
    position: relative;
    top: auto;
    right: auto;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 22px;
    transform: none;
  }
  .hero-feedback-balloon:hover,
  .hero-feedback-balloon:focus {
    transform: translateY(-2px);
  }
}
@media (max-width: 760px) {
  .hero-feedback-balloon {
    width: 100%;
    border-radius: 18px;
  }
  .hero-feedback-balloon::after { display: none; }
}

/* Homepage v3: Maintenance Automation feedback */
.automation-feedback {
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.feedback-head {
  max-width: 780px;
  margin-bottom: 18px;
}
.feedback-head h3 {
  margin: 12px 0 8px;
  color: #fff;
  font-size: clamp(1.65rem, 2.8vw, 2.65rem);
  line-height: 1;
  letter-spacing: -.065em;
}
.feedback-head p {
  margin: 0;
  color: #aebdca;
  font-weight: 650;
}
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.feedback-card {
  margin: 0;
  display: flex;
  min-height: 245px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow-sm);
}
.feedback-card-featured {
  background:
    radial-gradient(circle at 100% 0%, rgba(57,198,184,.15), transparent 18rem),
    rgba(255,255,255,.075);
  border-color: rgba(57,198,184,.24);
}
.feedback-card blockquote {
  margin: 0;
  color: #eef6fb;
  font-size: .98rem;
  line-height: 1.52;
  font-weight: 700;
}
.feedback-card figcaption {
  margin-top: 18px;
  color: #fff;
  font-weight: 950;
}
.feedback-card figcaption span {
  display: block;
  margin-top: 2px;
  color: #95f0eb;
  font-size: .82rem;
  font-weight: 800;
}
@media (max-width: 1100px) {
  .feedback-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .feedback-grid { grid-template-columns: 1fr; }
  .feedback-card { min-height: auto; }
}
