@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&display=swap');




:root {
  --ink: #15130f;
  --ink-soft: #423e36;
  --paper: #faf7f2;
  --paper-dim: #f0ece3;
  --paper-alt: #ffffff;
  --accent: #ff5a1f;
  --accent-dark: #d6461a;
  --accent-soft: #ffe4d6;
  --teal: #1f4d47;
  --teal-light: #2c6a62;
  --gold: #d9a441;
  --border: rgba(21, 19, 15, 0.1);
  --border-strong: rgba(21, 19, 15, 0.18);

  --shadow-sm: 0 2px 8px rgba(21, 19, 15, .06), 0 1px 2px rgba(21, 19, 15, .08);
  --shadow-md: 0 12px 32px rgba(21, 19, 15, .10), 0 4px 12px rgba(21, 19, 15, .08);
  --shadow-lg: 0 24px 64px rgba(21, 19, 15, .16), 0 8px 24px rgba(21, 19, 15, .10);
  --shadow-accent: 0 16px 40px rgba(255, 90, 31, .28);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --font-head: 'Rubik', sans-serif;
  --font-body: 'Rubik', sans-serif;

  --section-pad: clamp(3.5rem, 6vw, 7rem);
}




* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.container--narrow { max-width: 780px; }
.container--legal { max-width: 820px; }

.container--split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.container--split.container--reverse .split__media { order: -1; }

.section { padding: var(--section-pad) 0; }
.section--dark { background: var(--ink); color: var(--paper); }
.section--wide { padding: calc(var(--section-pad) * 1.3) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.eyebrow--dark { color: var(--accent-dark); }
.eyebrow--light { color: var(--gold); }

.section__title {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 1.25rem;
}
.section__title--light { color: var(--paper); }
.section__lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 3rem;
}
.section__lead--light { color: rgba(250, 247, 242, .78); }

.accent-highlight {
  position: relative;
  display: inline-block;
  color: var(--ink);
  background: linear-gradient(100deg, var(--accent) 0%, var(--gold) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}




.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .98rem;
  border: 2px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
  min-height: 44px;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 20px 44px rgba(255,90,31,.34); }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn--outline:hover { border-color: var(--ink); transform: translateY(-2px); background: var(--paper-dim); }
.btn--ghost {
  background: transparent;
  color: var(--ink-soft);
  text-decoration: underline;
  padding: .5rem;
}
.btn--ghost:hover { color: var(--ink); }
.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.7);
}
.btn--outline-white:hover { background: rgba(255,255,255,.14); border-color: #fff; transform: translateY(-2px); }
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1.05rem; }
.btn--block { width: 100%; }




.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.nav--solid {
  background: rgba(250, 247, 242, .92);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: .9rem clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  margin-right: auto;
}
.nav__logo-img { width: 34px; height: 34px; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}
.nav__link {
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: .3rem 0;
  transition: color .25s ease;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .25s ease;
}
.nav__link:hover, .nav__link--active { color: var(--ink); }
.nav__link:hover::after, .nav__link--active::after { width: 100%; }
.nav__cta { margin-left: .5rem; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  margin: 0 auto;
}
.nav__hamburger--active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger--active span:nth-child(2) { opacity: 0; }
.nav__hamburger--active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }




.tabbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  display: none;
  background: var(--paper-alt);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 30px rgba(21,19,15,.12);
  padding: .4rem .3rem calc(.4rem + env(safe-area-inset-bottom));
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.tabbar--open { transform: translateY(0); }
.tabbar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  padding: .5rem .2rem;
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  font-size: .68rem;
  font-weight: 500;
  transition: color .25s ease, background .25s ease;
  min-height: 44px;
}
.tabbar__item i { font-size: 1.1rem; }
.tabbar__item--active, .tabbar__item:hover { color: var(--accent-dark); background: var(--accent-soft); }




.hero { padding: clamp(3rem, 8vw, 6rem) 0 clamp(3.5rem, 8vw, 6rem); }
.hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}
.hero__content {
  animation: heroFadeUp .9s cubic-bezier(.2,.8,.2,1) both;
}
.hero__visual {
  animation: heroFadeUp 1.1s .15s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__title {
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  margin-bottom: 1.4rem;
}
.hero__text {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.hero__note {
  font-size: .88rem;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: .5rem;
}
.hero__note i { color: var(--teal); }

.hero-atropos { width: 100%; max-width: 460px; margin: 0 auto; }
.hero-atropos .atropos-inner { position: relative; border-radius: var(--radius-lg); overflow: visible; }
.hero-atropos__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-atropos__badge {
  position: absolute;
  display: flex; align-items: center; gap: .6rem;
  background: var(--paper-alt);
  padding: .7rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink-soft);
  max-width: 200px;
}
.hero-atropos__badge i { color: var(--accent); font-size: 1.1rem; }
.hero-atropos__badge--rate { top: -6%; left: -14%; }
.hero-atropos__badge--rate div { display: flex; flex-direction: column; line-height: 1.2; }
.hero-atropos__badge--rate strong { color: var(--ink); font-size: 1rem; }
.hero-atropos__badge--tool { bottom: 14%; right: -16%; }
.hero-atropos__badge--insurance { bottom: -6%; left: 4%; }
.hero-atropos__badge--insurance i { color: var(--teal); }




.split__text p { margin-bottom: 1.1rem; color: var(--ink-soft); }
.split__text .btn { margin-top: .5rem; }
.split__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.split__media figcaption {
  margin-top: .8rem;
  font-size: .85rem;
  color: var(--ink-soft);
}




.cascade {
  display: grid;
  gap: 1.6rem;
  margin-top: 1rem;
}
.cascade__card {
  position: relative;
  background: rgba(250,247,242,.05);
  border: 1px solid rgba(250,247,242,.12);
  border-radius: var(--radius-lg);
  padding: 2rem 2.1rem;
  backdrop-filter: blur(6px);
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}
.cascade__card:hover {
  background: rgba(250,247,242,.09);
  box-shadow: var(--shadow-lg);
}
.cascade__num {
  position: absolute;
  top: 1.4rem; right: 1.8rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2rem;
  color: rgba(250,247,242,.16);
}
.cascade__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow-accent);
}
.cascade__card h3 { color: var(--paper); font-size: 1.2rem; margin-bottom: .6rem; }
.cascade__card p { color: rgba(250,247,242,.72); font-size: .95rem; }

