:root {
  --navy-950: #071522;
  --navy-900: #0b1f33;
  --navy-800: #12314d;
  --navy-700: #1d4567;
  --copper: #c99055;
  --copper-dark: #a86f38;
  --ivory: #f6f1e8;
  --paper: #fffdfa;
  --ink: #172434;
  --muted: #607080;
  --line: #dfe4e7;
  --white: #fff;
  --green: #148a55;
  --shadow: 0 22px 60px rgba(7, 21, 34, .16);
  --radius: 20px;
  --shell: min(1160px, calc(100% - 40px));
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  padding-bottom: 88px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
p { margin: 0 0 1rem; }
h1, h2, h3 {
  margin: 0;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
}
h1 { max-width: 780px; font-size: clamp(2.8rem, 5.2vw, 5.5rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.25rem, 4vw, 4.2rem); letter-spacing: -.035em; }
h3 { font-size: 1.45rem; }

.shell { width: var(--shell); margin-inline: auto; }
.narrow { max-width: 800px; }
.center { text-align: center; }
.section { padding: 110px 0; }
.section-light { background: var(--ivory); }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 253, 250, .98);
  border-bottom: 1px solid rgba(11, 31, 51, .1);
}
.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand img { width: 330px; max-height: 68px; }
.header-contact { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.35; }
.header-contact span { color: var(--muted); font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.header-contact a { color: var(--navy-900); font-size: 1.25rem; font-weight: 800; text-decoration: none; }

.hero {
  position: relative;
  min-height: 920px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 12%, rgba(201,144,85,.17), transparent 30%),
    linear-gradient(135deg, var(--navy-950), #102b43);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,21,34,.35), transparent 65%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
  gap: 62px;
  align-items: center;
  padding-block: 78px;
}
.eyebrow {
  margin: 0 0 18px;
  color: #efc89d;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--copper-dark); }
.hero h1 { color: var(--white); }
.hero-lead {
  max-width: 760px;
  margin: 26px 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(1.12rem, 1.8vw, 1.42rem);
  line-height: 1.55;
}
.deadline {
  max-width: 720px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 26px 0 30px;
  padding: 15px 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  backdrop-filter: blur(5px);
}
.deadline p { margin: 0; color: rgba(255,255,255,.82); font-size: .95rem; line-height: 1.5; }
.deadline strong { color: var(--white); }
.deadline-icon {
  flex: 0 0 27px;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--copper);
  border-radius: 50%;
  font-weight: 900;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-side { display: grid; gap: 22px; }
.team-photo-mobile { display: none; }
.team-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: transparent;
}
.team-photo img {
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
  opacity: .96;
  -webkit-mask-image: radial-gradient(ellipse 92% 92% at 58% 48%, #000 62%, rgba(0,0,0,.92) 72%, transparent 100%);
  mask-image: radial-gradient(ellipse 92% 92% at 58% 48%, #000 62%, rgba(0,0,0,.92) 72%, transparent 100%);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 850;
  letter-spacing: .025em;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--copper-dark); }
.button-primary:hover { background: #925c2e; }
.button-ghost { color: var(--white); background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.45); }
.button-ghost:hover { background: rgba(255,255,255,.14); }
.button-copper { color: var(--navy-950); background: #e2ad74; }
.button-outline-light { color: var(--white); border-color: rgba(255,255,255,.5); }

.lead-card {
  padding: 35px;
  color: var(--ink);
  background: rgba(255,253,250,.98);
  border-top: 5px solid var(--copper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.lead-card h2 { font-size: 2rem; }
.lead-card > p:not(.card-kicker) { margin: 9px 0 22px; color: var(--muted); font-size: .96rem; }
.card-kicker {
  margin: 0 0 7px;
  color: var(--copper-dark);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.preview-form { display: grid; gap: 9px; }
.preview-form label { color: var(--navy-900); font-size: .83rem; font-weight: 800; }
.preview-form input:not([type="checkbox"]), .preview-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cfd6db;
  border-radius: 7px;
  font: inherit;
  font-size: .95rem;
}
.preview-form input:focus, .preview-form textarea:focus {
  outline: 3px solid rgba(201,144,85,.22);
  border-color: var(--copper-dark);
}
.preview-form textarea { resize: vertical; }
.preview-form .consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: start;
  margin: 5px 0;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 500;
  line-height: 1.4;
}
.preview-form .consent input { margin-top: 3px; accent-color: var(--navy-900); }
.preview-form .consent a { color: var(--navy-700); }
.preview-form button {
  padding: 15px;
  color: var(--white);
  background: var(--navy-900);
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font: inherit;
  font-size: .85rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.preview-form button:hover { background: var(--navy-700); }
.preview-form small { color: #7d8790; font-size: .68rem; line-height: 1.4; text-align: center; }
.rz-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin: 0 0 18px; padding: 12px 14px; border-radius: 8px; font-size: .84rem; line-height: 1.45; }
.form-status.success { color: #0d5f3a; background: #e8f7ef; border: 1px solid #b9e5cd; }
.form-status.error { color: #7a271f; background: #fff0ee; border: 1px solid #f0c3bd; }

.trust-strip { color: var(--white); background: var(--navy-800); border-top: 1px solid rgba(255,255,255,.09); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid article { padding: 25px 28px; border-right: 1px solid rgba(255,255,255,.12); }
.trust-grid article:last-child { border-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { color: #efc89d; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.trust-grid span { font-family: Georgia, "Times New Roman", serif; font-size: 1.16rem; }

.intro { margin-top: 22px; color: var(--muted); font-size: 1.08rem; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 55px; }
.step-card {
  position: relative;
  min-height: 245px;
  padding: 36px 32px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(11,31,51,.1);
  border-radius: 16px;
}
.step-card > span {
  display: block;
  margin-bottom: 40px;
  color: var(--copper-dark);
  font-size: .8rem;
  font-weight: 850;
  letter-spacing: .12em;
}
.step-card h3 { margin-bottom: 13px; }
.step-card p { color: var(--muted); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.check-list { display: grid; gap: 14px; margin: 30px 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 34px; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy-800);
  border-radius: 50%;
  font-size: .73rem;
  font-weight: 900;
}
.text-link { color: var(--navy-700); font-weight: 850; text-decoration-color: var(--copper); text-underline-offset: 5px; }
.text-link span { color: var(--copper-dark); }
.image-frame { position: relative; margin: 0; }
.image-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 20px -20px -20px 20px;
  background: var(--ivory);
  border-radius: var(--radius);
}
.image-frame img { aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.image-frame figcaption { margin-top: 15px; color: var(--muted); font-size: .78rem; }

.section-navy { color: rgba(255,255,255,.82); background: var(--navy-950); }
.section-navy h2 { color: var(--white); }
.section-navy .intro { color: rgba(255,255,255,.66); }
.process-split { align-items: start; }
.process-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.process-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 0 0 28px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.process-list li + li { padding-top: 28px; }
.process-list li > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--copper);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-weight: 700;
}
.process-list strong { color: var(--white); font-family: Georgia, serif; font-size: 1.25rem; }
.process-list p { margin: 6px 0 0; color: rgba(255,255,255,.62); }

.price-section { padding: 72px 0; background: var(--paper); }
.price-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  padding: 50px 54px;
  background: var(--ivory);
  border-left: 5px solid var(--copper);
  border-radius: 14px;
}
.price-card h2 { font-size: clamp(2rem, 3.2vw, 3.2rem); }
.price-card p:last-child { max-width: 760px; margin: 17px 0 0; color: var(--muted); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 55px; }
.service-grid article {
  min-height: 255px;
  padding: 31px;
  background: var(--white);
  border: 1px solid rgba(11,31,51,.1);
  border-radius: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-grid article:hover { transform: translateY(-4px); box-shadow: 0 15px 40px rgba(7,21,34,.08); }
.service-number { display: block; margin-bottom: 38px; color: var(--copper-dark); font-size: .76rem; font-weight: 850; letter-spacing: .12em; }
.service-grid h3 { margin-bottom: 12px; }
.service-grid p { color: var(--muted); font-size: .96rem; }

.other-services { padding-block: 90px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 12px; }
.tag-list span { padding: 12px 16px; color: var(--navy-800); background: var(--ivory); border: 1px solid #e5ded4; border-radius: 999px; font-size: .9rem; font-weight: 750; }

.faq-section { background: #f3f5f5; }
.faq-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; align-items: start; }
.accordion { border-top: 1px solid #ccd3d7; }
.accordion details { border-bottom: 1px solid #ccd3d7; }
.accordion summary {
  position: relative;
  padding: 24px 46px 24px 0;
  color: var(--navy-900);
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 1.18rem;
  font-weight: 700;
  list-style: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 19px;
  color: var(--copper-dark);
  font-family: ui-sans-serif, sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
}
.accordion details[open] summary::after { content: "−"; }
.accordion details p { padding: 0 42px 22px 0; color: var(--muted); }

.final-cta { padding: 80px 0; color: var(--white); background: linear-gradient(115deg, var(--navy-900), var(--navy-700)); }
.final-grid { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.final-cta h2 { max-width: 780px; color: var(--white); font-size: clamp(2.2rem, 4vw, 4.25rem); }
.final-cta p:not(.eyebrow) { margin: 18px 0 0; color: rgba(255,255,255,.72); }
.final-actions { display: grid; gap: 12px; min-width: 230px; }

.site-footer { padding: 70px 0 38px; color: rgba(255,255,255,.65); background: #06111c; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr .8fr; gap: 45px; }
.footer-grid img { width: 260px; margin-bottom: 16px; opacity: 1; }
.footer-grid p { max-width: 360px; }
.footer-grid strong { display: block; margin-bottom: 12px; color: var(--white); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid a, .footer-grid address { display: block; margin: 7px 0; color: rgba(255,255,255,.68); font-style: normal; text-decoration: none; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .73rem;
}
.footer-bottom span:last-child { max-width: 620px; text-align: right; }

.floating-contact {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: max(14px, env(safe-area-inset-bottom));
  width: min(560px, calc(100% - 24px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
  transform: translateX(-50%);
}
.floating-contact a {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: var(--white);
  font-size: .93rem;
  font-weight: 850;
  line-height: 1.15;
  text-decoration: none;
}
.floating-contact svg { width: 23px; height: 23px; fill: currentColor; }
.floating-contact small { display: block; margin-bottom: 3px; font-size: .62rem; font-weight: 600; letter-spacing: .03em; opacity: .75; }
.float-call { background: var(--navy-800); }
.float-whatsapp { background: var(--green); }
.float-call:hover { background: var(--navy-700); }
.float-whatsapp:hover { background: #0f7648; }

.legal-main { min-height: 100vh; background: var(--paper); }
.legal-hero { padding: 58px 0 72px; color: var(--white); background: linear-gradient(120deg, var(--navy-950), var(--navy-700)); }
.legal-hero-inner { max-width: 980px; }
.legal-brand { display: inline-block; margin-bottom: 62px; padding: 14px 18px; background: var(--paper); border-radius: 10px; }
.legal-brand img { width: 290px; }
.legal-hero h1 { max-width: 900px; color: var(--white); font-size: clamp(2.65rem, 5vw, 5rem); }
.legal-hero p:last-child { max-width: 760px; margin: 24px 0 0; color: rgba(255,255,255,.74); font-size: 1.08rem; }
.legal-layout { display: grid; grid-template-columns: 220px minmax(0, 780px); gap: 88px; align-items: start; padding-block: 84px 120px; }
.legal-index { position: sticky; top: 24px; display: grid; gap: 10px; padding: 22px; background: var(--ivory); border: 1px solid #e5ded4; border-radius: 12px; }
.legal-index strong { margin-bottom: 6px; color: var(--navy-900); font-family: Georgia, serif; font-size: 1.1rem; }
.legal-index a { color: var(--navy-700); font-size: .9rem; font-weight: 750; text-decoration: none; }
.legal-index a:hover { color: var(--copper-dark); }
.legal-content section { scroll-margin-top: 30px; }
.legal-content section + section { margin-top: 88px; padding-top: 76px; border-top: 1px solid var(--line); }
.legal-content h2 { margin-bottom: 34px; font-size: clamp(2.35rem, 4vw, 3.8rem); }
.legal-content h3 { margin: 34px 0 12px; font-family: Inter, ui-sans-serif, sans-serif; font-size: 1.02rem; letter-spacing: .015em; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content a { color: var(--navy-700); text-underline-offset: 3px; }
.legal-data { display: grid; gap: 10px; margin: 0; padding: 22px 24px; list-style: none; background: var(--ivory); border-left: 4px solid var(--copper); border-radius: 8px; }
.legal-data strong { color: var(--navy-900); }
.legal-updated { margin-top: 70px; padding-top: 24px; border-top: 1px solid var(--line); font-size: .82rem; }
.legal-footer { padding-top: 20px; }
.legal-footer .footer-bottom { margin-top: 0; }
.legal-footer a { color: rgba(255,255,255,.72); text-decoration: none; }
.legal-footer a:hover { color: var(--white); }
.legal-cookie-button {
  margin: 6px 0 22px;
  padding: 12px 18px;
  border: 1px solid var(--navy-700);
  border-radius: 8px;
  color: var(--navy-900);
  background: transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.legal-cookie-button:hover { background: var(--ivory); }

.cookie-consent,
.cookie-preferences {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: rgba(3, 12, 21, .58);
  backdrop-filter: blur(3px);
}
.cookie-card,
.cookie-preferences-card {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 28px;
  border: 1px solid rgba(201, 144, 85, .32);
  border-radius: 16px;
  color: var(--navy-900);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .3);
}
.cookie-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
}
.cookie-card h2,
.cookie-preferences-card h2 {
  margin: 3px 0 10px;
  color: var(--navy-900);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}
.cookie-card p,
.cookie-preferences-card p { margin: 0; color: var(--muted); }
.cookie-card a { display: inline-block; margin-top: 10px; color: var(--navy-700); font-weight: 700; }
.cookie-kicker {
  color: var(--copper-dark) !important;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.cookie-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(112px, 1fr));
  gap: 9px;
}
.cookie-choice,
.cookie-configure {
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.cookie-choice {
  border: 1px solid var(--navy-900);
  color: var(--white);
  background: var(--navy-900);
}
.cookie-choice:hover { background: var(--navy-700); }
.cookie-configure {
  border: 1px solid var(--navy-900);
  color: var(--navy-900);
  background: var(--white);
}
.cookie-configure:hover { background: var(--ivory); }
.cookie-preferences { align-items: center; }
.cookie-preferences-card { max-width: 680px; }
.cookie-option {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.cookie-option p { margin-top: 4px; font-size: .9rem; }
.cookie-option span {
  flex: 0 0 auto;
  color: var(--copper-dark);
  font-size: .78rem;
  font-weight: 800;
}
.cookie-option input { width: 22px; height: 22px; accent-color: var(--navy-700); }
.cookie-preferences-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}
.cookie-settings-trigger {
  position: fixed;
  z-index: 150;
  bottom: 15px;
  left: 15px;
  min-height: 38px;
  padding: 7px 13px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 7px;
  color: var(--white);
  background: var(--navy-900);
  font: inherit;
  font-size: .74rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.cookie-settings-trigger:hover { background: var(--navy-700); }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .hero-copy { max-width: 760px; }
  .hero-side { max-width: 650px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid article:nth-child(2) { border-right: 0; }
  .trust-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .split, .faq-layout { gap: 52px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .price-card, .final-grid { grid-template-columns: 1fr; }
  .price-card { gap: 28px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr; }
  .legal-layout { grid-template-columns: 190px minmax(0, 1fr); gap: 48px; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 30px, 600px); }
  body { padding-bottom: 70px; font-size: 16px; }
  .section { padding: 76px 0; }
  .header-inner { min-height: 72px; }
  .brand img { width: 235px; }
  .header-contact span { display: none; }
  .header-contact a { font-size: .95rem; }
  .hero { min-height: auto; }
  .hero-overlay { background: linear-gradient(90deg, rgba(7,21,34,.98), rgba(7,21,34,.84)); }
  .hero-grid { padding-block: 60px; }
  .team-photo-mobile { display: block; }
  .hero-side > .team-photo { display: none; }
  h1 { font-size: clamp(2.5rem, 12vw, 4rem); }
  h2 { font-size: clamp(2rem, 9.5vw, 3rem); }
  .hero-actions { display: grid; }
  .lead-card { padding: 28px 22px; }
  .trust-grid, .steps, .split, .service-grid, .faq-layout, .footer-grid { grid-template-columns: 1fr; }
  .trust-grid article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .trust-grid article:last-child { border-bottom: 0; }
  .steps { gap: 15px; margin-top: 38px; }
  .step-card { min-height: 0; }
  .split, .faq-layout { gap: 42px; }
  .review-section .image-frame { order: -1; }
  .image-frame::before { inset: 12px -8px -12px 12px; }
  .price-card { padding: 34px 25px; }
  .service-grid { gap: 15px; margin-top: 38px; }
  .service-grid article { min-height: 0; }
  .final-actions { min-width: 0; width: 100%; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom span:last-child { text-align: left; }
  .floating-contact { width: 100%; bottom: 0; border: 0; border-radius: 0; }
  .floating-contact a { min-height: 64px; padding-bottom: env(safe-area-inset-bottom); }
  .legal-hero { padding: 38px 0 54px; }
  .legal-brand { margin-bottom: 42px; }
  .legal-layout { grid-template-columns: 1fr; gap: 38px; padding-block: 58px 86px; }
  .legal-index { position: static; }
  .cookie-card { grid-template-columns: 1fr; align-items: stretch; }
  .cookie-actions { grid-template-columns: 1fr; }
  .cookie-consent, .cookie-preferences { padding: 14px; }
  .cookie-card, .cookie-preferences-card { max-height: calc(100vh - 28px); overflow-y: auto; padding: 22px; }
  .cookie-option { align-items: flex-start; }
  .cookie-preferences-actions { flex-direction: column; }
  .cookie-settings-trigger { bottom: 78px; }
}

@media (max-width: 430px) {
  .header-contact { display: none; }
  .brand img { width: 250px; }
  .deadline { padding: 13px; }
  .floating-contact small { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
