:root {
  --ink: #102337;
  --ink-soft: #4c5f70;
  --forest: #0b5d3b;
  --forest-2: #13844f;
  --blue: #0d73c8;
  --blue-dark: #0b4f8a;
  --mint: #b9f0d5;
  --aqua: #71c8ea;
  --coral: #ef7d68;
  --yellow: #f4c542;
  --paper: #f7fbfd;
  --white: #fff;
  --line: #d7e2e9;
  --dark: #0b1c2b;
  --max: 1240px;
  --header: 76px;
  --utility: 36px;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(8, 43, 67, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, video, iframe, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; letter-spacing: 0; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { width: 1.1em; height: 1.1em; stroke-width: 1.8; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.04; letter-spacing: 0; }
h1, h2, h3 { font-family: "Poppins", Arial, sans-serif; font-weight: 700; }
h2 { font-size: clamp(2.4rem, 5vw, 5.2rem); margin-bottom: 1.25rem; }
h3 { font-size: 1.28rem; margin-bottom: .75rem; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  border-radius: 4px;
}
.skip-link:focus { top: 12px; }

.utility-bar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 110;
  height: var(--utility);
  color: rgba(255, 255, 255, .9);
  background: #0a1722;
  font-size: .69rem;
  font-weight: 600;
}
.utility-inner {
  width: min(var(--max), calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.utility-inner a { min-width: 0; display: inline-flex; align-items: center; gap: 7px; }
.utility-inner svg { color: var(--aqua); flex: 0 0 auto; }

.site-header {
  position: fixed;
  inset: var(--utility) 0 auto;
  z-index: 100;
  height: var(--header);
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(230px, .8fr);
  align-items: center;
  gap: 20px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  color: var(--ink);
  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid rgba(12, 55, 78, .12);
  backdrop-filter: blur(14px);
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  color: var(--ink);
  background: rgba(247, 250, 248, .96);
  box-shadow: 0 5px 24px rgba(8, 28, 22, .08);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; color: var(--blue-dark); font-family: "Poppins", Arial, sans-serif; font-weight: 800; }
.brand img { width: 46px; height: 46px; object-fit: contain; border-radius: 50%; background: var(--white); }
.desktop-nav { display: flex; align-items: center; gap: 19px; font-size: .79rem; font-weight: 700; }
.desktop-nav a { padding: 10px 0; position: relative; }
.desktop-nav a::after { content: ""; position: absolute; inset: auto 50% 2px; height: 2px; background: var(--green, #16a75c); transition: inset .2s ease; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { inset-inline: 0; }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 12px; }
.language-control { display: inline-flex; border: 1px solid currentColor; border-radius: 6px; overflow: hidden; }
.lang-button { border: 0; color: inherit; background: transparent; padding: 7px 9px; cursor: pointer; font-size: .75rem; font-weight: 800; }
.lang-button.active { color: var(--dark); background: var(--mint); }
.menu-button { display: none; width: 42px; height: 42px; align-items: center; justify-content: center; border: 1px solid currentColor; border-radius: 6px; background: transparent; color: inherit; }
.mobile-nav { display: none; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.button-small { min-height: 40px; padding: 8px 14px; font-size: .84rem; }
.button-dark { background: var(--dark); color: var(--white); }
.site-header:not(.scrolled) .button-dark { background: var(--blue); color: var(--white); }
.button-primary { background: #18a95b; color: var(--white); border-color: #18a95b; }
.button-primary:hover { background: #0e8a48; }
.button-blue { background: var(--blue); color: var(--white); border-color: var(--blue); }
.button-blue:hover { background: var(--blue-dark); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.55); background: rgba(4, 18, 14, .2); backdrop-filter: blur(6px); }
.button-ghost:hover { border-color: var(--white); background: rgba(4,18,14,.45); }

.hero {
  position: relative;
  min-height: min(860px, calc(100svh - 44px));
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
}
.hero-media { position: absolute; inset: 0; background: url("../images/cover.jpg") center / cover no-repeat; transform: scale(1.018); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5, 31, 52, .88) 0%, rgba(9, 58, 72, .68) 48%, rgba(11, 93, 59, .45) 100%); }
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: calc(var(--utility) + var(--header) + 58px) 0 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  align-items: center;
  gap: 56px;
}
.hero-copy { max-width: 720px; }
.eyebrow { margin-bottom: 20px; text-transform: uppercase; font-size: .73rem; font-weight: 800; letter-spacing: .12em; color: var(--mint); }
.eyebrow.dark { color: var(--forest-2); }
.location-pill { display: inline-flex; align-items: center; padding: 8px 12px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; background: rgba(5,31,52,.42); backdrop-filter: blur(8px); }
.hero h1 { margin: 0; max-width: 760px; font-size: clamp(3.45rem, 6vw, 6.35rem); text-shadow: 0 4px 24px rgba(0,0,0,.18); }
.hero-lead { margin: 14px 0 0; font-size: clamp(1.55rem, 2.6vw, 2.8rem); font-family: "Poppins", Arial, sans-serif; font-weight: 600; line-height: 1.15; }
.hero-lead span, .hero-lead strong { display: block; }
.hero-lead strong { color: var(--yellow); font-weight: 800; }
.hero-support { max-width: 660px; margin: 22px 0 0; color: rgba(255,255,255,.82); font-size: 1.04rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 30px; color: rgba(255,255,255,.88); font-size: .78rem; }
.hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.hero-proof svg { color: var(--mint); }
.hero-next { position: absolute; z-index: 5; left: 50%; bottom: 18px; transform: translateX(-50%); width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; }

.assistant-stage { position: relative; min-height: 430px; display: grid; place-items: center; isolation: isolate; }
#assistant-orb { width: min(32vw, 390px); height: min(32vw, 390px); min-width: 320px; min-height: 320px; filter: drop-shadow(0 22px 44px rgba(0,0,0,.26)); }
.assistant-call {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: min(350px, 92%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  background: rgba(7, 29, 45, .78);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--radius);
  backdrop-filter: blur(15px);
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}
.assistant-call small, .assistant-call strong { display: block; }
.assistant-call small { color: rgba(255,255,255,.66); font-size: .72rem; }
.assistant-call strong { font-size: .94rem; }
.availability-dot { width: 10px; height: 10px; background: #8ff1b3; border-radius: 50%; box-shadow: 0 0 0 5px rgba(143,241,179,.14); }
.capability-pill { position: absolute; display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; background: rgba(7,26,21,.6); backdrop-filter: blur(12px); font-size: .72rem; font-weight: 800; animation: float 5.5s ease-in-out infinite; }
.capability-pill svg { color: var(--yellow); }
.pill-one { top: 58px; left: 1%; }
.pill-two { top: 122px; right: -1%; animation-delay: -1.7s; }
.pill-three { bottom: 104px; left: -2%; animation-delay: -3.2s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.trust-band { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); border-bottom: 1px solid var(--line); }
.trust-item { min-height: 86px; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 18px; border-right: 1px solid var(--line); font-size: .82rem; font-weight: 800; text-align: center; }
.trust-item:last-child { border-right: 0; }
.trust-item svg { color: var(--forest-2); width: 22px; height: 22px; flex: 0 0 auto; }

.proof-section {
  padding: 112px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--white);
}
.compact-heading { max-width: 850px; }
.compact-heading h2 { font-size: clamp(2.45rem, 4.5vw, 4.8rem); }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.proof-grid article {
  min-height: 238px;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: var(--radius);
  background: #fbfdff;
  box-shadow: 0 12px 34px rgba(7, 47, 75, .06);
}
.proof-grid article:nth-child(2) { border-top-color: #18a95b; }
.proof-grid article:nth-child(3) { border-top-color: var(--yellow); }
.proof-grid article:nth-child(4) { border-top-color: var(--coral); }
.proof-grid svg { width: 34px; height: 34px; margin-bottom: 44px; color: var(--blue); }
.proof-grid article:nth-child(2) svg { color: #13844f; }
.proof-grid article:nth-child(3) svg { color: #b58b09; }
.proof-grid article:nth-child(4) svg { color: #bd5442; }
.proof-grid strong, .proof-grid span { display: block; }
.proof-grid strong { margin-bottom: 8px; font-family: "Poppins", Arial, sans-serif; font-size: 1.05rem; }
.proof-grid span { color: var(--ink-soft); font-size: .82rem; line-height: 1.55; }

.section { padding: 120px max(24px, calc((100vw - var(--max)) / 2)); }
.section-heading { max-width: 900px; margin-bottom: 54px; }
.section-heading > p:last-child { max-width: 700px; color: var(--ink-soft); font-size: 1.05rem; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 64px; }
.split-heading p:last-child { margin: 0 0 22px; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; border: 0; }
.service-card { position: relative; min-height: 310px; padding: 40px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 14px 42px rgba(8, 47, 73, .07); transition: transform .22s ease, box-shadow .22s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 22px 54px rgba(8, 47, 73, .13); }
.service-card:nth-child(2n), .service-card:nth-last-child(-n+2) { border: 1px solid var(--line); }
.service-card > svg { width: 35px; height: 35px; color: var(--forest-2); }
.service-index { position: absolute; top: 36px; right: 40px; color: #8a9892; font-size: .75rem; font-weight: 800; }
.service-card h3 { margin-top: 78px; font-size: 1.7rem; }
.service-card p:last-child { max-width: 560px; margin-bottom: 0; color: var(--ink-soft); }
.accent-card { background: var(--blue-dark); color: var(--white); }
.accent-card > svg { color: var(--mint); }
.accent-card p:last-child { color: rgba(255,255,255,.73); }
.warm-card { background: #fff8e8; }

.why-section {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 86px;
  align-items: center;
  padding: 112px max(24px, calc((100vw - var(--max)) / 2));
  background: #eaf6fb;
}
.why-copy { max-width: 540px; }
.why-copy h2 { font-size: clamp(2.7rem, 4.8vw, 5.1rem); }
.why-copy > p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.02rem; }
.why-copy .button { margin-top: 18px; }
.why-list { border-top: 1px solid #b9d2df; }
.why-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid #b9d2df;
}
.why-list article > span { color: var(--blue); font-family: "Poppins", Arial, sans-serif; font-size: .75rem; font-weight: 800; }
.why-list h3 { margin-bottom: 7px; font-size: 1.15rem; }
.why-list p { margin: 0; color: var(--ink-soft); font-size: .86rem; }

.work-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: 72px; align-items: center; padding: 110px max(24px, calc((100vw - var(--max)) / 2)); color: var(--white); background: #0b2740; }
.work-copy { max-width: 430px; }
.work-copy h2 { font-size: clamp(2.7rem, 4.6vw, 5.4rem); }
.work-copy > p:not(.eyebrow) { color: rgba(255,255,255,.7); }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; padding-bottom: 5px; border-bottom: 1px solid var(--mint); color: var(--mint); font-weight: 800; font-size: .84rem; }
.video-grid { display: grid; grid-template-columns: 1.4fr .6fr; grid-template-rows: repeat(2, minmax(180px, 1fr)); gap: 12px; min-height: 560px; }
.video-item { background: #000; border: 1px solid rgba(255,255,255,.12); overflow: hidden; }
.video-item iframe { width: 100%; height: 100%; border: 0; }
.featured-video { grid-row: 1 / 3; }
.video-grid.two-videos { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: minmax(420px, 1fr); }
.video-grid.two-videos .featured-video { grid-row: auto; }

.pricing-section { background: var(--white); }
.pricing-list { border-top: 1px solid var(--ink); }
.price-row { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: start; padding: 28px 0; border-bottom: 1px solid var(--line); }
.price-row > div { display: grid; grid-template-columns: 42px 1fr; gap: 20px; align-items: start; }
.price-row svg { width: 28px; height: 28px; color: var(--forest-2); }
.price-row strong, .price-row small { display: block; }
.price-row strong { margin-bottom: 5px; font-size: 1.05rem; }
.price-row small { max-width: 840px; color: var(--ink-soft); font-size: .8rem; line-height: 1.55; }
.price-row > b { font-family: "Poppins", Arial, sans-serif; font-size: 1.8rem; white-space: nowrap; }
.price-row > b span { font-family: "Open Sans", Arial, sans-serif; font-size: .72rem; }
.pricing-note { max-width: 860px; margin: 24px 0 0; color: var(--ink-soft); font-size: .82rem; }

.care-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 680px; }
.care-section > * { min-width: 0; }
.care-visual { min-height: 560px; overflow: hidden; background: var(--forest); }
.care-visual img { width: 100%; height: 100%; object-fit: cover; }
.care-copy { display: flex; flex-direction: column; justify-content: center; padding: 80px max(36px, calc((100vw - var(--max)) / 2)); padding-left: clamp(46px, 7vw, 110px); background: #eef8f2; }
.care-copy h2 { max-width: 650px; font-size: clamp(2.8rem, 4.8vw, 5.2rem); }
.care-list { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 18px; }
.care-list li { display: grid; grid-template-columns: 30px 1fr; gap: 12px; align-items: start; max-width: 650px; }
.care-list svg { width: 23px; height: 23px; color: var(--forest-2); margin-top: 2px; }

.process-section { background: #eef2f0; }
.process-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.process-list li { min-height: 250px; padding: 26px 26px 26px 0; border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; }
.process-list li + li { padding-left: 26px; }
.process-list li:last-child { border-right: 0; }
.process-list li > span { color: var(--forest-2); font-size: .72rem; font-weight: 800; }
.process-list h3 { font-size: 1.15rem; }
.process-list p { margin: 0; color: var(--ink-soft); font-size: .84rem; }

.areas-faq-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 84px;
  padding: 116px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--white);
}
.areas-panel h2, .faq-panel h2 { font-size: clamp(2.45rem, 4.2vw, 4.5rem); }
.areas-panel > p:not(.eyebrow) { max-width: 500px; color: var(--ink-soft); }
.area-list { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.area-list span { padding: 9px 12px; border: 1px solid #b9ceda; border-radius: 999px; color: var(--blue-dark); background: #f4faff; font-size: .76rem; font-weight: 700; }
.faq-panel details { border-top: 1px solid var(--line); }
.faq-panel details:last-child { border-bottom: 1px solid var(--line); }
.faq-panel summary { position: relative; padding: 20px 42px 20px 0; cursor: pointer; list-style: none; font-family: "Poppins", Arial, sans-serif; font-size: .95rem; font-weight: 700; }
.faq-panel summary::-webkit-details-marker { display: none; }
.faq-panel summary::after { content: "+"; position: absolute; right: 4px; top: 17px; color: var(--blue); font-size: 1.35rem; }
.faq-panel details[open] summary::after { content: "−"; }
.faq-panel details p { margin: -4px 0 20px; max-width: 760px; color: var(--ink-soft); font-size: .86rem; }

.contact-section { display: grid; grid-template-columns: .92fr 1.08fr; gap: 90px; padding: 120px max(24px, calc((100vw - var(--max)) / 2)); color: var(--white); background: #0b3656; }
.contact-intro h2 { max-width: 600px; }
.contact-intro > p:not(.eyebrow) { max-width: 570px; color: rgba(255,255,255,.72); }
.channel-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 40px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); }
.channel-list a { min-width: 0; display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: center; padding: 17px; background: var(--forest); }
.channel-list a:last-child { grid-column: 1 / -1; }
.channel-list svg { color: var(--mint); width: 21px; height: 21px; }
.channel-list small, .channel-list strong { display: block; overflow-wrap: anywhere; }
.channel-list small { color: rgba(255,255,255,.62); font-size: .65rem; }
.channel-list strong { font-size: .77rem; }

.quote-form { color: var(--ink); background: var(--white); padding: 42px; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-heading span { color: var(--forest-2); text-transform: uppercase; font-size: .7rem; font-weight: 800; letter-spacing: .14em; }
.form-heading h3 { margin: 7px 0 30px; font-family: "Poppins", Arial, sans-serif; font-size: 2.35rem; }
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.quote-form label { display: block; margin-bottom: 18px; font-size: .72rem; font-weight: 800; }
.quote-form label > span:first-child { display: block; margin-bottom: 7px; }
.quote-form input:not([type="checkbox"]), .quote-form select, .quote-form textarea { width: 100%; min-height: 47px; padding: 11px 12px; color: var(--ink); background: #f9fbfa; border: 1px solid #c9d4cf; border-radius: 4px; }
.quote-form textarea { resize: vertical; min-height: 110px; }
.consent-row { display: grid !important; grid-template-columns: 19px 1fr; gap: 10px; align-items: start; font-weight: 500 !important; color: var(--ink-soft); line-height: 1.45; }
.consent-row input { width: 18px; height: 18px; accent-color: var(--forest-2); }
.consent-row span { margin: 0 !important; }
.quote-form .button { width: 100%; border: 0; }
.form-message { min-height: 24px; margin: 12px 0 0; font-size: .78rem; font-weight: 700; }
.form-message.success { color: #14623e; }
.form-message.error { color: #a62c24; }
.form-legal { display: flex; justify-content: center; gap: 8px; margin: 12px 0 0; color: var(--ink-soft); font-size: .7rem; }
.form-legal a { text-decoration: underline; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }

.site-footer { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 36px; padding: 46px max(24px, calc((100vw - var(--max)) / 2)); color: var(--white); background: #081722; border-top: 1px solid rgba(255,255,255,.12); }
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand img { border-radius: 50%; background: var(--white); }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand span { color: rgba(255,255,255,.55); font-size: .7rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; font-size: .75rem; font-weight: 700; }
.social-links { display: flex; gap: 8px; }
.social-links a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.tiktok-mark { font-weight: 900; }
.copyright { grid-column: 1 / -1; margin: 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.45); font-size: .7rem; }
.mobile-contact { display: none; }

.reveal-ready [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal-ready [data-reveal].revealed { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .menu-button { display: inline-flex; }
  .mobile-nav { position: fixed; top: calc(var(--utility) + var(--header)); left: 0; right: 0; display: grid; gap: 0; padding: 16px 24px 24px; background: var(--paper); color: var(--ink); border-bottom: 1px solid var(--line); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: transform .22s ease, opacity .22s ease; }
  .mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .mobile-nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); font-weight: 800; }
  .hero-inner { grid-template-columns: 1fr .58fr; gap: 30px; }
  .assistant-stage { min-height: 390px; }
  #assistant-orb { min-width: 310px; min-height: 310px; }
  .pill-one { left: -2%; }
  .pill-two { right: -7%; }
  .pill-three { left: -5%; }
  .work-section, .contact-section { gap: 48px; }
  .care-copy { padding-right: 36px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .why-section, .areas-faq-section { gap: 48px; }
}

@media (max-width: 820px) {
  :root { --header: 68px; --utility: 0px; }
  .utility-bar { display: none; }
  .site-header { top: 0; padding-inline: 18px; }
  .mobile-nav { top: var(--header); }
  .brand span { font-size: .84rem; }
  .brand img { width: 42px; height: 42px; }
  .header-actions .button { display: none; }
  .hero { min-height: auto; }
  .hero-media { background-position: center; }
  .hero-shade { background: linear-gradient(180deg, rgba(5,31,52,.78), rgba(5,48,56,.76), rgba(8,63,43,.74)); }
  .hero-inner { width: min(100% - 36px, 680px); padding-top: calc(var(--header) + 48px); grid-template-columns: 1fr; gap: 12px; }
  .hero h1 { font-size: clamp(3.35rem, 13vw, 5.5rem); }
  .assistant-stage { min-height: 330px; }
  #assistant-orb { width: 320px; height: 320px; min-width: 0; min-height: 0; }
  .pill-one { top: 38px; left: 8%; }
  .pill-two { top: 92px; right: 6%; }
  .pill-three { bottom: 92px; left: 6%; }
  .trust-band { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section, .proof-section { padding-block: 88px; }
  .split-heading { grid-template-columns: 1fr; gap: 4px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(2n), .service-card:nth-last-child(-n+2) { min-height: 280px; border: 1px solid var(--line); }
  .why-section { grid-template-columns: 1fr; padding-block: 88px; }
  .work-section { grid-template-columns: 1fr; padding-block: 88px; }
  .work-copy { max-width: 640px; }
  .video-grid { min-height: 720px; grid-template-columns: 1fr 1fr; grid-template-rows: minmax(360px, 1.5fr) minmax(280px, 1fr); }
  .featured-video { grid-column: 1 / -1; grid-row: auto; }
  .video-grid.two-videos { min-height: 440px; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: minmax(440px, 1fr); }
  .video-grid.two-videos .featured-video { grid-column: auto; }
  .care-section { grid-template-columns: 1fr; }
  .care-section { overflow: hidden; }
  .care-visual { min-height: 440px; }
  .care-copy { padding: 82px 28px; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .process-list li:nth-child(2) { border-right: 0; }
  .process-list li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .areas-faq-section { grid-template-columns: 1fr; padding-block: 88px; }
  .contact-section { grid-template-columns: 1fr; padding-block: 88px; }
  .site-footer { grid-template-columns: 1fr auto; }
  .footer-links { grid-column: 1 / -1; grid-row: 2; }
  .copyright { grid-row: 3; }
}

@media (min-width: 561px) and (max-width: 820px) {
  .hero { min-height: min(860px, calc(100svh - 24px)); }
  .hero-inner { min-height: inherit; grid-template-columns: minmax(0, 1.08fr) minmax(270px, .92fr); align-items: center; padding-bottom: 34px; }
  .hero h1 { font-size: clamp(3rem, 7.2vw, 4rem); }
  .hero-lead { font-size: clamp(1.25rem, 3vw, 1.8rem); }
  .hero-support { font-size: .9rem; }
  .assistant-stage { min-height: 330px; }
  #assistant-orb { width: 290px; height: 290px; }
  .pill-one { left: -2%; }
  .pill-two { right: -3%; }
  .pill-three { left: -2%; }
}

@media (max-width: 560px) {
  h2 { font-size: 2.55rem; }
  .language-control { margin-right: 0; }
  .lang-button { padding-inline: 8px; }
  .hero-inner {
    min-height: min(820px, 100svh);
    padding-top: calc(var(--header) + 34px);
    padding-bottom: 24px;
    gap: 8px;
  }
  .hero-copy { text-align: left; }
  .eyebrow { margin-bottom: 8px; }
  .location-pill { padding: 6px 9px; font-size: .59rem; }
  .hero h1 { font-size: clamp(2.65rem, 12vw, 3.45rem); line-height: .98; overflow-wrap: anywhere; }
  .hero-lead { margin-top: 10px; font-size: 1.25rem; line-height: 1.16; }
  .hero-support { margin-top: 12px; font-size: .88rem; line-height: 1.48; }
  .hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 18px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .button { min-height: 44px; padding: 9px 7px; font-size: .74rem; }
  .hero-actions svg { width: 17px; height: 17px; }
  .hero-proof { gap: 8px 13px; margin-top: 16px; font-size: .66rem; }
  .assistant-stage { width: 100%; min-width: 0; min-height: 238px; margin-top: 0; overflow: clip; }
  #assistant-orb { width: 220px; height: 220px; }
  .capability-pill { padding: 7px 9px; font-size: .63rem; }
  .pill-one { top: 28px; left: 2%; }
  .pill-two { top: 70px; right: 2%; }
  .pill-three { display: none; }
  .assistant-call { bottom: 4px; width: min(255px, 82%); padding: 10px 12px; }
  .assistant-call small { font-size: .63rem; }
  .assistant-call strong { font-size: .79rem; }
  .hero-next { display: none; }
  .trust-band { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .section, .proof-section, .why-section, .work-section, .areas-faq-section, .contact-section { padding: 76px 20px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid article { min-height: 200px; }
  .proof-grid svg { margin-bottom: 28px; }
  .section-heading { margin-bottom: 36px; }
  .service-card { padding: 28px; }
  .service-index { right: 28px; top: 28px; }
  .service-card h3 { margin-top: 56px; }
  .video-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 440px); min-height: 0; }
  .featured-video { grid-column: auto; }
  .video-grid.two-videos { grid-template-columns: 1fr; grid-template-rows: repeat(2, 440px); min-height: 0; }
  .price-row { grid-template-columns: 1fr; gap: 14px; }
  .price-row > div { grid-template-columns: 32px 1fr; gap: 14px; }
  .price-row > b { padding-left: 46px; }
  .care-visual { min-height: 300px; }
  .care-copy { padding: 70px 20px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li, .process-list li + li { min-height: 190px; padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .area-list { gap: 7px; }
  .channel-list { grid-template-columns: 1fr; }
  .channel-list a:last-child { grid-column: auto; }
  .quote-form { padding: 28px 20px; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .form-heading h3 { font-size: 2rem; }
  .site-footer { grid-template-columns: 1fr; padding: 42px 20px 90px; }
  .footer-links { grid-column: auto; grid-row: auto; }
  .copyright { grid-row: auto; }
  .mobile-contact { position: fixed; z-index: 90; right: 18px; bottom: 18px; width: 52px; height: 52px; display: grid; place-items: center; color: var(--dark); background: var(--mint); border-radius: 50%; box-shadow: 0 10px 30px rgba(3,18,13,.28); }
  .mobile-contact svg { width: 24px; height: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