@media (min-width: 860px) {
  .cascade { grid-template-columns: repeat(2, 1fr); }
  .cascade__card:nth-child(odd) { margin-top: 0; }
  .cascade__card:nth-child(even) { margin-top: 2.6rem; }
  .cascade__card:nth-child(5) { grid-column: 1 / -1; max-width: 620px; margin: 2.6rem auto 0; }
}




.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  margin-top: 1rem;
}
.process--compact { grid-template-columns: repeat(3, 1fr); }
.process__step { position: relative; padding-top: 1rem; }
.process__marker {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 1.3rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}
.process__step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 23px; left: 46px;
  width: calc(100% - 26px);
  height: 2px;
  background: var(--border-strong);
}
.process__icon { color: var(--accent); font-size: 1.4rem; margin-bottom: .8rem; display: block; }
.process__content h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.process__content p { color: var(--ink-soft); font-size: .92rem; }




.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.value-card {
  background: var(--paper-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.value-card__icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-sm);
  background: var(--teal);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
}
.value-card h3 { font-size: 1.05rem; margin-bottom: .6rem; }
.value-card p { color: var(--ink-soft); font-size: .92rem; }




.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin-top: 1rem;
}
.compare__col {
  background: rgba(250,247,242,.06);
  border: 1px solid rgba(250,247,242,.14);
  border-radius: var(--radius-md);
  padding: 1.8rem;
}
.compare__col h3 { color: var(--paper); font-size: 1.05rem; margin-bottom: 1rem; display: flex; gap: .6rem; align-items: center; }
.compare__col h3 i { color: var(--gold); }
.compare__col--muted h3 i { color: var(--accent); }
.compare__col p { color: rgba(250,247,242,.72); font-size: .93rem; margin-bottom: .8rem; }




.section--cta { padding: calc(var(--section-pad) * .85) 0; }
.cta-block {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: var(--radius-lg);
}
.cta-block__img { border-radius: var(--radius-md); aspect-ratio: 4/3; object-fit: cover; }
.cta-block__text h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: .8rem; }
.cta-block__text p { color: rgba(250,247,242,.75); margin-bottom: 1.6rem; }
.cta-block--simple {
  grid-template-columns: 1fr;
  text-align: center;
  gap: 1rem;
}
.cta-block--simple p { max-width: 480px; margin: 0 auto 1rem; }




.page-hero { padding: clamp(3rem, 7vw, 5rem) 0 clamp(2rem, 5vw, 3rem); }
.page-hero__title {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  margin-bottom: 1rem;
  max-width: 760px;
}
.page-hero__title--legal { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-top: .3rem; }
.page-hero__text { color: var(--ink-soft); max-width: 640px; font-size: 1.05rem; }




.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0 1.8rem;
  font-size: .93rem;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.info-table th, .info-table td {
  padding: .85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.info-table th { background: var(--paper-dim); font-weight: 600; width: 32%; }
.info-table thead th { background: var(--ink); color: var(--paper); width: auto; }
.info-table tbody tr:last-child th, .info-table tbody tr:last-child td { border-bottom: none; }

.legal-page h2 { font-size: 1.35rem; margin: 2.2rem 0 .8rem; }
.legal-page p { color: var(--ink-soft); margin-bottom: .9rem; }
.legal-page code {
  background: var(--paper-dim);
  padding: .1rem .4rem;
  border-radius: 4px;
  font-size: .88em;
}
.def-list { margin: 1rem 0 1.8rem; }
.def-list dt { font-weight: 700; margin-top: 1rem; font-family: var(--font-head); }
.def-list dd { color: var(--ink-soft); margin-left: 0; }




.contact-form-wrap { background: var(--paper-alt); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); }
.wizard-indicator { display: flex; gap: .6rem; margin: 1rem 0 1.6rem; }
.wizard-indicator__dot {
  width: 34px; height: 6px;
  border-radius: var(--radius-pill);
  background: var(--border-strong);
  transition: background .3s ease;
}
.wizard-indicator__dot--active { background: var(--accent); }
.wizard__step { display: none; animation: stepSlide .4s ease; }
.wizard__step--active { display: block; }
@keyframes stepSlide {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}
.wizard__step h3 { font-size: 1.1rem; margin-bottom: 1.2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: .4rem; }
.form-group input[type="text"], .form-group input[type="email"], .form-group input[type="tel"], .form-group select, .form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--paper);
  transition: border-color .25s ease, box-shadow .25s ease;
  min-height: 44px;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-group--checkbox label {
  display: flex; align-items: flex-start; gap: .6rem;
  font-weight: 400; font-size: .88rem; color: var(--ink-soft);
}
.form-group--checkbox input { margin-top: .2rem; width: 18px; height: 18px; }
.wizard__actions { display: flex; justify-content: space-between; align-items: center; margin-top: 1.6rem; }

