*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: 16px; line-height: 1.6; color: #1c1c1c; background: #fff; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
:root {
  --orange: #FF8D60;
  --orange-dk: #E6774F;
  --orange-lt: #FFF1EB;
  --dark: #1B3868;
  --mid: #4a4a4a;
  --light: #F7F7F7;
  --border: #E8E8E8;
  --green: #FF8D60;
  --navy: #1B3868;
  --radius: 8px;
  --max: 1160px;
}
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: .95rem; padding: 13px 26px; border-radius: var(--radius); cursor: pointer; border: none; transition: background .18s, transform .15s; line-height: 1; }
.btn:hover { transform: translateY(-1px); }
.btn-orange { background: var(--orange); color: #fff; box-shadow: 0 2px 14px rgba(255,141,96,.28); }
.btn-orange:hover { background: var(--orange-dk); }
.btn-outline { background: transparent; color: var(--orange); border: 2px solid var(--orange); }
.btn-outline:hover { background: var(--orange-lt); }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.08); }
.btn-lg { font-size: 1.05rem; padding: 16px 34px; }

/* ── NAV ── */
.nav { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--border); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 28px; max-width: var(--max); margin: 0 auto; gap: 24px; }
.nav__logo { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; text-decoration: none; }
.nav__logo__text { font-size: 1.25rem; font-weight: 800; letter-spacing: -.02em; }
.nav__logo__text strong { color: #1B3868; font-weight: 800; }
.nav__logo__text span { color: #FF8D60; }
.nav__links { display: none; list-style: none; gap: 28px; }
@media(min-width:860px){ .nav__links { display: flex; } }
.nav__links a { font-size: .9rem; font-weight: 500; color: var(--mid); transition: color .15s; }
.nav__links a:hover { color: var(--orange); }
.nav__links > li { position: relative; }
.nav__links > li.has-mega > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav__links > li.has-mega > a::after {
  content: '';
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform .2s ease;
  opacity: .9;
}
.nav__links > li.has-mega.is-open > a::after {
  transform: rotate(-135deg) translateY(-1px);
}
.nav__right { display: flex; align-items: center; gap: 12px; }
.nav__phone { font-size: .88rem; font-weight: 600; color: var(--mid); display: none; }
@media(min-width:700px){ .nav__phone { display: block; } }
/* Hide desktop CTA on mobile — drawer has its own */
.nav__right .btn { display: none; }
@media(min-width:860px){ .nav__right .btn { display: inline-flex; } }

/* ── MEGA MENU ── */
.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100vw - 34px));
  background: #fff;
  border: 1px solid #E7E9EF;
  border-top: 0;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 24px 48px rgba(20,34,66,.16);
  z-index: 140;
  padding: 18px;
}
.mega-menu.is-open { display: block; }
.mega-menu--deuren { left: auto; right: 28px; transform: none; }
.mega-menu__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 16px;
}
.mega-menu__panel {
  border: 1px solid #E8ECF3;
  border-radius: 12px;
  padding: 14px;
}
.mega-menu__title {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
  color: #6F7783;
  margin-bottom: 10px;
}
.mega-menu__list {
  list-style: none;
  display: grid;
  gap: 8px;
}
.mega-menu__list a {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #EDF1F7;
  border-radius: 10px;
  padding: 10px 12px;
  color: #2F3A48;
  font-size: .95rem;
  font-weight: 600;
}
.mega-menu__list a img {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  object-fit: contain;
  background: #fff;
  border: 1px solid #E9EDF4;
  flex-shrink: 0;
}
.mega-menu__list a strong {
  flex: 1;
  min-width: 0;
  font-weight: 700;
}
.mega-menu__list a span {
  color: #7B8594;
  font-size: 1.1rem;
  line-height: 1;
}
.mega-menu__list a:hover {
  border-color: #FFC7B2;
  color: var(--orange);
  background: #FFF9F5;
}
.mega-menu__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mega-menu__card {
  position: relative;
  min-height: 164px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E8ECF3;
}
.mega-menu__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mega-menu__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,20,40,.02) 40%, rgba(10,20,40,.55));
}
.mega-menu__card span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
}
@media(max-width:859px) {
  .mega-menu { display: none !important; }
}

