:root{
  --primary:        #0d9488;
  --primary-600:    #0d9488;
  --primary-700:    #0f766e;
  --primary-800:    #115e59;
  --primary-light:  #14b8a6;
  --primary-300:    #5eead4;
  --accent:         #f59e0b;
  --accent-dark:    #d97706;

  --bg:             #ffffff;
  --bg-soft:        #f6f8f9;
  --bg-alt:         #f0fdfa;
  --surface:        #ffffff;
  --text:           #0f1c2b;
  --text-soft:      #475569;
  --text-mute:      #586675;
  --border:         #e5eaee;
  --border-soft:    #eef2f5;

  --wa:             #0b7a5e; 
  --wa-dark:        #075e49;

  --radius:         14px;
  --radius-lg:      20px;
  --radius-sm:      10px;
  --shadow-sm:      0 1px 2px rgba(15,28,43,.06), 0 1px 3px rgba(15,28,43,.05);
  --shadow-md:      0 6px 18px rgba(15,28,43,.08), 0 2px 6px rgba(15,28,43,.05);
  --shadow-lg:      0 18px 40px rgba(13,148,136,.16), 0 6px 14px rgba(15,28,43,.08);
  --container:      1160px;
  --header-h:       68px;
  --ease:           .25s cubic-bezier(.4,0,.2,1);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
@media (prefers-color-scheme: dark){
:root{
    --bg:          #0b1220;
    --bg-soft:     #0f1a2b;
    --bg-alt:      #0d1a22;
    --surface:     #111c2e;
    --text:        #eef4f8;
    --text-soft:   #b3c0cf;
    --text-mute:   #8598ab;
    --border:      #22314a;
    --border-soft: #1a273c;
    --shadow-sm:   0 1px 2px rgba(0,0,0,.4);
    --shadow-md:   0 8px 22px rgba(0,0,0,.45);
    --shadow-lg:   0 22px 46px rgba(0,0,0,.55), 0 6px 16px rgba(0,0,0,.4);
  }
}
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 12px); }
body{
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1, h2, h3{ line-height: 1.15; letter-spacing: -.02em; margin: 0; font-weight: 700; }
p{ margin: 0; }
a{ color: var(--primary-700); text-decoration: none; }
img, svg{ display: block; max-width: 100%; }
.container{ width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 clamp(18px, 4vw, 32px); }
.skip-link{
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--primary-700); color: #fff; padding: 10px 16px; border-radius: 8px;
  transition: top var(--ease);
}
.skip-link:focus{ top: 12px; }
.btn{
  --btn-bg: var(--primary-700); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-weight: 600; font-size: .95rem; line-height: 1;
  padding: 12px 20px; border-radius: 10px; border: 1px solid transparent;
  background: var(--btn-bg); color: var(--btn-fg);
  cursor: pointer; white-space: nowrap; text-decoration: none;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease);
}
.btn:hover{ text-decoration: none; transform: translateY(-2px); }
.btn:active{ transform: translateY(0); }
.btn svg{ flex: none; }
.btn-primary{ background: linear-gradient(135deg, var(--primary-700), var(--primary-800)); box-shadow: 0 6px 16px rgba(13,148,136,.28); }
.btn-primary:hover{ box-shadow: 0 12px 26px rgba(13,148,136,.36); }
.btn-sm{ padding: 9px 15px; font-size: .875rem; }
.btn:disabled, .btn[disabled]{ cursor: not-allowed; opacity: .5; box-shadow: none; filter: grayscale(.3); }
.btn:disabled:hover, .btn[disabled]:hover{ transform: none; box-shadow: none; }
.site-header{
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.site-header.scrolled{ border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.header-inner{ height: 100%; display: flex; align-items: center; gap: 20px; }
.brand{ display: inline-flex; align-items: center; gap: 11px; color: var(--text); }
.brand:hover{ text-decoration: none; }
.brand-mark{ display: inline-flex; filter: drop-shadow(0 3px 6px rgba(13,148,136,.28)); }
.brand-text{ display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong{ font-size: 1.02rem; font-weight: 700; letter-spacing: -.01em; }
.brand-text small{ font-size: .72rem; color: var(--text-mute); font-weight: 500; letter-spacing: .01em; }
.nav{ margin-left: auto; display: flex; gap: 4px; }
.nav a{
  position: relative; padding: 9px 13px; border-radius: 8px;
  color: var(--text-soft); font-weight: 500; font-size: .93rem;
  transition: color var(--ease), background var(--ease);
}
.nav a:hover{ color: var(--text); background: var(--bg-alt); text-decoration: none; }
.nav a.active{ color: var(--primary-700); }
.nav a.active::after{
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 3px; height: 2px;
  background: var(--primary); border-radius: 2px;
}
.header-actions{ display: flex; align-items: center; gap: 10px; }
.nav-cta{ display: inline-flex; }
.nav-toggle{ display: none; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; padding: 0 10px; background: transparent; border: 1px solid var(--border); border-radius: 10px; cursor: pointer; }
.nav-toggle span{ display: block; height: 2px; width: 100%; background: var(--text); border-radius: 2px; transition: transform var(--ease), opacity var(--ease); }
.field{ margin-bottom: 16px; }
.field label{ display: block; font-size: .88rem; font-weight: 600; margin-bottom: 7px; color: var(--text); }
.field input, .field textarea{
  width: 100%; font-family: inherit; font-size: .96rem; color: var(--text);
  background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field input::placeholder, .field textarea::placeholder{ color: var(--text-mute); }
.field input:focus, .field textarea:focus{ outline: none; border-color: var(--primary-light); box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 18%, transparent); }
.field textarea{ resize: vertical; min-height: 96px; }
.site-footer{ background: var(--bg-soft); border-top: 1px solid var(--border); padding: clamp(40px, 6vw, 60px) 0 26px; margin-top: 0; }
.footer-inner{ display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; align-items: flex-start; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.footer-brand{ display: flex; gap: 14px; max-width: 460px; align-items: flex-start; }
.footer-brand strong{ font-size: 1.05rem; }
.footer-brand p{ color: var(--text-soft); font-size: .92rem; margin-top: 4px; }
.footer-col h3{ font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-mute); margin: 0 0 13px; }
.footer-links{ display: flex; flex-direction: column; gap: 8px; }
.footer-links a{ color: var(--text-soft); font-size: .92rem; font-weight: 500; word-break: break-word; }
.footer-links a:hover{ color: var(--primary-700); }
.footer-legal{ font-style: normal; color: var(--text-soft); font-size: .92rem; line-height: 1.7; }
.footer-legal strong{ display: block; color: var(--text); font-weight: 600; margin-bottom: 2px; }
.footer-bottom{ display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; align-items: center; margin-top: 22px; font-size: .82rem; color: var(--text-mute); }
.footer-legal-links{ display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.footer-legal-links a{ color: var(--text-mute); font-size: .82rem; font-weight: 500; }
.footer-legal-links a:hover{ color: var(--primary-700); }
.footer-legal-links span{ color: var(--border); }
.legal-page{ padding: clamp(32px, 5vw, 56px) 0 clamp(48px, 7vw, 84px); background: var(--bg); }
.legal-content{ max-width: 820px; }
.legal-back{ display: inline-flex; align-items: center; gap: 7px; margin-bottom: 22px; color: var(--text-soft); font-weight: 500; font-size: .92rem; }
.legal-back:hover{ color: var(--primary-700); text-decoration: none; }
.legal-content h1{ font-size: clamp(1.8rem, 4.4vw, 2.5rem); font-weight: 800; margin-bottom: 8px; }
.legal-content .updated{ color: var(--text-mute); font-size: .9rem; margin-bottom: 30px; }
.legal-content h2{ font-size: 1.24rem; font-weight: 700; margin: 36px 0 12px; }
.legal-content p{ color: var(--text-soft); margin-bottom: 14px; }
.legal-content a{ color: var(--primary-700); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover{ color: var(--primary-800); }
.legal-content strong{ color: var(--text); font-weight: 600; }
.legal-card{ background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 20px 24px; margin: 30px 0 0; box-shadow: var(--shadow-sm); }
.legal-card h2{ margin-top: 0; font-size: 1.1rem; }
.legal-card p{ margin-bottom: 0; line-height: 1.9; }
@keyframes pulse{ 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45);} 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0);} 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0);} }
.toast{
  position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(20px);
  background: var(--text); color: var(--bg); padding: 13px 22px; border-radius: 12px; font-size: .92rem; font-weight: 500;
  box-shadow: var(--shadow-lg); z-index: 300; opacity: 0; pointer-events: none; transition: opacity var(--ease), transform var(--ease);
}
.reveal{ opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.in{ opacity: 1; transform: none; }
@media (max-width: 900px){
.nav-cta{ display: none; }
.nav-toggle{ display: flex; }
.nav{
    position: fixed; inset: var(--header-h) 0 auto 0; margin: 0; flex-direction: column; gap: 2px;
    background: var(--bg); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md);
    padding: 12px 18px 18px; transform: translateY(-130%); transition: transform var(--ease); visibility: hidden;
  }
.nav.open{ transform: translateY(0); visibility: visible; }
.nav a{ padding: 13px 12px; font-size: 1rem; border-radius: 10px; }
.nav a.active::after{ display: none; }
}
@media (max-width: 560px){
.footer-bottom{ flex-direction: column; }
.hero-cta .btn{ width: 100%; }
.brand-text small{ font-size: .68rem; }
}
@media (prefers-reduced-motion: reduce){
*{ scroll-behavior: auto !important; }
.reveal{ opacity: 1 !important; transform: none !important; transition: none; }
}
.modal-overlay{
  position: fixed; inset: 0; z-index: 500; display: flex; align-items: center; justify-content: center;
  padding: 20px; background: rgba(8,15,25,.55);
  -webkit-backdrop-filter: blur(6px) saturate(1.1); backdrop-filter: blur(6px) saturate(1.1);
  opacity: 0; visibility: hidden; transition: opacity var(--ease), visibility var(--ease);
}
.modal-overlay.open{ opacity: 1; visibility: visible; }
.modal{
  width: 100%; max-width: 468px; background: var(--surface); color: var(--text);
  border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: clamp(24px, 4vw, 34px); text-align: center;
  transform: translateY(18px) scale(.97); transition: transform var(--ease);
  max-height: calc(100vh - 40px); overflow-y: auto;
}
.modal-overlay.open .modal{ transform: none; }
.modal[data-variant] .modal-body{ text-align: center; }
.modal-actions .btn{ flex: 1 1 140px; }
.field label .req{ color: var(--accent-dark); font-weight: 700; margin-left: 3px; }
.field.invalid input, .field.invalid textarea{ border-color: #dc2626; box-shadow: 0 0 0 3px rgba(220,38,38,.14); }
.field.invalid .field-error{ display: block; }
.consent-field .field-error{ margin-top: 8px; }
.consent-field.invalid .field-error{ display: block; }
.consent-field{
  display: flex; align-items: flex-start; gap: 11px; margin: 4px 0 18px;
  padding: 14px 15px; border: 1px solid var(--border); border-radius: 12px; background: var(--bg-alt);
  transition: border-color var(--ease), background var(--ease);
}
.consent-field.invalid{ border-color: #dc2626; background: color-mix(in srgb, #dc2626 6%, var(--bg-alt)); }
.consent-field input[type="checkbox"]{
  flex: none; width: 20px; height: 20px; margin-top: 1px; accent-color: var(--primary); cursor: pointer;
}
.consent-field label{ font-size: .86rem; line-height: 1.5; color: var(--text-soft); font-weight: 500; cursor: pointer; }
.consent-field a{ color: var(--primary-700); text-decoration: underline; text-underline-offset: 2px; }
.consent-field a:hover{ color: var(--primary-800); }
@media (max-width: 460px){
.modal-actions .btn{ flex: 1 1 100%; }
}
@font-face{
  font-family: 'Space Grotesk'; font-style: normal; font-weight: 600; font-display: swap;
  src: url('/fonts/space-grotesk-600.woff2') format('woff2');
}
@font-face{
  font-family: 'Space Grotesk'; font-style: normal; font-weight: 700; font-display: swap;
  src: url('/fonts/space-grotesk-700.woff2') format('woff2');
}
.brand{ gap: 13px; align-items: center; }
.brand-mark{ filter: drop-shadow(0 4px 12px rgba(20,184,166,.34)); }
.brand-text{ gap: 4px; line-height: 1.02; }
.brand-text strong,
.footer-brand strong{ font-family: 'Space Grotesk', var(--font); }
.brand-text strong{ font-size: 1.24rem; font-weight: 700; letter-spacing: -.01em; color: var(--text); }
.brand-text .sur{ color: inherit; background: none; -webkit-text-fill-color: currentColor; }
.brand-text small{
  font-family: 'Space Grotesk', var(--font);
  font-size: .64rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--primary-700);
}
@media (prefers-color-scheme: dark){
.brand-text small{ color: var(--primary-300); }
}
@media (max-width: 560px){
.brand-text strong{ font-size: 1.1rem; }
.brand-text small{ font-size: .58rem; letter-spacing: .13em; }
}
.footer-brand{ flex-direction: column; align-items: flex-start; gap: 15px; }
.footer-logo{ display: flex; align-items: center; gap: 12px; }
.footer-wm{ display: flex; flex-direction: column; line-height: 1.04; gap: 3px; }
.footer-wm strong{ font-family: 'Space Grotesk', var(--font); font-size: 1.16rem; font-weight: 700; letter-spacing: -.01em; color: var(--text); }
.footer-wm small{ font-family: 'Space Grotesk', var(--font); font-size: .62rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--primary-700); }
.footer-brand > p{ margin-top: 0; }
@media (prefers-color-scheme: dark){
.footer-wm small{ color: var(--primary-300); }
}
.brand-mark img{ display: block; height: 46px; width: auto; }
@media (max-width: 560px){
.brand-mark img{ height: 42px; }
}