.contact-side { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-side img { aspect-ratio: 16/10; }
.contact-card {
  background: var(--paper-dim);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
}
.contact-card h3 { font-size: 1rem; margin-bottom: .6rem; display: flex; align-items: center; gap: .5rem; }
.contact-card h3 i { color: var(--accent); }
.contact-card p { font-size: .92rem; color: var(--ink-soft); margin-bottom: .3rem; }

.section--map { padding-top: 0; }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }




.thanks-hero {
  min-height: calc(100vh - 74px);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  display: flex;
  align-items: center;
}
.thanks-hero__inner { text-align: center; max-width: 640px; }
.thanks-hero__icon {
  width: 74px; height: 74px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 2rem;
}
.thanks-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1.2rem; }
.thanks-hero p { font-size: 1.1rem; margin-bottom: 2.2rem; opacity: .95; }
.footer--on-accent { background: var(--ink); }




.cookie-consent {
  position: fixed;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 300;
  width: min(360px, calc(100vw - 2.4rem));
  background: var(--paper-alt);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  animation: cookieIn .5s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes cookieIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-consent__body { padding: 1.4rem 1.5rem; }
.cookie-consent__title { font-weight: 700; font-size: .98rem; margin-bottom: .5rem; display: flex; align-items: center; gap: .5rem; }
.cookie-consent__title i { color: var(--accent); }
.cookie-consent__text { font-size: .85rem; color: var(--ink-soft); margin-bottom: 1rem; line-height: 1.55; }
.cookie-consent__categories { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1rem; padding: .9rem; background: var(--paper-dim); border-radius: var(--radius-sm); }
.cookie-consent__cat { display: flex; align-items: flex-start; gap: .5rem; font-size: .82rem; font-weight: 600; }
.cookie-consent__cat span { display: block; font-weight: 400; color: var(--ink-soft); font-size: .78rem; margin-top: .1rem; }
.cookie-consent__cat input { margin-top: .2rem; width: 16px; height: 16px; }
.cookie-consent__actions { display: flex; flex-direction: column; gap: .6rem; }
.cookie-consent__link { display: block; margin-top: .9rem; font-size: .78rem; text-decoration: underline; color: var(--ink-soft); text-align: center; }




.footer { background: var(--ink); color: var(--paper); padding-top: clamp(3rem, 6vw, 4.5rem); margin-top: auto; }
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem) 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer__logo { width: 36px; height: 36px; margin-bottom: 1rem; }
.footer__brand p { color: rgba(250,247,242,.7); font-size: .92rem; max-width: 280px; }
.footer__col h3 { font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; color: var(--gold); margin-bottom: 1rem; }
.footer__col a, .footer__col p { display: block; color: rgba(250,247,242,.78); font-size: .9rem; margin-bottom: .7rem; transition: color .25s ease; }
.footer__col a:hover { color: #fff; }
.footer__col i { margin-right: .4rem; color: var(--accent); }
.footer__bottom { border-top: 1px solid rgba(250,247,242,.12); padding: 1.3rem clamp(1.25rem, 4vw, 2.5rem); text-align: center; font-size: .82rem; color: rgba(250,247,242,.6); }

body { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1; }




@media (max-width: 1024px) {
  .container--split { grid-template-columns: 1fr; }
  .container--split.container--reverse .split__media { order: 0; }
  .process, .process--compact, .values { grid-template-columns: repeat(2, 1fr); }
  .process__step:not(:last-child)::after { display: none; }
  .cta-block { grid-template-columns: 1fr; text-align: center; }
  .cta-block__img { max-width: 320px; margin: 0 auto; }
  .compare { grid-template-columns: 1fr; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 420px; margin: 0 auto; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .tabbar { display: flex; }
  body { padding-bottom: 78px; }
  .values, .process, .process--compact { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero-atropos__badge { position: static; margin-top: .8rem; max-width: 100%; }
  .hero-atropos__badge--rate, .hero-atropos__badge--tool, .hero-atropos__badge--insurance { position: static; }
  .hero-atropos .atropos-inner { display: flex; flex-direction: column; }
}

@media (max-width: 500px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .wizard__actions { flex-wrap: wrap; gap: .8rem; }
}