/* ── HAMBURGER TOGGLE ── */
.nav__toggle { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: none; border: none; cursor: pointer; padding: 6px; border-radius: 6px; transition: background .15s; flex-shrink: 0; }
.nav__toggle:hover { background: var(--orange-lt); }
.nav__toggle span { display: block; width: 22px; height: 2px; border-radius: 2px; background: var(--dark); transition: transform .25s, opacity .2s; }
@media(min-width:860px){ .nav__toggle { display: none; } }

/* ── DRAWER OVERLAY ── */
.nav__overlay { position: fixed; inset: 0; background: rgba(0,0,0,.45); opacity: 0; pointer-events: none; transition: opacity .25s; z-index: 200; }
body.nav-open .nav__overlay { opacity: 1; pointer-events: auto; }
body.nav-open { overflow: hidden; }

/* ── DRAWER ── */
.nav__drawer { position: fixed; top: 0; right: 0; height: 100%; width: 280px; background: #fff; z-index: 201; display: flex; flex-direction: column; transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1); box-shadow: -4px 0 24px rgba(0,0,0,.14); }
body.nav-open .nav__drawer { transform: translateX(0); }
.nav__drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--border); }
.nav__drawer__close { background: none; border: none; cursor: pointer; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 6px; font-size: 1.4rem; color: var(--mid); transition: background .15s; }
.nav__drawer__close:hover { background: var(--orange-lt); color: var(--dark); }
.nav__drawer__links { list-style: none; padding: 20px 0; flex: 1; overflow-y: auto; }
.nav__drawer__links li a { display: block; padding: 13px 24px; font-size: 1rem; font-weight: 500; color: var(--dark); border-left: 3px solid transparent; transition: background .15s, border-color .15s; }
.nav__drawer__links li a:hover,
.nav__drawer__links li a[aria-current="page"] { background: var(--orange-lt); color: var(--orange); border-left-color: var(--orange); }
.nav__drawer__cta { padding: 20px 24px; border-top: 1px solid var(--border); }
.nav__drawer__cta .btn { width: 100%; justify-content: center; }

