/* ============ TOKENS ============ */
:root {
  --tiffany: #0abab5;
  --tiffany-d: #089b97;
  --tiffany-l: #81d8d0;
  --tiffany-xl: #d9f3f1;
  --tiffany-bg: #f1faf9;
  --ink: #0f2724;
  --ink-soft: #46605c;
  --line: #e4ecea;
  --white: #ffffff;
  --bad: #c1554a;
  --bad-bg: #fbf0ef;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 16px 40px -18px rgba(10, 80, 76, 0.28);
  --shadow-sm: 0 8px 24px -14px rgba(10, 80, 76, 0.3);
  --container: 1140px;
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-title: 'Lora', Georgia, 'Times New Roman', serif;
}

/* ============ BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-title);
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: var(--ink);
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
:focus-visible { outline: 3px solid var(--tiffany); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; }
.center { text-align: center; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; font-family: var(--font); font-weight: 600; font-size: .98rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
  min-height: 44px;
}
.btn--primary { background: var(--tiffany); color: #fff; box-shadow: 0 8px 20px -8px rgba(10,186,181,.6); }
.btn--primary:hover { background: var(--tiffany-d); transform: translateY(-2px); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--tiffany); color: var(--tiffany-d); transform: translateY(-2px); }
.btn--lg { padding: 1rem 1.8rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s;
}
.nav.scrolled { border-color: var(--line); box-shadow: 0 4px 20px -16px rgba(0,0,0,.3); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; min-height: 56px; padding: .55rem 0; gap: 1rem; }
.nav__logo { font-family: var(--font-title); font-weight: 700; font-size: 1.4rem; letter-spacing: -.01em; }
.nav__logo span { color: var(--tiffany); }
.nav__links { display: flex; gap: 2rem; }
.nav__links a { font-weight: 500; font-size: .96rem; color: var(--ink-soft); transition: color .2s; }
.nav__links a:hover { color: var(--tiffany-d); }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__burger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .25s; }

/* ============ HERO ============ */
.hero { padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 5vw, 4.5rem); overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3.5rem; align-items: center; }
.eyebrow {
  display: inline-block; font-family: var(--font); font-weight: 700; font-size: .82rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--tiffany-d); margin-bottom: 1rem;
  background: var(--tiffany-xl); padding: .35rem .85rem; border-radius: 999px;
}
.eyebrow--center { display: inline-block; }
.hero__text h1 { margin-bottom: 1.3rem; }
.hl { color: var(--tiffany); font-style: italic; }
.hero__sub { font-size: 1.12rem; max-width: 30em; margin-bottom: 2rem; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__visual {
  position: relative; display: flex; justify-content: center; align-items: center;
  min-height: 360px;
  isolation: isolate;
}
.orb {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 115%; max-width: 480px; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--tiffany-l), var(--tiffany-xl) 55%, transparent 72%);
  filter: blur(6px); opacity: .8; z-index: 0; pointer-events: none;
}
.hero__card {
  position: relative; z-index: 2; width: 100%; max-width: 360px;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  border: 1px solid var(--line); overflow: hidden;
}
.browserbar { display: flex; gap: 7px; padding: 13px 16px; background: var(--tiffany-bg); border-bottom: 1px solid var(--line); }
.browserbar span { width: 11px; height: 11px; border-radius: 50%; background: var(--tiffany-l); }
.browserbar span:first-child { background: var(--tiffany); }
.browserbody { padding: 26px 24px 30px; display: flex; flex-direction: column; gap: 14px; }
.sk { height: 14px; border-radius: 7px; background: linear-gradient(90deg, var(--tiffany-xl), #eef7f6); }
.sk--lg { height: 26px; width: 75%; background: var(--tiffany-l); }
.sk--md { width: 100%; }
.sk--sm { width: 60%; }
.sk-btn { margin-top: 8px; align-self: flex-start; background: var(--tiffany); color: #fff; font-weight: 600; font-size: .85rem; padding: .6rem 1.1rem; border-radius: 999px; }
.hero__chip {
  position: absolute; z-index: 3; background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); border-radius: 999px; padding: .6rem 1rem;
  font-weight: 600; font-size: .9rem; white-space: nowrap;
}
.hero__chip--1 { top: 12%; right: -2%; }
.hero__chip--2 { bottom: 12%; left: -4%; }

/* ============ TRUSTBAR ============ */
.trustbar { background: var(--ink); color: #fff; }
.trustbar__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem; padding: 1.1rem 24px; }
.trustbar span { font-weight: 600; font-size: .92rem; color: #d7eae8; }

/* ============ SECTIONS ============ */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--soft { background: var(--tiffany-bg); }
.section__head { max-width: 760px; margin: 0 auto clamp(2.2rem, 4vw, 3.2rem); text-align: center; }
.section__sub { font-size: 1.1rem; margin-top: 1rem; }

/* ============ PROBLÈME ============ */
.prob__body { max-width: 760px; margin: 0 auto; }
.prob__body--narrow { max-width: 720px; }
.prob__body p { font-size: 1.08rem; margin-bottom: 1.1rem; }
.prob__body strong { color: var(--ink); }

.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.compare__col { border-radius: var(--radius); padding: 1.8rem; border: 1px solid var(--line); background: #fff; }
.compare__col--bad { background: var(--bad-bg); border-color: #f0d8d5; }
.compare__col--good { background: #fff; border: 2px solid var(--tiffany-l); box-shadow: var(--shadow-sm); }
.compare__title { font-family: var(--font-title); font-weight: 700; font-size: 1.15rem; margin-bottom: 1.1rem; }
.compare__col--bad .compare__title { color: var(--bad); }
.compare__col--good .compare__title { color: var(--tiffany-d); }
.compare ul { list-style: none; display: flex; flex-direction: column; gap: .85rem; }
.compare li { position: relative; padding-left: 1.8rem; font-size: .98rem; color: var(--ink-soft); }
.compare li::before { position: absolute; left: 0; top: -1px; font-size: 1.05rem; }
.compare__col--bad li::before { content: "✕"; color: var(--bad); font-weight: 700; }
.compare__col--good li::before { content: "✓"; color: var(--tiffany); font-weight: 700; }

/* ============ BENEFITS (cards centered) ============ */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1rem; }
.benefit {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.8rem; transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit__icon {
  font-size: 2rem; width: 60px; height: 60px; display: grid; place-items: center;
  background: var(--tiffany-xl); border-radius: 16px; margin-bottom: 1.1rem;
}
.benefit h3 { margin-bottom: .55rem; }
.benefit p { font-size: .98rem; }

/* ============ SERVICES ============ */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
  position: relative; background: var(--tiffany-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2.2rem 2rem;
  display: flex; flex-direction: column; align-items: flex-start; text-align: left;
  transition: transform .2s, box-shadow .25s, border-color .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--tiffany-l); }
.card--feat {
  background: #fff;
  border: 2px solid var(--tiffany);
  box-shadow: var(--shadow);
}
.card__badge {
  position: absolute; top: -13px; left: 2rem;
  background: var(--tiffany); color: #fff; font-family: var(--font);
  font-size: .76rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: .35rem .8rem; border-radius: 999px;
}
.card__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--tiffany-xl);
  color: var(--tiffany-d);
  border-radius: 14px;
  margin-bottom: 1.5rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card__quote {
  font-style: italic; font-size: .95rem; color: var(--ink-soft);
  margin-bottom: 1.2rem; line-height: 1.5;
}
.card__eyebrow {
  font-family: var(--font); font-size: .78rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--tiffany-d); margin-bottom: .8rem;
}
.card h3 {
  font-family: var(--font-title); font-size: 1.35rem; font-weight: 700;
  margin-bottom: 1rem; line-height: 1.25;
}
.card__desc { font-size: .98rem; margin-bottom: 1.3rem; }
.card__feats {
  list-style: none; display: flex; flex-direction: column;
  gap: .65rem; margin-bottom: 1.8rem;
  font-size: .96rem; color: var(--ink);
}
.card__feats li {
  position: relative; padding-left: 1.6rem;
}
.card__feats li::before {
  content: "→"; position: absolute; left: 0; top: 0;
  color: var(--tiffany-d); font-weight: 700;
}
.card__cta {
  margin-top: auto; align-self: flex-start;
  padding: .75rem 1.4rem;
}
.card--feat .card__cta { align-self: stretch; width: 100%; }
.services__note {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .8rem 2rem; margin-top: 2.5rem;
}
.services__note span { font-weight: 600; font-size: .95rem; color: var(--ink); }

/* ============ EXAMPLES ============ */
.examples { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.example {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .2s, box-shadow .25s, border-color .2s;
  text-align: center;
}
.example:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--tiffany-l); }
.example__frame {
  background: var(--tiffany-bg); padding: 14px 16px 0;
  border-bottom: 1px solid var(--line);
}
.example__bar { display: flex; gap: 6px; padding-bottom: 12px; }
.example__bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--tiffany-l); }
.example__bar span:first-child { background: #ff8c5a; }
.example__bar span:nth-child(2) { background: #ffd166; }
.example__preview {
  background: #fff; border-radius: 10px 10px 0 0;
  padding: 1.6rem 1.2rem 1.4rem; display: flex; flex-direction: column;
  align-items: center; gap: .7rem; min-height: 170px; justify-content: center;
  border: 1px solid var(--line); border-bottom: 0;
}
.example__preview--orange { background: linear-gradient(160deg, #fff4ec 0%, #ffe6d6 100%); }
.example__preview--blue { background: linear-gradient(160deg, #eaf3fb 0%, #d2e6f5 100%); }
.example__preview--green { background: linear-gradient(160deg, #ecf6ec 0%, #d4eadc 100%); }
.example__line {
  height: 12px; border-radius: 6px; background: rgba(15,39,36,.18);
}
.example__line--title { width: 75%; height: 16px; background: rgba(15,39,36,.32); }
.example__line--sub { width: 55%; }
.example__btn {
  margin-top: .4rem; background: var(--ink); color: #fff;
  font-weight: 600; font-size: .8rem; padding: .55rem 1rem; border-radius: 999px;
}
.example__preview--orange .example__btn { background: #d8623a; }
.example__preview--blue .example__btn { background: #2c6fb1; }
.example__preview--green .example__btn { background: #3a8a55; }
.example__info {
  padding: 1.5rem 1.4rem 1.8rem; display: flex; flex-direction: column;
  align-items: center; gap: .5rem;
}
.example__tag {
  font-family: var(--font); font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--tiffany-d); background: var(--tiffany-xl);
  padding: .3rem .7rem; border-radius: 999px;
}
.example__info h3 { font-size: 1.3rem; margin-top: .3rem; }
.example__info p { font-size: .95rem; }
.example__cta {
  margin-top: .8rem; font-weight: 700; color: var(--tiffany-d);
  font-size: .95rem; font-family: var(--font);
}
.example:hover .example__cta { color: var(--tiffany); }
.examples__note {
  margin-top: 2.5rem; text-align: center; font-size: .95rem;
  color: var(--ink-soft); max-width: 720px; margin-left: auto; margin-right: auto;
}

/* ============ PROCESS TIMELINE ============ */
.process { display: flex; align-items: center; justify-content: center; gap: 0; }
.process__step { flex: 1 1 0; display: flex; flex-direction: column; align-items: center; }
.process__step--above { flex-direction: column-reverse; }
.process__tile {
  position: relative; width: 88px; height: 88px; flex-shrink: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); display: grid; place-items: center; color: var(--tiffany);
}
.process__icon { width: 44px; height: 44px; }
.process__num {
  position: absolute; top: -10px; left: -10px; width: 26px; height: 26px;
  display: grid; place-items: center; font-family: var(--font); font-weight: 800; font-size: .85rem; color: #fff;
  background: var(--tiffany); border-radius: 50%; box-shadow: 0 6px 14px -6px rgba(10,186,181,.7);
}
.process__label { text-align: center; max-width: 240px; }
.process__step--below .process__label { margin-top: 1.1rem; }
.process__step--above .process__label { margin-bottom: 1.1rem; }
.process__label h3 { margin-bottom: .45rem; color: var(--ink); }
.process__label p { font-size: .94rem; color: var(--ink-soft); }
.process__connector { flex: 0 0 auto; width: clamp(40px, 6vw, 88px); color: var(--tiffany-l); align-self: center; }
.process__connector svg { width: 100%; height: 24px; display: block; }

/* ============ ABOUT ============ */
.about { display: grid; grid-template-columns: 1fr 1.05fr; gap: 3rem; align-items: center; }
.about__text h2 { margin: .3rem 0 1.3rem; }
.about__text p { font-size: 1.05rem; margin-bottom: 1rem; }
.about__punch { font-size: 1.15rem !important; color: var(--ink) !important; padding-top: .5rem; }
.about__punch strong { color: var(--tiffany-d); }
.about__svg { width: 100%; max-width: 480px; height: auto; display: block; margin: 0 auto; }

/* ============ GUARANTEES (centered) ============ */
.guarantees { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.guarantee {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem 1.6rem;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: .8rem;
  transition: transform .2s, box-shadow .2s;
}
.guarantee:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.guarantee__icon {
  font-size: 1.5rem; width: 56px; height: 56px; display: grid; place-items: center;
  background: var(--tiffany-xl); border-radius: 16px;
}
.guarantee h3 { font-size: 1.1rem; line-height: 1.3; }
.guarantee p { font-size: .96rem; }

/* ============ FAQ ============ */
.faq { display: flex; flex-direction: column; gap: .9rem; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0 1.4rem; transition: border-color .2s, box-shadow .2s; }
.faq__item[open] { border-color: var(--tiffany-l); box-shadow: var(--shadow-sm); }
.faq__item summary {
  list-style: none; cursor: pointer;
  font-family: var(--font-title); font-weight: 600; font-size: 1.08rem; color: var(--ink);
  padding: 1.2rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-family: var(--font); font-size: 1.5rem; font-weight: 400; color: var(--tiffany); transition: transform .25s; flex-shrink: 0; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 0 1.3rem; font-size: 1rem; }
.faq__more { margin-top: 1.8rem; font-weight: 500; }
.faq__more a { color: var(--tiffany-d); font-weight: 700; text-decoration: underline; }

/* ============ CONTACT ============ */
.form { display: flex; flex-direction: column; gap: 1.1rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--shadow); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form label { display: flex; flex-direction: column; gap: .45rem; font-weight: 600; font-size: .92rem; color: var(--ink); }
.form label em { font-weight: 400; color: var(--ink-soft); }
.form input, .form select, .form textarea {
  font-family: var(--font); font-size: 1rem; color: var(--ink);
  padding: .8rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--tiffany-bg); transition: border-color .2s, background .2s; resize: vertical;
  min-height: 44px;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--tiffany); background: #fff; }
.form__status { font-weight: 600; text-align: center; padding: .6rem; border-radius: var(--radius-sm); }
.form__status.ok { background: var(--tiffany-xl); color: var(--tiffany-d); }
.form__status.err { background: var(--bad-bg); color: var(--bad); }
.contact__reassure { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem 1.8rem; margin-top: 1.8rem; }
.contact__reassure span { font-weight: 600; font-size: .93rem; color: var(--ink); }

.contact__direct {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
  margin-top: 1.6rem;
}
.contact__direct-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .85rem 1.5rem; border-radius: 999px; font-weight: 700; font-size: .98rem;
  border: 1.5px solid var(--line); background: #fff;
  transition: transform .15s, box-shadow .2s, border-color .2s, background .2s;
  min-height: 44px;
}
.contact__direct-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.contact__direct-btn--wa { color: #fff; background: #25d366; border-color: #25d366; }
.contact__direct-btn--wa:hover { background: #1ebd5b; border-color: #1ebd5b; }
.contact__direct-btn--mail { color: var(--ink); }
.contact__direct-btn--mail:hover { border-color: var(--tiffany); color: var(--tiffany-d); }

/* ============ FOOTER ============ */
.footer { background: var(--ink); color: #c8ddda; padding: 3.5rem 0 1.5rem; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem; flex-wrap: wrap;
  padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__logo { font-family: var(--font-title); font-size: 1.5rem; font-weight: 700; color: #fff; }
.footer__tag { color: var(--tiffany-l); font-weight: 600; margin: .2rem 0 1rem; }
.footer__inner p { font-size: .95rem; color: #b6cecb; }
.footer__contact p { margin-bottom: .55rem; }
.footer__contact a:hover { color: var(--tiffany-l); }
.footer__nav { display: flex; flex-direction: column; gap: .45rem; }
.footer__nav a { font-size: .95rem; color: #b6cecb; }
.footer__nav a:hover { color: var(--tiffany-l); }
.footer__nav-title {
  font-family: var(--font-title); font-weight: 700; color: #fff !important;
  font-size: 1.02rem !important; margin-bottom: .4rem;
}
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; padding-top: 1.5rem; font-size: .88rem; color: #91aba8; }
.footer__bottom a { text-decoration: underline; }
.footer__bottom a:hover { color: #fff; }

/* ============ FLOAT CTA ============ */
.floatcta {
  position: fixed; bottom: 22px; right: 22px; z-index: 40;
  background: var(--tiffany); color: #fff; font-weight: 700; font-size: .95rem;
  padding: .9rem 1.4rem; border-radius: 999px; box-shadow: 0 14px 30px -10px rgba(10,186,181,.7);
  transition: .35s ease;
}
.floatcta.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.floatcta:hover { background: var(--tiffany-d); }

/* ============ REVEAL ANIM ============ */
.reveal { transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============ MENTIONS LÉGALES ============ */
.legal { padding: clamp(2.5rem, 6vw, 5rem) 0; }
.legal h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1.5rem; }
.legal h2 { font-size: 1.5rem; margin: 2rem 0 .8rem; color: var(--tiffany-d); }
.legal p, .legal li { font-size: 1rem; margin-bottom: .8rem; }
.legal ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal a { color: var(--tiffany-d); text-decoration: underline; }
.legal__back { display: inline-block; margin-top: 2rem; }

/* ============ RESPONSIVE ============ */
@media (max-width: 920px) {
  .hero { padding: 2.5rem 0 3.5rem; }
  .hero__inner { grid-template-columns: 1fr; gap: 2.8rem; }
  .hero__text { text-align: center; }
  .hero__text .eyebrow { margin-left: auto; margin-right: auto; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .hero__visual {
    order: -1;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    min-height: 0;
    padding: 1.2rem 1.4rem 1.6rem;
  }
  .hero__card { max-width: 280px; }
  .orb { width: 100%; max-width: 320px; }
  .hero__chip { font-size: .82rem; padding: .5rem .9rem; }
  .hero__chip--1 { top: 2%; right: 2%; }
  .hero__chip--2 { bottom: 4%; left: 2%; }

  .about { grid-template-columns: 1fr; gap: 2rem; }
  .about__photo { max-width: 420px; margin: 0 auto; }
  .benefits, .services { grid-template-columns: 1fr; }
  .guarantees { grid-template-columns: 1fr; }
  .process { flex-direction: column; gap: 1.2rem; }
  .process__step, .process__step--above { flex-direction: column; width: 100%; }
  .process__step--below .process__label,
  .process__step--above .process__label { margin: 1rem 0 0; max-width: 360px; }
  .process__connector { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .nav__links {
    position: fixed; inset: 64px 0 auto 0; background: #fff; flex-direction: column;
    padding: 1.2rem 24px 1.8rem; gap: 1.2rem; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transition: transform .3s ease; z-index: 49;
    transform: translateY(-120%);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__burger { display: flex; }
  .nav__burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav__burger.open span:nth-child(2) { opacity: 0; }
  .nav__burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}
@media (max-width: 620px) {
  .container { padding: 0 18px; }
  .compare { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .form { padding: 1.4rem; }
  .floatcta { right: 16px; bottom: 16px; padding: .6rem 1.05rem; font-size: .85rem; }
  .trustbar__inner { gap: .5rem 1.5rem; }

  .hero { padding: 2rem 0 3rem; }
  .hero__inner { gap: 2.2rem; }
  .hero__visual {
    max-width: 320px;
    padding: 1rem 1.1rem 1.3rem;
  }
  .hero__card { max-width: 240px; }
  .orb { max-width: 280px; }
  .hero__chip { font-size: .76rem; padding: .42rem .8rem; }
  .hero__chip--1 { top: 1%; right: 1%; }
  .hero__chip--2 { bottom: 2%; left: 1%; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }

  .section { padding: 3rem 0; }
  .section__head { margin-bottom: 2rem; }
  .card { padding: 2rem 1.5rem; }
  .compare__col { padding: 1.4rem; }
  .benefit { padding: 1.8rem 1.4rem; }
  .guarantee { padding: 1.6rem 1.2rem; }
  .footer { padding: 2.5rem 0 1.2rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 1.6rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: .4rem; }
  .nav__inner { min-height: 48px; padding: .4rem 0; }
  .nav__links { inset: 56px 0 auto 0; }
  .nav__logo { font-size: 1.2rem; }
  .contact__direct { flex-direction: column; align-items: stretch; }
  .contact__direct-btn { justify-content: center; }
}
@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .hero { padding: 1.6rem 0 2.5rem; }
  .hero__inner { gap: 1.8rem; }
  .hero__visual { max-width: 280px; padding: .8rem 1rem 1.1rem; }
  .hero__card { max-width: 220px; }
  .orb { max-width: 240px; }
  .hero__chip { font-size: .7rem; padding: .38rem .7rem; }
  h1 { font-size: 1.95rem; }
  .form { padding: 1.1rem; }
  .floatcta { right: 14px; bottom: 14px; font-size: .8rem; padding: .5rem .9rem; }
}
