@import url("./fonts/caveat.css");
@import url("./fonts/fredoka.css");
@import url("./fonts/nunito.css");

:root {
  --gold: #ffb81c;
  --core-gold: #ffc21f;
  --amber: #f58a07;
  --coral: #ff5a36;
  --ink: #211c1a;
  --cream: #fff6e6;
  --paper: #fffdf8;
  --line: #f0e4cc;
  --muted: #6b5b48;
  --quiet: #9a876e;
  --green: #1f8a5b;
  --violet: #9a64c7;
  --blue: #3576c9;
  --display: "Caveat Variable", "Segoe Print", cursive;
  --body: "Nunito Variable", "Avenir Next", system-ui, sans-serif;
  --rounded: "Fredoka Variable", ui-rounded, system-ui, sans-serif;
  --shadow: 0 22px 70px rgba(83, 55, 15, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: 12px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--ink);
  color: var(--cream);
  padding: 10px 14px;
  font-weight: 800;
  transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(240, 228, 204, 0.85);
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: min(1240px, calc(100% - 40px));
  min-height: 76px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand { min-height: 44px; display: inline-flex; align-items: center; width: max-content; color: var(--ink); text-decoration: none; }
.brand-wordmark { display: inline-flex; align-items: baseline; font-family: var(--rounded); font-size: 30px; font-weight: 700; letter-spacing: -0.055em; line-height: 1; }
.brand-bang { position: relative; width: 9px; height: 25px; display: inline-block; margin-left: 3px; }
.brand-bang::before { content: ""; position: absolute; left: 2px; top: 0; width: 6px; height: 15px; border-radius: 999px; background: currentColor; }
.brand-bang::after { content: ""; position: absolute; left: 0; bottom: 0; width: 10px; height: 10px; border: 3px solid var(--gold); border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 2px rgba(255, 184, 28, 0.2); }
.primary-nav { display: flex; justify-content: center; gap: 4px; }
.primary-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 12px;
  color: #5c4d3b;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.primary-nav a:hover { background: #fff2d7; color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.language-switcher {
  display: flex;
  align-items: center;
  border: 1px solid #ead9b8;
  border-radius: 12px;
  background: #fffaf0;
  padding: 3px;
}
.language-switcher a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: #806f59;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}
.language-switcher a[aria-current="page"] { background: var(--ink); color: var(--cream); }
.menu-button { display: none; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 14px;
  background: linear-gradient(145deg, #ffcf4c, var(--amber));
  box-shadow: 0 12px 26px -14px rgba(245, 138, 7, 0.75);
  color: var(--ink);
  padding: 0 22px;
  font-family: var(--rounded);
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(245, 138, 7, 0.8); }
.button-small { min-height: 44px; padding-inline: 18px; font-size: 13px; }
.button-outline { border-color: var(--ink); background: transparent; box-shadow: none; }
.button-outline:hover { background: rgba(255, 255, 255, 0.55); box-shadow: none; }
.button-dark { background: var(--ink); color: var(--cream); box-shadow: 0 16px 32px -18px rgba(33, 28, 26, 0.65); }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid #f2deb4;
}
.section-warm { background: radial-gradient(120% 110% at 40% 8%, #fffdf8 0%, #fff3da 55%, #ffe6b8 100%); }
.section-light { background: var(--paper); }
.section-cream { background: var(--cream); }
.section-dark { background: var(--ink); color: var(--cream); }
.section-gold { background: linear-gradient(145deg, #ffd766, #ffb81c 58%, #f58a07); }
.hero-grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(480px, 1.06fr);
  align-items: center;
  gap: 66px;
  padding-block: 88px 94px;
}
.sun-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 184, 28, 0.34);
  border-radius: 50%;
  pointer-events: none;
}
.sun-orbit::after { content: ""; position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--coral); }
.sun-orbit-one { width: 520px; height: 520px; left: -300px; top: 80px; }
.sun-orbit-one::after { right: 58px; top: 68px; }
.sun-orbit-two { width: 650px; height: 650px; right: -420px; bottom: -330px; }
.sun-orbit-two::after { left: 68px; top: 118px; }
.eyebrow {
  margin: 0 0 18px;
  color: #a36d0c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow-dot { width: 9px; height: 9px; display: inline-block; margin-right: 9px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 5px rgba(255, 184, 28, 0.25); }
.hero h1, .section-heading h2, .bridge h2, .how h2, .pilot h2, .faq h2, .contact h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
}
.hero h1 { max-width: 720px; font-size: clamp(52px, 6.5vw, 88px); }
.hero h1 em { display: block; color: #c76c05; font-style: normal; }
.hero-body { max-width: 610px; margin: 28px 0 0; color: var(--muted); font-size: 19px; font-weight: 650; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.proof-list { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 28px 0 0; padding: 0; list-style: none; color: #76634d; font-size: 13px; font-weight: 800; }
.proof-list li::before { content: "✓"; margin-right: 7px; color: var(--green); font-weight: 1000; }

.workspace-wrap { position: relative; min-width: 0; }
.workspace-glow { position: absolute; inset: 8% 2%; border-radius: 50%; background: rgba(245, 138, 7, 0.23); filter: blur(45px); }
.workspace-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 26px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 36px 90px -34px rgba(78, 47, 9, 0.48);
}
.workspace-bar { min-height: 44px; display: flex; align-items: center; gap: 6px; border-bottom: 1px solid var(--line); padding: 0 18px; color: #ac9576; font-size: 11px; font-weight: 800; }
.workspace-bar span { width: 8px; height: 8px; border-radius: 50%; background: #e8d6b8; }
.workspace-bar span:first-child { background: var(--coral); }
.workspace-bar span:nth-child(2) { background: var(--gold); }
.workspace-bar span:nth-child(3) { background: var(--green); }
.workspace-bar strong { margin-left: auto; }
.workspace-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 28px 30px 22px; }
.workspace-head p { margin: 0 0 4px; color: #a36d0c; font-size: 10px; font-weight: 900; letter-spacing: 0.14em; }
.workspace-head h2 { margin: 0; font-family: var(--rounded); font-size: 27px; line-height: 1.2; }
.live-pill { display: inline-flex; align-items: center; gap: 7px; border: 1px solid #cde8dc; border-radius: 999px; background: #edf9f4; color: var(--green); padding: 7px 10px; font-size: 11px; font-weight: 900; }
.live-pill i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(31, 138, 91, 0.12); }
.workspace-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 18px 24px; }
.workspace-grid article { min-width: 0; display: flex; gap: 13px; border: 1px solid var(--line); border-radius: 16px; background: #fff; padding: 16px; }
.workspace-grid h3 { margin: 0 0 6px; font-family: var(--rounded); font-size: 14px; }
.workspace-grid strong { display: block; font-size: 15px; }
.workspace-grid p { margin: 2px 0 0; color: var(--quiet); font-size: 11px; font-weight: 700; }
.mini-icon, .product-icon { display: grid; place-items: center; flex: 0 0 auto; border-radius: 12px; }
.mini-icon { width: 42px; height: 42px; background: #fff2d7; color: #c76c05; }
.mini-icon svg, .product-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.mini-2 { background: #fff0ed; color: var(--coral); }
.mini-3 { background: #f1e9fa; color: var(--violet); }
.mini-4 { background: #e8f2ff; color: var(--blue); }
.workspace-flow { height: 44px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; gap: 0; border-top: 1px solid var(--line); padding-inline: 50px; background: #fffaf0; }
.workspace-flow span { position: relative; height: 4px; background: linear-gradient(90deg, var(--gold), var(--coral)); }
.workspace-flow span::before { content: ""; position: absolute; left: -4px; top: -4px; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); border: 3px solid #fffaf0; }
.workspace-flow span:last-child::after { content: ""; position: absolute; right: -4px; top: -4px; width: 12px; height: 12px; border-radius: 50%; background: var(--coral); border: 3px solid #fffaf0; }

.trust-strip { background: var(--ink); color: #dbc9aa; }
.trust-strip .shell { min-height: 76px; display: flex; align-items: center; justify-content: center; gap: clamp(22px, 5vw, 72px); }
.trust-strip span { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 800; }
.trust-strip i { color: var(--gold); font-style: normal; }

.products, .packages, .how, .faq { padding-block: 104px; }
.section-heading { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-heading.narrow { max-width: 680px; }
.section-heading h2, .how h2, .faq h2 { font-size: clamp(42px, 5vw, 64px); }
.section-heading > p:last-child { max-width: 650px; margin: 20px auto 0; color: var(--muted); font-size: 18px; }
.products-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.product-card { position: relative; overflow: hidden; min-height: 330px; border: 1px solid var(--line); border-radius: 24px; background: #fff; padding: 30px; box-shadow: 0 15px 50px rgba(87, 56, 19, 0.06); }
.product-card::after { content: ""; position: absolute; width: 190px; height: 190px; right: -94px; bottom: -105px; border: 30px solid rgba(255, 184, 28, 0.12); border-radius: 50%; }
.product-top { display: flex; align-items: center; justify-content: space-between; }
.product-icon { width: 50px; height: 50px; background: #fff0cf; color: #bd6e07; }
.product-index { color: #d2bea0; font-family: var(--rounded); font-size: 14px; font-weight: 900; }
.product-tag { margin: 27px 0 6px !important; color: #9a6b12 !important; font-size: 11px !important; font-weight: 900 !important; letter-spacing: 0.12em; text-transform: uppercase; }
.product-card h3 { margin: 0; font-family: var(--rounded); font-size: 28px; }
.product-card > p { max-width: 47ch; margin: 14px 0 0; color: var(--muted); }
.product-result { position: relative; z-index: 1; border-top: 1px solid var(--line); padding-top: 15px; color: var(--ink) !important; font-size: 13px; font-weight: 800; }
.product-2 .product-icon { background: #fff0ed; color: var(--coral); }
.product-3 .product-icon { background: #f2eafb; color: var(--violet); }
.product-4 .product-icon { background: #e9f3ff; color: var(--blue); }

.bridge { padding-block: 94px; }
.bridge-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr); align-items: center; gap: 80px; }
.bridge h2 { max-width: 640px; font-size: clamp(46px, 5vw, 66px); }
.bridge p:not(.eyebrow) { max-width: 590px; margin: 22px 0 0; color: #cbb99c; font-size: 18px; }
.eyebrow-dark { color: #e2a62d; }
.flow-list { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); }
.flow-list li { position: relative; min-width: 0; padding: 82px 8px 0; text-align: center; }
.flow-list li::before { content: ""; position: absolute; left: 0; right: 0; top: 44px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--coral)); }
.flow-list li:first-child::before { left: 50%; }
.flow-list li:last-child::before { right: 50%; }
.flow-list span { position: absolute; z-index: 1; left: 50%; top: 22px; width: 46px; height: 46px; display: grid; place-items: center; transform: translateX(-50%); border: 1px solid #795c28; border-radius: 50%; background: var(--ink); color: var(--gold); font-size: 11px; font-weight: 900; }
.flow-list strong { font-family: var(--rounded); font-size: 13px; }

.packages-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; gap: 18px; }
.package-card { position: relative; border: 1px solid #ead9b8; border-radius: 24px; background: var(--paper); padding: 32px 28px; }
.package-card h3 { margin: 9px 0 10px; font-family: var(--rounded); font-size: 25px; line-height: 1.2; }
.package-card > p:not(.package-products) { color: var(--muted); }
.package-products { margin: 0; color: #a36d0c; font-size: 12px; font-weight: 900; letter-spacing: 0.07em; text-transform: uppercase; }
.package-card ul { display: grid; gap: 11px; margin: 24px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); list-style: none; }
.package-card li { position: relative; padding-left: 24px; color: #5e4e3c; font-size: 14px; font-weight: 700; }
.package-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.package-featured { transform: translateY(-10px); border-color: #e4a527; background: linear-gradient(165deg, #fffdf8, #fff1d4); box-shadow: var(--shadow); }
.package-mark { position: absolute; right: 24px; top: 22px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--gold); color: var(--ink); }

.steps-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin: 0; padding: 0; list-style: none; }
.steps-grid li { border-top: 3px solid var(--gold); padding: 28px 12px 8px 0; }
.steps-grid span { color: #c9821a; font-size: 12px; font-weight: 900; letter-spacing: 0.12em; }
.steps-grid h3 { margin: 15px 0 10px; font-family: var(--rounded); font-size: 24px; }
.steps-grid p { max-width: 36ch; margin: 0; color: var(--muted); }

.pilot { padding-block: 92px; }
.pilot-card { display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr); gap: 72px; align-items: center; border: 1px solid rgba(242, 222, 180, 0.9); border-radius: 30px; background: rgba(255, 253, 248, 0.78); box-shadow: var(--shadow); padding: 52px; }
.pilot h2 { max-width: 670px; font-size: clamp(42px, 5vw, 62px); }
.pilot p:not(.eyebrow) { margin: 20px 0 0; color: var(--muted); font-size: 17px; }
.pilot ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.pilot li { display: flex; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 14px; background: #fff; padding: 13px 15px; font-weight: 800; }
.pilot li span { width: 26px; height: 26px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: #e7f5ee; color: var(--green); }

.faq-grid { display: grid; grid-template-columns: 0.65fr 1.35fr; gap: 80px; align-items: start; }
.faq-list { display: grid; gap: 10px; }
.faq-list details { border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.faq-list summary { min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 18px; cursor: pointer; padding: 16px 19px; font-weight: 900; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-size: 23px; color: #ba7508; transition: transform 160ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 19px 20px; color: var(--muted); }

.contact { position: relative; overflow: hidden; padding-block: 104px; }
.contact-inner { max-width: 790px; text-align: center; }
.contact .eyebrow { color: #714400; }
.contact h2 { font-size: clamp(48px, 6vw, 76px); }
.contact p:not(.eyebrow) { max-width: 650px; margin: 22px auto 30px; color: #5a3908; font-size: 18px; font-weight: 700; }
.contact small { display: block; margin-top: 15px; color: #70470b; font-weight: 700; }
.contact-spark { position: absolute; width: 300px; height: 300px; right: -90px; top: -96px; opacity: 0.28; transform: rotate(12deg); }

.site-footer { background: var(--ink); color: #cbb99c; padding: 58px 0 24px; }
.footer-main { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 38px; padding-bottom: 38px; border-bottom: 1px solid #40362f; }
.brand-footer { color: var(--cream); }
.footer-main p { margin: 0; }
.footer-main > a:last-child { min-height: 44px; display: inline-flex; align-items: center; color: var(--cream); font-weight: 800; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 22px; font-size: 13px; }
.language-footer { border-color: #4a3f37; background: #2b2521; }
.language-footer a { color: #cbb99c; }
.language-footer a[aria-current="page"] { background: var(--gold); color: var(--ink); }

.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 560ms ease, transform 560ms ease; }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .header-inner { gap: 16px; }
  .primary-nav a { padding-inline: 9px; font-size: 13px; }
  .hero-grid { grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr); gap: 34px; }
  .hero h1 { font-size: clamp(50px, 6.5vw, 70px); }
  .workspace-head { padding: 24px 23px 18px; }
  .workspace-grid { grid-template-columns: 1fr; }
  .bridge-grid { grid-template-columns: 1fr; gap: 50px; }
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .package-card:last-child { grid-column: 1 / -1; }
  .package-featured { transform: none; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 76px; }
  .shell { width: min(100% - 32px, 720px); }
  .header-inner { width: min(100% - 28px, 760px); min-height: 68px; grid-template-columns: auto 1fr auto; }
  .brand { width: 92px; }
  .menu-button {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 4px;
    justify-self: end;
    border: 1px solid #ead9b8;
    border-radius: 11px;
    background: #fffaf0;
  }
  .menu-button span:not(.sr-only) { width: 20px; height: 2px; border-radius: 2px; background: var(--ink); }
  .primary-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--paper);
    box-shadow: var(--shadow);
    padding: 8px;
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { justify-content: center; min-height: 48px; }
  .header-actions { grid-column: 2; grid-row: 1; justify-self: end; }
  .header-actions > .button { display: none; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 48px; padding-block: 64px 72px; }
  .hero-copy { text-align: center; }
  .hero h1, .hero-body { margin-inline: auto; }
  .hero-actions, .proof-list { justify-content: center; }
  .workspace-wrap { width: min(100%, 640px); margin-inline: auto; }
  .workspace-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip .shell { min-height: 96px; flex-wrap: wrap; gap: 12px 28px; padding-block: 18px; }
  .products, .packages, .how, .faq { padding-block: 80px; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card { min-height: auto; }
  .packages-grid { grid-template-columns: 1fr; }
  .package-card:last-child { grid-column: auto; }
  .steps-grid { grid-template-columns: 1fr; gap: 28px; }
  .steps-grid li { display: grid; grid-template-columns: 48px 1fr; column-gap: 14px; }
  .steps-grid span { grid-row: 1 / 3; padding-top: 5px; }
  .steps-grid h3 { margin-top: 0; }
  .pilot-card { grid-template-columns: 1fr; gap: 36px; padding: 38px; }
  .faq-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-main { grid-template-columns: 1fr auto; }
  .footer-main p { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 24px, 520px); }
  .header-inner { width: calc(100% - 20px); grid-template-columns: auto 1fr auto; gap: 8px; }
  .header-actions { justify-self: center; }
  .language-switcher a { min-width: 44px; }
  .hero-grid { padding-block: 48px 56px; }
  .hero h1 { font-size: clamp(44px, 13vw, 60px); }
  .hero-body { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .proof-list { display: grid; justify-items: center; gap: 9px; }
  .workspace-head { padding: 20px 18px 16px; }
  .workspace-head h2 { font-size: 22px; }
  .workspace-head p { max-width: 190px; }
  .workspace-grid { grid-template-columns: 1fr; padding: 0 12px 18px; }
  .workspace-grid article { padding: 13px; }
  .workspace-flow { padding-inline: 28px; }
  .trust-strip .shell { align-items: flex-start; flex-direction: column; padding-block: 20px; }
  .products, .packages, .how, .faq { padding-block: 66px; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2, .how h2, .faq h2 { font-size: 41px; }
  .section-heading > p:last-child { font-size: 16px; }
  .product-card, .package-card { padding: 24px 21px; border-radius: 20px; }
  .product-card h3 { font-size: 24px; }
  .bridge { padding-block: 72px; }
  .bridge h2 { font-size: 43px; }
  .flow-list { grid-template-columns: 1fr; gap: 0; }
  .flow-list li { min-height: 66px; display: flex; align-items: center; padding: 0 0 0 66px; text-align: left; }
  .flow-list li::before { left: 22px !important; right: auto !important; top: 0; bottom: 0; width: 2px; height: auto; }
  .flow-list li:first-child::before { top: 50%; }
  .flow-list li:last-child::before { bottom: 50%; }
  .flow-list span { left: 23px; top: 50%; transform: translate(-50%, -50%); }
  .pilot { padding-block: 60px; }
  .pilot-card { width: calc(100% - 24px); padding: 28px 20px; border-radius: 22px; }
  .pilot h2 { font-size: 41px; }
  .contact { padding-block: 80px; }
  .contact h2 { font-size: 48px; }
  .footer-main { grid-template-columns: 1fr; gap: 22px; }
  .footer-main p, .footer-main > a:last-child { grid-column: auto; grid-row: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