/* ── BREADCRUMB ── */
.breadcrumb { padding: 12px 0; background: #fff; border-bottom: 1px solid var(--border); }
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 6px;
  font-size: .8rem;
  color: var(--mid);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  align-items: center;
}
.breadcrumb__list li { flex: 0 0 auto; }
.breadcrumb__list li + li::before { content: '/'; color: #ccc; margin-right: 6px; }
.breadcrumb__list a { color: var(--orange); }
.breadcrumb__list a:hover { text-decoration: underline; }
@media (max-width: 860px) {
  .breadcrumb__list {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .breadcrumb__list::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }
}

/* ── DECORATIVE SHAPES ── */
.hero,
.section { position: relative; overflow: hidden; }
.hero > .wrap,
.section > .wrap { position: relative; z-index: 1; }

/* ── HERO ── */
.hero { padding: 72px 0 80px; background: var(--light); }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url('svgexport-34.svg'), url('svgexport-33.svg');
  background-repeat: no-repeat, no-repeat;
  background-position: top center, bottom center;
  background-size: 100% auto, 100% auto;
  opacity: .8;
}
.hero__inner { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media(min-width:860px){ .hero__inner { grid-template-columns: 1fr 460px; } }
.hero__eyebrow { display: inline-block; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--orange); margin-bottom: 16px; }
.hero__title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.12; letter-spacing: -.02em; color: var(--dark); margin-bottom: 20px; }
.hero__title span { color: var(--orange); }
.hero-phrase {
  display: inline-block;
  white-space: nowrap;
}
.hero-rotator {
  display: inline-block;
  position: relative;
  min-width: 18.5ch;
  height: 1.15em;
  overflow: hidden;
  vertical-align: baseline;
  margin: 0;
  color: var(--orange);
}
.hero-rotator__track {
  display: flex;
  flex-direction: column;
  animation: heroRotateTrack 7.2s ease-in-out infinite;
}
.hero-rotator__word {
  display: block;
  line-height: 1.15;
  font-weight: 800;
  color: var(--orange);
  white-space: nowrap;
  will-change: transform;
}
@keyframes heroRotateTrack {
  0%, 45% { transform: translateY(0); }
  50%, 95% { transform: translateY(-1.15em); }
  100% { transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-rotator { height: auto; overflow: visible; }
  .hero-rotator__track { animation: none !important; transform: none !important; }
  .hero-rotator__word:not(:first-child) { display: none; }
}
.hero__sub { font-size: 1.05rem; color: var(--mid); max-width: 480px; margin-bottom: 32px; }
.hero__bullets { list-style: none; display: grid; gap: 10px; margin-bottom: 36px; }
.hero__bullets li { display: flex; align-items: center; gap: 10px; font-size: .95rem; font-weight: 500; }
.hero__bullets li::before { content: ''; width: 20px; height: 20px; flex-shrink: 0; border-radius: 50%; background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M6 10l3 3 5-5' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/cover; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__rating { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--mid); font-weight: 500; margin-top: 20px; }
.hero__stars { color: #F59E0B; }
.hero__visual { display: flex; justify-content: center; align-items: center; }
.hero__video-wrap { position: relative; padding-top: 57.14%; width: 100%; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 48px rgba(0,0,0,.22); }
.hero__video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.hero__img { width: 100%; border-radius: 12px; box-shadow: none; }
.hero__svg { width: 100%; max-width: 420px; height: auto; filter: drop-shadow(0 20px 40px rgba(0,0,0,.15)); }

/* ── TYPE NAV ── */
.type-nav { padding: 26px 0 8px; background: #fff; }
.type-nav__inner {
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 22px;
  background: linear-gradient(180deg, #fff 0%, #FFF8F4 100%);
}
.type-nav__title { font-size: 1.22rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.type-nav__sub { color: var(--mid); font-size: .95rem; margin-bottom: 14px; }
.type-nav__grid { display: grid; grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 10px; }
.type-nav__item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  position: relative;
  border: 1px solid #E7E9EF;
  border-radius: 10px;
  padding: 12px 14px;
  background: #fff;
  color: #5B6470;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.type-nav__thumb {
  width: 100%;
  height: 92px;
  border-radius: 8px;
  object-fit: contain;
  border: 1px solid #EEF0F4;
  background: #fff;
  flex-shrink: 0;
  padding: 8px;
}
.type-nav__label {
  flex: 0;
  min-width: 0;
  padding-right: 20px;
}
.type-nav__item::after {
  content: '\203A';
  color: var(--orange);
  font-size: 1.05rem;
  position: absolute;
  right: 14px;
  bottom: 12px;
}
.type-nav__item:hover {
  transform: translateY(-1px);
  border-color: #FFC7B2;
  color: var(--dark);
  box-shadow: 0 10px 20px rgba(255,141,96,.14);
}
@media(min-width:860px) {
  .type-nav__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .type-nav__thumb { height: 104px; }
}

/* ── TRUST BAR ── */
.trust-bar { display: none; }
.trust-bar__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 36px; align-items: center; }
.trust-bar__item { display: flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 500; color: #bbb; }

/* ── SECTIONS ── */
.section { padding: 80px 0; background: #fff; }
.section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url('svgexport-39.svg') top center / 100% auto no-repeat;
  opacity: .58;
}
.section--light { background: var(--light); }
.section--light::before {
  background-image: url('svgexport-42.svg');
  opacity: .78;
}
.section__label { display: block; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--orange); margin-bottom: 12px; }
h2.section__title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; line-height: 1.18; letter-spacing: -.02em; margin-bottom: 14px; }
.section__sub { font-size: 1rem; color: var(--mid); max-width: 580px; }
.section__head { margin-bottom: 48px; }
.section__head--center { text-align: center; }
.section__head--center .section__sub { margin: 0 auto; }

@media(max-width:859px){
  .hero::before {
    background-size: 220% auto, 220% auto;
    opacity: .7;
  }
  .section::before {
    background-size: 220% auto;
    opacity: .5;
  }
}

/* ── GLOBAL STICKY PRICE BAR ── */
body.has-sticky-price-bar { padding-bottom: 84px; }

.sticky-price-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  background: rgba(255,255,255,.97);
  border-top: 1px solid #E5E7EB;
  backdrop-filter: saturate(140%) blur(3px);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.sticky-price-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
body.nav-open .sticky-price-bar {
  opacity: 0 !important;
  pointer-events: none !important;
}
.sticky-price-bar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.sticky-price-bar__text {
  color: #6B7280;
  font-size: .9rem;
  font-weight: 500;
}
.sticky-price-bar__text strong { color: #1F2937; }
.sticky-price-bar__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -.01em;
  box-shadow: 0 8px 22px rgba(255,141,96,.28);
  text-decoration: none;
}
.sticky-price-bar__btn:hover { background: var(--orange-dk); }

@media (max-width: 860px) {
  body.has-sticky-price-bar {
    padding-bottom: 0;
  }
  .sticky-price-bar {
    top: 72px;
    bottom: auto;
    border-top: 0;
    border-bottom: 1px solid #E5E7EB;
    transform: translateY(-10px);
  }
  .sticky-price-bar__inner {
    padding: 8px 12px;
  }
  .sticky-price-bar__text { display: none; }
  .sticky-price-bar__btn {
    width: 100%;
    justify-content: center;
    border-radius: 12px;
    min-height: 46px;
  }
}
/* ── FEATURE CARDS ── */
.features__grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media(min-width:600px){ .features__grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:900px){ .features__grid { grid-template-columns: repeat(3, 1fr); } }
.feat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; }
.feat-card__icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.feat-card__title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.feat-card__text { font-size: .88rem; color: var(--mid); line-height: 1.65; }

/* ── CATEGORY CARDS ── */
.cats__grid { display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr); }
@media(min-width:700px){ .cats__grid { grid-template-columns: repeat(4, 1fr); } }
.cat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s, transform .2s; display: flex; flex-direction: column; }
.cat-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.1); transform: translateY(-3px); }
.cat-card__img { aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; background: var(--light); padding: 28px; }
.cat-card__img svg { width: 100%; max-width: 110px; height: auto; }
.cat-card__img img { width: 100%; height: 100%; object-fit: contain; }
.cat-card__body { padding: 18px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.cat-card__title { font-size: .98rem; font-weight: 700; margin-bottom: 6px; }
.cat-card__sub { font-size: .83rem; color: var(--mid); flex: 1; margin-bottom: 14px; line-height: 1.55; }
.cat-card__link { font-size: .85rem; font-weight: 700; color: var(--orange); display: inline-flex; align-items: center; }
.cat-card__link::after { content: ' →'; }
.cat-card__link:hover { text-decoration: underline; }

/* ── WHY ── */
.why__inner { display: grid; gap: 48px; align-items: start; }
@media(min-width:900px){ .why__inner { grid-template-columns: 1fr 1fr; } }
.why__list { list-style: none; display: grid; gap: 28px; }
.why__item { display: flex; gap: 18px; }
.why__icon { width: 48px; height: 48px; flex-shrink: 0; border-radius: var(--radius); background: var(--orange-lt); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.why__item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.why__item p { font-size: .88rem; color: var(--mid); }
.why__visual { background: var(--light); border-radius: 12px; padding: 28px; display: flex; flex-direction: column; gap: 10px; }
.why__visual-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #999; margin-bottom: 4px; }
.price-row { display: flex; justify-content: space-between; align-items: center; background: #fff; padding: 14px 16px; border-radius: var(--radius); border: 1px solid var(--border); font-size: .9rem; gap: 8px; }
.price-row__label { font-weight: 600; }
.price-row__val { font-weight: 800; color: var(--orange); white-space: nowrap; }
.price-row__badge { font-size: .72rem; font-weight: 600; color: var(--green); background: #FFE7DE; padding: 2px 8px; border-radius: 20px; white-space: nowrap; }

/* ── STEPS ── */
.steps__grid { display: grid; gap: 12px; }
@media(min-width:700px){ .steps__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.step { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; }
.step__num { font-size: 3.5rem; font-weight: 900; line-height: 1; color: var(--border); margin-bottom: 16px; user-select: none; }
.step h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: .88rem; color: var(--mid); }

/* ── REVIEWS ── */
.reviews__stats { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 36px; padding: 24px 28px; background: var(--orange-lt); border-radius: var(--radius); align-items: center; justify-content: space-between; }
.reviews__score { font-size: 3rem; font-weight: 900; color: var(--dark); line-height: 1; }
.reviews__score-meta .stars { color: #F59E0B; font-size: 1.15rem; }
.reviews__score-meta p { font-size: .82rem; color: var(--mid); margin-top: 3px; }
.reviews__numbers { display: flex; gap: 28px; flex-wrap: wrap; }
.reviews__stat { text-align: center; }
.reviews__stat strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--dark); }
.reviews__stat span { font-size: .8rem; color: var(--mid); }
.reviews__grid { display: grid; gap: 16px; }
@media(min-width:700px){ .reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1000px){ .reviews__grid { grid-template-columns: repeat(3, 1fr); } }
.rev-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.rev-card__stars { color: #F59E0B; margin-bottom: 10px; }
.rev-card__text { font-size: .9rem; color: #333; font-style: italic; margin-bottom: 16px; line-height: 1.65; }
.rev-card__foot { display: flex; gap: 12px; align-items: center; }
.rev-card__av { width: 36px; height: 36px; border-radius: 50%; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 800; flex-shrink: 0; }
.rev-card__name { font-weight: 700; font-size: .88rem; }
.rev-card__loc { font-size: .78rem; color: var(--mid); }
.rev-card__type { font-size: .75rem; color: var(--orange); font-weight: 600; margin-top: 1px; }

/* ── CONTENT + PRICE TABLE ── */
.content__grid { display: grid; gap: 48px; }
@media(min-width:900px){ .content__grid { grid-template-columns: 1fr 360px; } }
.content__body h3 { font-size: 1.08rem; font-weight: 700; margin: 24px 0 8px; }
.content__body h3:first-child { margin-top: 0; }
.content__body p { font-size: .93rem; color: var(--mid); margin-bottom: 12px; }
.content__body ul { padding-left: 20px; margin-bottom: 12px; }
.content__body li { font-size: .93rem; color: var(--mid); margin-bottom: 6px; }
.price-table { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: #fff; }
.price-table__head { background: var(--dark); color: #fff; padding: 16px 20px; font-size: .95rem; font-weight: 700; }
.price-table table { width: 100%; border-collapse: collapse; }
.price-table td { padding: 12px 18px; font-size: .88rem; border-bottom: 1px solid var(--border); vertical-align: top; background: #fff; }
.price-table tr:last-child td { border-bottom: none; }
.price-table td:last-child {
  font-weight: 700;
  text-align: right;
  white-space: normal;
  overflow-wrap: anywhere;
}

@media(max-width:999px) {
  .price-table td:last-child { text-align: left; }
}

/* ── FAQ ── */
.faq { max-width: 720px; margin: 0 auto; }
details.faq-item { border-bottom: 1px solid var(--border); }
details.faq-item:first-child { border-top: 1px solid var(--border); }
summary.faq-q { padding: 20px 0; font-weight: 600; font-size: .97rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; user-select: none; }
summary.faq-q::-webkit-details-marker { display: none; }
.faq-icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--orange); font-weight: 400; transition: background .15s; line-height: 1; }
details.faq-item[open] .faq-icon { background: var(--orange-lt); border-color: var(--orange); }
details.faq-item:not([open]) .faq-icon::after { content: '+'; }
details.faq-item[open] .faq-icon::after { content: '\2212'; }
.faq-a { padding: 0 24px 20px 0; font-size: .91rem; color: var(--mid); line-height: 1.75; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--dark); color: #fff; padding: 64px 0; }
.cta-banner__inner { display: flex; flex-direction: column; gap: 32px; align-items: flex-start; }
@media(min-width:860px){ .cta-banner__inner { flex-direction: row; align-items: center; justify-content: space-between; } }
.cta-banner h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 800; line-height: 1.2; max-width: 540px; }
.cta-banner h2 span { color: var(--orange); }
.cta-banner p { font-size: .95rem; color: #aaa; margin-top: 10px; max-width: 480px; }
.cta-banner__btns { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ── FOOTER ── */
footer { background: var(--light); border-top: 1px solid var(--border); padding: 56px 0 32px; }
.footer__top { display: grid; gap: 32px; margin-bottom: 48px; }
@media(min-width:700px){ .footer__top { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer__logo { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.footer__logo__text { font-size: 1.1rem; font-weight: 800; }
.footer__logo__text strong { color: #1B3868; font-weight: 800; }
.footer__logo__text span { color: #FF8D60; }
.footer__desc { font-size: .83rem; color: var(--mid); line-height: 1.7; }
.footer__col h4 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #999; margin-bottom: 14px; }
.footer__col ul { list-style: none; display: grid; gap: 8px; }
.footer__col a { font-size: .85rem; color: var(--mid); transition: color .15s; }
.footer__col a:hover { color: var(--orange); }
.footer__bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; font-size: .78rem; color: #999; }
.footer__bottom a { color: #999; }
.footer__bottom a:hover { color: var(--dark); }

/* ── OFFERT FORM ── */
.offer-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, #fff 0%, #fff 44px, #fafafa 44px, #fafafa 100%),
    #fafafa;
  color: #273142;
}
.offer-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.offer-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.offer-topbar__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 14px 24px;
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  align-items: center;
}
.offer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--mid);
}
.offer-close:hover { background: var(--orange-lt); color: var(--dark); }
.offer-logo {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.offer-logo strong { color: var(--dark); }
.offer-logo span { color: var(--orange); }
.offer-main {
  flex: 1;
  width: 100%;
}
.offer-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 24px 140px;
}
.offer-progress {
  max-width: 450px;
  margin: 0 auto 28px;
}
.offer-progress__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  font-weight: 700;
  color: #4f5b6d;
}
.offer-progress__bar {
  height: 8px;
  border-radius: 999px;
  background: #edf0f4;
  overflow: hidden;
}
.offer-progress__fill {
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, #72be67 0%, #4ea04a 100%);
  transition: width .25s ease;
}
.offer-card {
  max-width: 450px;
  margin: 0 auto;
}
.offer-step {
  display: none;
}
.offer-step.is-active {
  display: block;
}
.offer-title {
  font-size: clamp(1.8rem, 4vw, 2.35rem);
  line-height: 1.1;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}
.offer-intro {
  font-size: 1rem;
  color: #7d8899;
  margin-bottom: 28px;
}
.offer-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.offer-type-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.offer-type-grid--compact .offer-type {
  padding: 14px 10px 12px;
  border-radius: 12px;
}
.offer-type-grid--compact .offer-type img {
  height: 68px;
  margin-bottom: 10px;
}
.offer-type-grid--compact .offer-type--door img {
  height: 84px;
}
.offer-type-grid--compact .offer-type__name {
  font-size: .96rem;
  line-height: 1.25;
}
.offer-type {
  border: 1px solid #d9e0e8;
  background: #fff;
  border-radius: 14px;
  padding: 16px 14px 14px;
  text-align: center;
  cursor: pointer;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.offer-type:hover {
  border-color: #cdd7e2;
  transform: translateY(-1px);
}
.offer-type.is-selected {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,141,96,.14);
}
.offer-type img {
  width: 100%;
  height: 88px;
  object-fit: contain;
  margin-bottom: 12px;
}
.offer-type--door img { height: 108px; }
.offer-type__name {
  font-weight: 700;
  color: #303a48;
}
.offer-field,
.offer-select,
.offer-input {
  width: 100%;
}
.offer-label {
  display: block;
  font-size: .94rem;
  font-weight: 700;
  color: #3a4350;
  margin-bottom: 8px;
}
.offer-select,
.offer-input {
  appearance: none;
  border: 1px solid #d8dee8;
  border-radius: 10px;
  height: 48px;
  padding: 0 14px;
  font: inherit;
  color: #2d3643;
  background: #fff;
}
.offer-select:focus,
.offer-input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,141,96,.12);
}
.offer-select-wrap {
  position: relative;
}
.offer-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #98a1af;
  pointer-events: none;
}
.offer-stack {
  display: grid;
  gap: 18px;
}
.offer-salutation {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.offer-radio {
  border: 1px solid #d8dee8;
  border-radius: 10px;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  font-weight: 600;
  cursor: pointer;
  background: #fff;
}
.offer-radio input {
  width: 16px;
  height: 16px;
  accent-color: var(--orange);
}
.offer-radio:has(input:checked) {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,141,96,.12);
}
.offer-estimate {
  margin-top: 22px;
  background: linear-gradient(180deg, #fff7f2 0%, #fff 100%);
  border: 1px solid #ffd7c9;
  border-radius: 16px;
  padding: 18px;
}
.offer-estimate__eyebrow {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--orange);
  margin-bottom: 8px;
}
.offer-estimate__price {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 8px;
}
.offer-estimate__text,
.offer-estimate__list {
  color: #667184;
  font-size: .93rem;
}
.offer-estimate__list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 14px;
}
.offer-estimate__list li::before {
  content: '•';
  color: var(--orange);
  margin-right: 8px;
}
.offer-actions {
  position: sticky;
  bottom: 0;
  z-index: 15;
  background: rgba(255,255,255,.98);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.offer-actions__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 10px 24px 16px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.offer-btn-prev,
.offer-btn-next {
  height: 46px;
  border-radius: 10px;
  font-weight: 700;
}
.offer-btn-prev {
  min-width: 96px;
  background: #fff;
  color: #505968;
  border: 1px solid #d8dee8;
}
.offer-btn-next {
  min-width: 344px;
  justify-content: center;
}
.offer-btn-next[disabled],
.offer-btn-prev[disabled] {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
}
.offer-error {
  display: none;
  margin-top: 14px;
  color: #d6534a;
  font-size: .9rem;
  font-weight: 600;
}
.offer-error.is-visible { display: block; }
.offer-success {
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 28px;
}
.offer-success__icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #e9f7eb;
  color: #4ea04a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
}
.offer-success p { color: #667184; margin-top: 10px; }
@media(max-width:699px) {
  .offer-wrap { padding: 18px 18px 132px; }
  .offer-title { font-size: 1.95rem; }
  .offer-type-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .offer-type img { height: 72px; }
  .offer-type--door img { height: 92px; }
  .offer-step[data-step="0"] .offer-title { font-size: 1.55rem; margin-bottom: 8px; }
  .offer-step[data-step="0"] .offer-intro { font-size: .95rem; margin-bottom: 14px; }
  .offer-type-grid--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .offer-type-grid--compact .offer-type { padding: 10px 8px; }
  .offer-type-grid--compact .offer-type img { height: 52px; margin-bottom: 7px; }
  .offer-type-grid--compact .offer-type--door img { height: 64px; }
  .offer-type-grid--compact .offer-type__name { font-size: .86rem; }
  .offer-actions__inner { justify-content: stretch; }
  .offer-btn-next { min-width: 0; flex: 1; }
}

/* ── SOCIAL PROOF TOAST ── */
.proof-toast {
  position: fixed;
  left: 20px;
  bottom: 92px;
  z-index: 170;
  width: min(360px, calc(100vw - 32px));
  display: block;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(230,230,230,.95);
  box-shadow: 0 18px 50px rgba(15, 23, 42, .14);
  backdrop-filter: blur(10px);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease;
}
.proof-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.proof-toast__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--orange);
  margin-bottom: 5px;
}
.proof-toast__eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #52b85f;
  box-shadow: 0 0 0 6px rgba(82,184,95,.12);
}
.proof-toast__title {
  font-size: .96rem;
  line-height: 1.35;
  color: #243042;
}
.proof-toast__title strong {
  font-weight: 800;
}
.proof-toast__meta {
  margin-top: 6px;
  font-size: .82rem;
  color: #7b8797;
}
@media(max-width:699px) {
  .proof-toast {
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 170;
    width: auto;
    padding: 12px;
    border-radius: 16px;
  }
}

