/* ============================================================
   TeamPace - main site styles
   Aesthetic: warm editorial paper + jade accent. Bricolage
   Grotesque display, Instrument Sans body. Calm, utilitarian,
   deliberately not the purple-gradient SaaS look.
   ============================================================ */

:root {
  --paper:       #F4F6FB;
  --paper-2:     #FAFBFE;
  --surface:     #FFFFFF;
  --ink:         #101736;
  --ink-soft:    #5A6184;
  --ink-faint:   #9298B5;
  --line:        #E3E6F1;
  --line-soft:   #EDEFF7;
  --accent:      #3478FD;
  --accent-deep: #1B2A6B;
  --accent-br:   #5B8DFF;
  --mint:        #E7EDFD;
  --mint-deep:   #D6DFFB;
  --violet:      #8B6BFD;
  --teal:        #36C9DC;
  --grad:        linear-gradient(100deg, #35C8DD 0%, #3478FD 50%, #8B6BFD 100%);

  --radius:   14px;
  --radius-s: 9px;
  --shadow:   0 1px 2px rgba(16,23,54,.05), 0 12px 28px -14px rgba(16,23,54,.20);
  --shadow-lg:0 2px 6px rgba(16,23,54,.06), 0 30px 60px -24px rgba(16,23,54,.30);

  --display: 'Bricolage Grotesque', Georgia, serif;
  --body:    'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: #fff; }

.wrap { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 28px; }
.wrap--narrow { max-width: 760px; }

/* -- Buttons --------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5em;
  font-family: var(--body); font-weight: 600; font-size: 15px;
  padding: 11px 20px; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .14s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn--lg { font-size: 16px; padding: 14px 26px; }
.btn--block { width: 100%; }
.btn--solid { background: var(--accent); color: #fff; }
.btn--solid:hover { background: var(--accent-deep); transform: translateY(-1px); box-shadow: 0 8px 20px -8px rgba(27,42,107,.5); }
.btn--line { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--line:hover { background: var(--ink); color: var(--paper); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink-soft); padding: 9px 14px; }
.btn--ghost:hover { color: var(--ink); }

/* -- Shared bits ----------------------------------------- */
.eyebrow {
  display: inline-block;
  font-size: 12.5px; font-weight: 600; letter-spacing: .11em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}

/* -- Nav ------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244,246,251,.82);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.is-stuck { border-bottom-color: var(--line); }
.nav__inner { display: flex; align-items: center; gap: 28px; height: 70px; }

.logo { display: flex; align-items: center; gap: 9px; font-family: var(--display); }
.logo__mark { display: inline-flex; color: var(--accent); }
.logo__mark svg rect { fill: currentColor; }
.logo__word { font-size: 21px; font-weight: 700; letter-spacing: -.02em; }
.logo__img { height: 36px; width: auto; }

.nav__links { display: flex; gap: 26px; margin-left: 8px; }
.nav__links a {
  font-size: 15px; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 4px 0;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--accent); transition: right .22s ease;
}
.nav__links a:hover::after { right: 0; }

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

.nav__burger {
  display: none; margin-left: auto;
  background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px; padding: 9px;
}
.nav__burger span {
  display: block; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .22s ease, opacity .18s ease;
}
.nav__burger span + span { margin-top: 5px; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -- Hero ------------------------------------------------ */
.hero {
  position: relative; overflow: hidden;
  padding: 84px 0 96px;
  background:
    radial-gradient(60% 80% at 88% 8%, var(--mint) 0%, transparent 60%),
    radial-gradient(40% 60% at 4% 96%, rgba(139,107,253,.12) 0%, transparent 60%),
    var(--paper);
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 56px; align-items: center;
}
.hero__copy > * { animation: rise .7s cubic-bezier(.2,.7,.2,1) backwards; }
.hero__copy .eyebrow      { animation-delay: .02s; }
.hero__title              { animation-delay: .09s; }
.hero__sub                { animation-delay: .16s; }
.hero__actions            { animation-delay: .23s; }
.hero__note               { animation-delay: .30s; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.hero__title {
  font-family: var(--display);
  font-size: clamp(40px, 5.6vw, 64px);
  line-height: 1.04; letter-spacing: -.025em; font-weight: 700;
}
.hero__title em {
  font-style: normal; color: var(--accent);
  position: relative;
}
.hero__title em::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: .04em;
  height: .16em; background: var(--grad); opacity: .9; border-radius: 2px;
}
.hero__sub {
  margin: 22px 0 30px; font-size: 18.5px; color: var(--ink-soft);
  max-width: 30em;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__note { margin-top: 18px; font-size: 14px; color: var(--ink-faint); }

.hero__visual { position: relative; }
.hero__img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}

/* Pipeline board mockup */
.board {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: rise .8s cubic-bezier(.2,.7,.2,1) .2s backwards;
}
.board__bar {
  display: flex; align-items: center; gap: 6px;
  padding: 13px 16px; border-bottom: 1px solid var(--line-soft);
  background: var(--paper-2);
}
.board__bar .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.board__bar .dot:first-child { background: #5FD3DF; }
.board__bar .dot:nth-child(2){ background: #5B8DFF; }
.board__bar .dot:nth-child(3){ background: #A48BF5; }
.board__title {
  margin-left: auto; font-size: 12.5px; font-weight: 600;
  color: var(--ink-soft); font-family: var(--display);
}
.board__cols {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; padding: 14px;
}
.bcol { background: var(--paper); border-radius: var(--radius-s); padding: 9px; }
.bcol__head {
  font-size: 11.5px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .07em; color: var(--ink-faint);
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 9px; padding: 0 2px;
}
.bcol__head i {
  font-style: normal; background: var(--mint-deep); color: var(--accent-deep);
  font-size: 10.5px; padding: 1px 7px; border-radius: 99px;
}
.deal {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: 8px; padding: 9px; margin-bottom: 7px;
}
.deal:last-child { margin-bottom: 0; }
.deal b { font-size: 12.5px; font-weight: 600; }
.deal em { margin-left: auto; font-style: normal; font-size: 12px; color: var(--ink-soft); font-weight: 600; }
.deal--hot { border-color: var(--mint-deep); box-shadow: 0 4px 12px -6px rgba(52,120,253,.4); }
.deal--won { border-color: var(--mint-deep); background: var(--mint); }
.av {
  width: 22px; height: 22px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-size: 9px; font-weight: 700; color: #fff; letter-spacing: .02em;
}
.av1 { background: #36C9DC; } .av2 { background: #5B8DFF; }
.av3 { background: var(--accent); } .av4 { background: #8B6BFD; }
.av5 { background: #6E5BD8; }

.float {
  position: absolute; background: var(--surface);
  border: 1px solid var(--line); border-radius: 99px;
  padding: 8px 14px; font-size: 12.5px; font-weight: 600;
  box-shadow: var(--shadow); white-space: nowrap;
}
.float--a {
  top: -16px; right: 8%; color: var(--accent-deep);
  animation: bob 4s ease-in-out infinite;
}
.float--b {
  bottom: -16px; left: -10px; color: var(--ink-soft);
  animation: bob 4.6s ease-in-out infinite .8s;
}
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* -- Logos strip ----------------------------------------- */
.logos { padding: 40px 0; border-bottom: 1px solid var(--line); }
.logos__heading {
  text-align: center; font-size: 13px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; color: var(--ink-faint);
  margin-bottom: 22px;
}
.logos__row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 18px 44px; align-items: center;
}
.logos__item img { height: 26px; width: auto; opacity: .6; filter: grayscale(1); }
.logos__word {
  font-family: var(--display); font-size: 20px; font-weight: 600;
  color: var(--ink-faint); letter-spacing: -.01em;
}

/* -- Sections -------------------------------------------- */
.section { padding: 88px 0; }
.section--mint {
  background: linear-gradient(180deg, var(--mint) 0%, var(--paper-2) 100%);
}
.section__head { max-width: 660px; margin: 0 auto 52px; text-align: center; }
.section__title {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.12; letter-spacing: -.022em; font-weight: 700;
}
.section__sub { margin-top: 14px; font-size: 17.5px; color: var(--ink-soft); }

/* -- Features -------------------------------------------- */
.features { display: flex; flex-direction: column; gap: 64px; }
.feature {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 52px; align-items: center;
}
.feature--flip .feature__text  { order: 2; }
.feature--flip .feature__media { order: 1; }
.feature__title {
  font-family: var(--display); font-size: 27px; font-weight: 700;
  letter-spacing: -.02em; line-height: 1.15; margin-bottom: 12px;
}
.feature__body { color: var(--ink-soft); font-size: 17px; }
.feature__media img {
  width: 100%; border-radius: var(--radius);
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.feature__placeholder {
  aspect-ratio: 4 / 3; border-radius: var(--radius);
  background:
    repeating-linear-gradient(135deg, var(--line-soft) 0 1px, transparent 1px 16px),
    var(--mint);
  border: 1px solid var(--mint-deep);
  display: grid; place-items: center;
}
.feature__num {
  font-family: var(--display); font-size: 84px; font-weight: 800;
  color: var(--accent); opacity: .22; letter-spacing: -.04em;
}

/* -- Comparison ------------------------------------------ */
.compare {
  max-width: 760px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.compare__row {
  display: grid; grid-template-columns: 1fr 132px 132px;
  align-items: center; border-bottom: 1px solid var(--line-soft);
}
.compare__row:last-child { border-bottom: 0; }
.compare__label { padding: 16px 20px; font-size: 15.5px; font-weight: 500; }
.compare__col {
  padding: 16px 12px; text-align: center;
  border-left: 1px solid var(--line-soft);
}
.compare__col--us { background: var(--mint); }
.compare__row--head .compare__col,
.compare__row--head .compare__label {
  font-family: var(--display); font-weight: 700; font-size: 15px;
}
.compare__row--head .compare__col--us { color: var(--accent-deep); }
.mark {
  display: inline-grid; place-items: center;
  width: 26px; height: 26px; border-radius: 50%;
  font-size: 13px; font-weight: 700;
}
.mark--yes { background: var(--accent); color: #fff; }
.mark--no  { background: var(--line); color: var(--ink-faint); }

/* -- Testimonials ---------------------------------------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.quote:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.quote__stat { display: flex; align-items: baseline; gap: 8px; }
.quote__statval {
  font-family: var(--display); font-size: 34px; font-weight: 800;
  color: var(--accent); letter-spacing: -.03em; line-height: 1;
}
.quote__statlbl { font-size: 13px; color: var(--ink-soft); font-weight: 500; }
.quote blockquote {
  font-size: 16px; color: var(--ink); line-height: 1.5; flex: 1;
}
.quote__by { display: flex; align-items: center; gap: 11px; }
.quote__av { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; flex: none; }
.quote__av--text {
  display: grid; place-items: center;
  background: var(--accent-deep); color: #fff;
  font-family: var(--display); font-weight: 700; font-size: 16px;
}
.quote__by b { display: block; font-size: 14.5px; font-weight: 600; }
.quote__by em { font-style: normal; font-size: 13px; color: var(--ink-soft); }

/* -- Pricing --------------------------------------------- */
.plans {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; align-items: start;
}
.plan {
  position: relative; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow);
}
.plan--featured {
  border-color: var(--accent); border-width: 2px;
  box-shadow: var(--shadow-lg);
}
.plan__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 11.5px; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; padding: 5px 13px; border-radius: 99px;
}
.plan__name {
  font-family: var(--display); font-size: 19px; font-weight: 700;
  margin-bottom: 8px;
}
.plan__price { display: flex; align-items: baseline; gap: 7px; margin-bottom: 6px; }
.plan__price span {
  font-family: var(--display); font-size: 40px; font-weight: 800;
  letter-spacing: -.03em; line-height: 1;
}
.plan__price em { font-style: normal; font-size: 13.5px; color: var(--ink-soft); }
.plan__desc { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 18px; }
.plan__features { list-style: none; margin-bottom: 22px; }
.plan__features li {
  font-size: 14.5px; padding: 7px 0 7px 26px; position: relative;
  border-top: 1px solid var(--line-soft);
}
.plan__features li:first-child { border-top: 0; }
.plan__features li::before {
  content: '\2713'; position: absolute; left: 0; top: 7px;
  color: var(--accent); font-weight: 700; font-size: 13px;
}

/* -- FAQ ------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; cursor: pointer; list-style: none;
  padding: 22px 4px; font-size: 17.5px; font-weight: 600;
  font-family: var(--display); letter-spacing: -.01em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--mint); color: var(--accent-deep);
  display: grid; place-items: center; font-size: 17px; font-weight: 600;
  transition: transform .2s ease, background .2s ease;
}
.faq__item[open] .faq__icon { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq__answer {
  padding: 0 4px 24px; color: var(--ink-soft); font-size: 16px;
  max-width: 62ch;
}

/* -- CTA / get-started ----------------------------------- */
.cta {
  padding: 88px 0;
  background:
    radial-gradient(50% 90% at 50% 0%, rgba(91,141,255,.22) 0%, transparent 70%),
    var(--accent-deep);
}
.cta__inner { text-align: center; color: var(--paper); }
.cta__title {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700; letter-spacing: -.022em; line-height: 1.1;
}
.cta__sub {
  margin: 16px auto 30px; font-size: 17px; max-width: 34em;
  color: rgba(244,246,251,.78);
}
.leadform {
  background: var(--surface); color: var(--ink);
  border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow-lg); text-align: left;
  display: flex; flex-direction: column; gap: 12px;
}
.leadform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.leadform input, .leadform select, .leadform textarea {
  width: 100%; font-family: var(--body); font-size: 15px;
  padding: 12px 14px; border: 1.5px solid var(--line);
  border-radius: var(--radius-s); background: var(--paper-2); color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
}
.leadform input:focus, .leadform select:focus, .leadform textarea:focus {
  outline: none; border-color: var(--accent); background: var(--surface);
}
.leadform textarea { resize: vertical; }
.leadform__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.leadform__note { text-align: center; font-size: 13px; color: var(--ink-faint); margin-top: 2px; }
.cta__call {
  text-align: center; margin-top: 18px;
  font-size: 15px; color: rgba(244,246,251,.72);
}
.cta__call a {
  color: #fff; font-weight: 600;
  border-bottom: 1.5px solid var(--accent-br); padding-bottom: 1px;
  white-space: nowrap;
}
.cta__call a:hover { border-bottom-color: #fff; }
.cta__thanks {
  background: var(--surface); color: var(--ink);
  border-radius: var(--radius); padding: 34px 26px;
  box-shadow: var(--shadow-lg);
}
.cta__thanks strong { font-family: var(--display); font-size: 21px; display: block; margin-bottom: 6px; }
.cta__thanks p { color: var(--ink-soft); }
.cta__error {
  background: #fbe9e6; color: #9a3526; border: 1px solid #f0c8c0;
  border-radius: var(--radius-s); padding: 11px 15px; font-size: 14.5px;
  margin-bottom: 14px;
}

/* -- Footer ---------------------------------------------- */
.footer { background: var(--ink); color: var(--paper); padding: 60px 0 0; }
.footer__inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px;
}
.footer .logo__word { color: var(--paper); }
.footer .logo__mark { color: var(--accent-br); }
.footer__tagline {
  margin: 14px 0 18px; color: rgba(244,246,251,.6);
  font-size: 15px; max-width: 26em;
}
.footer__social { display: flex; gap: 8px; }
.footer__social a {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid rgba(244,246,251,.18);
  display: grid; place-items: center; font-size: 13px; font-weight: 600;
  color: rgba(244,246,251,.7); transition: all .16s ease;
}
.footer__social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer__col h4 {
  font-family: var(--display); font-size: 14px; font-weight: 700;
  margin-bottom: 14px; color: var(--paper);
}
.footer__col a {
  display: block; padding: 6px 0; font-size: 14.5px;
  color: rgba(244,246,251,.62);
}
.footer__col a:hover { color: var(--paper); }
.footer__legal {
  border-top: 1px solid rgba(244,246,251,.12);
  padding: 22px 0; font-size: 13px; color: rgba(244,246,251,.5);
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px 26px; flex-wrap: wrap;
}
.footer__legal-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__legal-links a { color: rgba(244,246,251,.62); }
.footer__legal-links a:hover { color: var(--paper); }

/* -- Coming soon ----------------------------------------- */
.soon {
  min-height: 100vh; display: grid; place-items: center;
  background:
    radial-gradient(60% 60% at 50% 30%, var(--mint) 0%, transparent 70%),
    var(--paper);
  text-align: center; padding: 40px;
}
.soon__inner .soon__mark { width: 92px; height: auto; margin: 0 auto; display: block; }
.soon__inner h1 {
  font-family: var(--display); font-size: 44px; font-weight: 800;
  letter-spacing: -.03em; margin: 14px 0 8px;
}
.soon__inner p { color: var(--ink-soft); font-size: 17px; max-width: 26em; margin: 0 auto; }
.soon__tag {
  display: inline-block; margin-top: 22px;
  background: var(--accent); color: #fff;
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  padding: 7px 16px; border-radius: 99px;
}

/* -- Custom page / prose --------------------------------- */
.page__title {
  font-family: var(--display); font-size: clamp(32px, 4.5vw, 46px);
  font-weight: 700; letter-spacing: -.025em; margin-bottom: 24px;
}
.prose { font-size: 17px; color: var(--ink); }
.prose h2 {
  font-family: var(--display); font-size: 25px; font-weight: 700;
  letter-spacing: -.02em; margin: 34px 0 12px;
}
.prose h3 {
  font-family: var(--display); font-size: 20px; font-weight: 600;
  margin: 26px 0 10px;
}
.prose p { margin-bottom: 16px; color: var(--ink-soft); }
.prose ul { margin: 0 0 16px 22px; color: var(--ink-soft); }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.prose blockquote {
  border-left: 3px solid var(--accent); padding-left: 18px;
  margin: 18px 0; color: var(--ink-soft); font-style: italic;
}
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 28px 0; }
.prose strong { color: var(--ink); }

/* -- 404 ------------------------------------------------- */
.notfound { text-align: center; padding: 40px 0; }
.notfound__code {
  font-family: var(--display); font-size: 88px; font-weight: 800;
  color: var(--accent); opacity: .3; letter-spacing: -.04em;
}
.notfound__title {
  font-family: var(--display); font-size: 30px; font-weight: 700;
  letter-spacing: -.02em; margin: 6px 0 10px;
}
.notfound__sub { color: var(--ink-soft); margin-bottom: 26px; }

/* -- Responsive ------------------------------------------ */
@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { max-width: 460px; }
  .feature, .feature--flip .feature__text, .feature--flip .feature__media {
    grid-template-columns: 1fr; order: 0;
  }
  .feature { gap: 22px; }
  .quotes, .plans { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .nav__links.is-open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--paper-2); border-bottom: 1px solid var(--line);
    padding: 8px 20px 16px;
  }
  .nav__links.is-open a { padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
  .nav__links.is-open a::after { display: none; }
  .hero { padding: 56px 0 64px; }
  .section { padding: 60px 0; }
  .cta { padding: 60px 0; }
  .section__head { margin-bottom: 38px; }
  .features { gap: 44px; }
  .leadform__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .compare__row { grid-template-columns: 1fr 80px 80px; }
  .float--a { right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto; }
}
