:root {
  --primary: #244b57;
  --primary-2: #173740;
  --secondary: #5d9ca6;
  --secondary-soft: #d9eff1;
  --sand: #dccdb7;
  --sand-soft: #eee6da;
  --background: #f8f7f3;
  --surface: #ffffff;
  --text: #2f3437;
  --muted: #647174;
  --accent: #c8764e;
  --success: #4f9a78;
  --line: rgba(36, 75, 87, 0.14);
  --shadow-sm: 0 10px 30px rgba(36, 75, 87, 0.08);
  --shadow-md: 0 18px 55px rgba(36, 75, 87, 0.14);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --content: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--background);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 999;
  background: var(--primary);
  color: white;
  padding: .75rem 1rem;
  border-radius: 10px;
}
.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 2rem), var(--content)); margin-inline: auto; }
.section { padding: 6.25rem 0; }
.section-sm { padding: 4rem 0; }
.section-alt { background: var(--surface); }
.section-sand { background: var(--sand-soft); }
.section-dark { background: var(--primary-2); color: white; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 .9rem;
  color: var(--secondary);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.section-dark .eyebrow { color: #a8d9de; }

h1, h2, h3, h4 {
  margin: 0;
  color: var(--primary);
  font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.12;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(2.65rem, 6vw, 5.3rem); max-width: 12ch; }
h2 { font-size: clamp(2rem, 4vw, 3.65rem); max-width: 17ch; }
h3 { font-size: 1.5rem; }
.section-dark h2, .section-dark h3 { color: white; }
p { margin: 0; }
.lead { font-size: clamp(1.06rem, 2vw, 1.25rem); color: var(--muted); max-width: 66ch; }
.section-dark .lead { color: rgba(255,255,255,.76); }

.section-heading { display: grid; gap: 1rem; margin-bottom: 3.25rem; }
.section-heading.center { text-align: center; justify-items: center; }
.section-heading.center h2 { max-width: 21ch; }
.section-heading.center .lead { max-width: 62ch; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 247, 243, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 24px rgba(36,75,87,.05); }
.header-inner { min-height: 84px; display: flex; align-items: center; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; min-width: 250px; text-decoration: none; }
.brand img { width: 250px; height: auto; }
.nav-wrap { display: flex; align-items: center; gap: 1.1rem; margin-left: auto; }
.nav { display: flex; align-items: center; gap: .15rem; }
.nav a { text-decoration: none; padding: .82rem .92rem; border-radius: 12px; font-size: 1rem; font-weight: 800; color: #435155; }
.nav a:hover, .nav a:focus-visible { background: rgba(93,156,166,.11); color: var(--primary); outline: none; }
.lang-switch { display: flex; align-items: center; padding: 4px; border: 1px solid var(--line); border-radius: 999px; background: white; }
.lang-switch button { border: 0; background: transparent; color: var(--muted); padding: .48rem .68rem; border-radius: 999px; cursor: pointer; font-weight: 800; font-size: .82rem; }
.lang-switch button.active { background: var(--primary); color: white; }
.mobile-lang-switch { display: none; }
.mobile-toggle { display: none; margin-left: auto; border: 1px solid var(--line); background: white; width: 46px; height: 46px; border-radius: 12px; cursor: pointer; }
.mobile-toggle span, .mobile-toggle::before, .mobile-toggle::after { content: ""; display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--primary); transition: transform .2s, opacity .2s; }
.mobile-toggle.open span { opacity: 0; }
.mobile-toggle.open::before { transform: translateY(6px) rotate(45deg); }
.mobile-toggle.open::after { transform: translateY(-6px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  min-height: 58px;
  padding: .92rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: white; box-shadow: 0 10px 24px rgba(36,75,87,.2); }
.btn-primary:hover { background: var(--primary-2); box-shadow: 0 14px 28px rgba(36,75,87,.26); }
.btn-secondary { background: white; border-color: var(--line); color: var(--primary); }
.btn-secondary:hover { border-color: var(--secondary); box-shadow: var(--shadow-sm); }
.btn-accent { background: var(--accent); color: white; }
.btn-sm { min-height: 50px; padding: .72rem 1.08rem; font-size: .98rem; }
.btn svg { width: 22px; height: 22px; }

.hero { padding: 4.8rem 0 5.5rem; overflow: hidden; position: relative; }
.hero::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(93,156,166,.16), transparent 70%); left: -220px; top: -170px; pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 4rem; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 span { color: var(--secondary); }
.hero .lead { margin-top: 1.5rem; max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; margin-top: 2.2rem; color: #536165; font-size: 1rem; font-weight: 800; }
.hero-trust span { display: inline-flex; align-items: center; gap: .45rem; }
.hero-trust svg { width: 20px; height: 20px; color: var(--success); }
.hero-visual { position: relative; }
.hero-visual::after { content: ""; position: absolute; inset: 6% -4% -7% 8%; border: 1px solid rgba(36,75,87,.13); border-radius: 44px; transform: rotate(3deg); z-index: -1; }
.hero-visual img { width: 100%; filter: drop-shadow(0 24px 45px rgba(36,75,87,.13)); }

.problem-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 5rem; align-items: start; }
.problem-copy { position: sticky; top: 120px; }
.benefit-list { display: grid; gap: 1rem; }
.benefit {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.15rem;
  padding: 1.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.icon-box { width: 72px; height: 72px; border-radius: 20px; display: grid; place-items: center; background: var(--secondary-soft); color: var(--primary); box-shadow: inset 0 0 0 1px rgba(36,75,87,.06); }
.icon-box svg { width: 36px; height: 36px; }
.benefit p { color: var(--muted); margin-top: .38rem; font-size: 1.02rem; }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.service-card { padding: 2.2rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: grid; gap: 1.2rem; }
.service-card:nth-child(2), .service-card:nth-child(3) { background: #f1f6f5; }
.service-card .icon-box { width: 82px; height: 82px; border-radius: 22px; background: var(--sand-soft); }
.service-card .icon-box svg { width: 42px; height: 42px; }
.service-card h3 { font-size: 1.62rem; }
.service-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: .68rem; color: var(--muted); }
.service-card li { position: relative; padding-left: 1.55rem; font-size: 1.04rem; }
.service-card li::before { content: ""; position: absolute; left: 0; top: .7em; width: 8px; height: 8px; border-radius: 50%; background: var(--secondary); }
.service-label { display: inline-flex; align-items: center; width: fit-content; padding: .35rem .75rem; border-radius: 999px; background: rgba(93,156,166,.12); color: var(--primary); font-size: .82rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.text-link { display: inline-flex; align-items: center; gap: .5rem; width: fit-content; color: var(--primary); text-decoration: none; font-weight: 800; font-size: 1.02rem; }
.text-link:hover { color: var(--accent); }

.smart-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 4rem; align-items: center; }
.smart-panel { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-lg); padding: 2rem; }
.status-row { display: grid; grid-template-columns: auto 1fr auto; gap: .8rem; align-items: center; padding: 1rem; border-radius: 16px; background: rgba(255,255,255,.08); margin-top: .8rem; }
.status-dot { width: 12px; height: 12px; border-radius: 50%; background: #78c79f; box-shadow: 0 0 0 6px rgba(120,199,159,.12); }
.status-dot.warn { background: #e9a67e; box-shadow: 0 0 0 6px rgba(233,166,126,.12); }
.status-row small { color: rgba(255,255,255,.65); }
.status-row strong { font-size: .92rem; }
.smart-flow { display: grid; gap: .8rem; margin-top: 2rem; counter-reset: flow; }
.smart-flow li { list-style: none; display: grid; grid-template-columns: 34px 1fr; align-items: start; gap: .8rem; color: rgba(255,255,255,.78); }
.smart-flow li::before { counter-increment: flow; content: counter(flow); display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--secondary); color: var(--primary-2); font-weight: 900; }

.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.step { position: relative; padding: 1.45rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); min-height: 225px; }
.step-number { font-size: 2.8rem; line-height: 1; color: var(--sand); font-weight: 900; letter-spacing: -.06em; }
.step h3 { margin-top: 1rem; }
.step p { color: var(--muted); margin-top: .55rem; }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.plan { padding: 2rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.plan.featured { border: 2px solid var(--secondary); transform: translateY(-8px); box-shadow: var(--shadow-md); }
.plan-badge { display: inline-flex; align-self: flex-start; padding: .35rem .7rem; border-radius: 999px; background: var(--secondary-soft); color: var(--primary); font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.plan p { color: var(--muted); margin-top: .7rem; }
.plan ul { margin: 1.4rem 0 1.8rem; padding: 0; list-style: none; display: grid; gap: .65rem; }
.plan li { display: flex; gap: .55rem; color: #536165; }
.plan li::before { content: "✓"; color: var(--success); font-weight: 900; }
.plan .btn { margin-top: auto; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-card { background: var(--surface); padding: 2rem; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.about-card h3 { margin-bottom: 1rem; }
.about-list { display: grid; gap: .8rem; }
.about-list span { display: flex; gap: .6rem; align-items: center; font-weight: 750; }
.about-list svg { width: 20px; height: 20px; color: var(--secondary); }
.language-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; margin-top: 1.5rem; }
.language-strip div { text-align: center; padding: .85rem; background: var(--sand-soft); border-radius: 14px; font-weight: 900; color: var(--primary); }

.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.area-map { position: relative; min-height: 360px; background: linear-gradient(145deg, #d9eff1, #f8f7f3); border-radius: var(--radius-lg); border: 1px solid var(--line); overflow: hidden; }
.area-map::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(36,75,87,.18) 1px, transparent 1px); background-size: 22px 22px; opacity: .45; }
.coast-line { position: absolute; left: -5%; right: -5%; bottom: 7%; height: 48%; border-top: 10px solid var(--secondary); border-radius: 50% 50% 0 0; transform: rotate(-5deg); background: rgba(93,156,166,.17); }
.map-pin { position: absolute; transform: translate(-50%, -50%); display: grid; place-items: center; width: 18px; height: 18px; border: 5px solid white; background: var(--accent); border-radius: 50%; box-shadow: 0 5px 15px rgba(36,75,87,.25); }
.map-pin::after { content: attr(data-label); position: absolute; left: 19px; white-space: nowrap; background: white; border: 1px solid var(--line); border-radius: 9px; padding: .35rem .55rem; font-size: .75rem; font-weight: 800; color: var(--primary); }
.area-list { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.5rem; }
.area-list span { padding: .52rem .75rem; background: white; border: 1px solid var(--line); border-radius: 999px; font-weight: 750; color: var(--primary); }

.faq-list { display: grid; gap: .8rem; max-width: 880px; margin: 0 auto; }
details { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 0 1.2rem; }
summary { list-style: none; cursor: pointer; padding: 1.3rem 2.8rem 1.3rem 0; font-weight: 850; font-size: 1.04rem; color: var(--primary); position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: .2rem; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--secondary); }
details[open] summary::after { content: "−"; }
details p { padding: 0 0 1.2rem; color: var(--muted); }

.contact-wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: 3.5rem; align-items: start; }
.contact-copy { position: sticky; top: 120px; }
.contact-copy .lead { margin-top: 1rem; }
.contact-points { display: grid; gap: .8rem; margin-top: 1.5rem; }
.contact-points span { display: flex; align-items: center; gap: .8rem; color: rgba(255,255,255,.84); font-size: 1.02rem; }
.contact-points svg { width: 22px; height: 22px; color: #a8d9de; }
.lead-form { background: white; color: var(--text); border-radius: var(--radius-lg); padding: 2rem; box-shadow: 0 24px 60px rgba(0,0,0,.22); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .42rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .84rem; font-weight: 800; color: var(--primary); }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid rgba(36,75,87,.2); background: #fbfbf9; color: var(--text); border-radius: 14px; padding: .95rem 1rem; min-height: 56px; outline: none;
}
.field textarea { min-height: 148px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--secondary); box-shadow: 0 0 0 4px rgba(93,156,166,.12); }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem; }
.check { display: flex; align-items: flex-start; gap: .48rem; font-size: .86rem; color: #536165; }
.check input { margin-top: .25rem; accent-color: var(--primary); }
.form-note { font-size: .78rem; color: var(--muted); }
.form-note a { color: var(--primary); }
.form-status { margin-top: .8rem; font-weight: 750; min-height: 1.4em; }

.site-footer { background: #102c34; color: rgba(255,255,255,.72); padding: 4rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr; gap: 3rem; }
.footer-brand img { width: 290px; filter: brightness(0) invert(1); opacity: .96; }
.footer-brand p { margin-top: 1rem; max-width: 46ch; }
.footer-col h3 { color: white; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0; }
.footer-col a { display: block; text-decoration: none; color: rgba(255,255,255,.72); padding: .22rem 0; }
.footer-col a:hover { color: white; }
.footer-bottom { margin-top: 3rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 1rem; font-size: .82rem; }

.whatsapp-float { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 80; width: 66px; height: 66px; border-radius: 50%; display: grid; place-items: center; background: #25d366; color: white; box-shadow: 0 14px 30px rgba(0,0,0,.22); text-decoration: none; transition: transform .2s; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float svg { width: 34px; height: 34px; }

.legal-main { padding: 5.5rem 0; }
.legal-wrap { max-width: 850px; margin: 0 auto; background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 3.5rem); box-shadow: var(--shadow-sm); }
.legal-wrap h1 { font-size: clamp(2.1rem, 5vw, 3.7rem); max-width: none; }
.legal-wrap h2 { font-size: 1.45rem; margin-top: 2.2rem; }
.legal-wrap p, .legal-wrap li { color: var(--muted); }
.placeholder { background: #fff4e8; color: #8d4b2d; border: 1px dashed #d89a73; padding: .12rem .35rem; border-radius: 5px; font-weight: 750; }
.notice { padding: 1rem; border-left: 4px solid var(--accent); background: #fff4e8; border-radius: 0 12px 12px 0; color: #6f4a36; margin: 1.5rem 0; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .header-cta { display: none; }
  .hero-grid, .smart-grid, .about-grid, .area-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .steps .step:nth-child(4), .steps .step:nth-child(5) { grid-column: span 1; }
}

@media (max-width: 900px) {
  .site-header { background: var(--background); backdrop-filter: none; }
  .header-inner { min-height: 72px; gap: .65rem; }
  .brand { width: 180px; min-width: 0; flex: 0 1 180px; }
  .brand img { width: 180px; min-width: 0; }
  .mobile-lang-switch { display: flex; margin-left: auto; flex: 0 0 auto; }
  .mobile-lang-switch button { padding: .42rem .54rem; }
  .mobile-toggle { display: block; margin-left: 0; flex: 0 0 46px; position: relative; z-index: 132; }
  .nav-wrap {
    position: fixed;
    z-index: 125;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    height: calc(100vh - 72px);
    height: calc(100dvh - 72px);
    background: var(--background);
    padding: 1rem 1rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
  }
  .nav-wrap.open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .nav { flex-direction: column; align-items: stretch; gap: .35rem; }
  .nav a { padding: 1rem 1rem; font-size: 1.12rem; background: white; border: 1px solid var(--line); }
  .nav-wrap > .lang-switch { display: none; }
  .nav-wrap .header-cta { display: inline-flex; width: 100%; margin-top: .75rem; }
  .hero-grid, .problem-grid, .smart-grid, .about-grid, .area-grid, .contact-wrap { grid-template-columns: 1fr; }
  .hero { padding-top: 3.5rem; }
  .hero-visual { max-width: 690px; margin: 0 auto; }
  .problem-copy, .contact-copy { position: static; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: 1fr; }
  .plan.featured { transform: none; }
  .contact-wrap { gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  body { font-size: 17px; }
  .header-inner { gap: .45rem; }
  .brand { width: 145px; flex-basis: 145px; }
  .brand img { width: 145px; }
  .mobile-lang-switch button { padding: .36rem .44rem; font-size: .76rem; }
  .mobile-toggle { width: 44px; height: 44px; flex-basis: 44px; }
  .icon-box { width: 64px; height: 64px; }
  .icon-box svg { width: 32px; height: 32px; }
  .service-card .icon-box { width: 74px; height: 74px; }
  .service-card .icon-box svg { width: 38px; height: 38px; }

  .container { width: min(calc(100% - 1.2rem), var(--content)); }
  .section { padding: 4.4rem 0; }
  .hero { padding: 2.8rem 0 4rem; }
  h1 { font-size: clamp(2.45rem, 14vw, 4rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; min-height: 60px; }
  .services-grid, .steps, .form-grid, .footer-grid, .check-grid { grid-template-columns: 1fr; }
  .step { min-height: 0; }
  .field.full { grid-column: auto; }
  .language-strip { grid-template-columns: 1fr; }
  .lead-form { padding: 1.2rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { width: 60px; height: 60px; right: .8rem; bottom: .8rem; }
  .whatsapp-float svg { width: 32px; height: 32px; }
}


@media (max-width: 390px) {
  .container { width: min(calc(100% - .8rem), var(--content)); }
  .brand { width: 132px; flex-basis: 132px; }
  .brand img { width: 132px; }
  .mobile-lang-switch { padding: 2px; }
  .mobile-lang-switch button { padding: .32rem .36rem; font-size: .7rem; }
  .mobile-toggle { width: 42px; height: 42px; flex-basis: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* V4: pre-launch legal pages and mobile header */
html.menu-open, html.menu-open body { overflow: hidden; }
.prelaunch-banner { background: #f7eadc; border-bottom: 1px solid #e3c7aa; color: #674530; }
.prelaunch-inner { min-height: 54px; display: flex; align-items: center; justify-content: center; gap: .7rem 1.1rem; flex-wrap: wrap; padding-top: .7rem; padding-bottom: .7rem; text-align: center; }
.prelaunch-inner strong { color: #714325; }
.legal-site-header { position: sticky; }
.legal-header-inner { min-height: 76px; display: flex; align-items: center; gap: 1rem; }
.legal-header-actions { margin-left: auto; display: flex; align-items: center; gap: .75rem; }
.legal-address { font-style: normal; color: var(--muted); line-height: 1.75; margin: 1rem 0; }
.legal-wrap ul { padding-left: 1.2rem; }
.legal-wrap li + li { margin-top: .7rem; }
.legal-wrap a { overflow-wrap: anywhere; }
.legal-updated { margin-top: 2.5rem; font-size: .92rem; }
.legal-footer-bottom { margin-top: 0; }
.optional-consent { background: #f7faf9; }

@media (max-width: 680px) {
  .prelaunch-inner { align-items: flex-start; text-align: left; font-size: .9rem; }
  .legal-main { padding: 1rem 0 2.5rem; }
  .legal-wrap { border-radius: 16px; padding: 1.15rem; }
  .legal-wrap h1 { font-size: clamp(2rem, 10vw, 2.8rem); line-height: 1.06; }
  .legal-wrap h2 { font-size: 1.28rem; line-height: 1.2; margin-top: 1.8rem; }
  .legal-wrap p, .legal-wrap li, .legal-address { font-size: 1rem; line-height: 1.65; }
  .legal-header-inner { min-height: 70px; gap: .45rem; }
  .legal-header-actions { gap: .35rem; }
  .legal-header-actions .lang-switch button { padding: .35rem .42rem; font-size: .72rem; }
  .legal-back { min-height: 42px; padding: .55rem .7rem; font-size: .82rem; }
  .legal-site-header .brand { width: 136px; flex-basis: 136px; }
  .legal-site-header .brand img { width: 136px; }
}

@media (max-width: 390px) {
  .legal-site-header .brand { width: 118px; flex-basis: 118px; }
  .legal-site-header .brand img { width: 118px; }
  .legal-header-actions .lang-switch button { padding: .3rem .32rem; font-size: .67rem; }
  .legal-back { padding: .5rem .55rem; font-size: .76rem; }
}
