/* Skyfin — styles */

:root{
  --navy:#0a1730;
  --navy-2:#0f1e38;
  --navy-3:#16284a;
  --navy-deep:#060f1f;
  --blue:#2563eb;
  --blue-dark:#1d4ed8;
  --blue-light:#38bdf8;
  --blue-lighter:#60a5fa;
  --ice:#bfe6ff;
  --green:#34d399;
  --green-dark:#16a34a;
  --green-text:#047857;
  --red:#dc2626;
  --amber-bg:#fffaf2;
  --amber-border:#f5d9a8;
  --text-body:#5b6b7e;
  --text-body-2:#3f4f63;
  --border:#e8eef7;
  --border-2:#dbe4f0;
  --bg-soft:#f5f8fd;
  --font-sans:'Hanken Grotesk',system-ui,-apple-system,sans-serif;
  --font-display:'Sora',sans-serif;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:88px}
body{font-family:var(--font-sans);-webkit-font-smoothing:antialiased;color:var(--navy-2);background:#fff;overflow-x:hidden}
img{max-width:100%;display:block}
a{color:inherit}
button{font-family:inherit}
::selection{background:var(--blue);color:#fff}

@keyframes bcUp{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:none}}
@keyframes bcFade{from{opacity:0}to{opacity:1}}

@media(prefers-reduced-motion:reduce){
  *{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}
}

.container{max-width:1200px;margin:0 auto;padding:0 32px}
.narrow{max-width:920px}
.section{padding:96px 32px}
@media(max-width:760px){
  .section{padding-left:20px !important;padding-right:20px !important}
}

/* ---------- Buttons ---------- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;text-decoration:none;font-weight:700;border-radius:12px;cursor:pointer;border:none;font-family:inherit;transition:transform .15s,box-shadow .15s,background .15s,border-color .15s}
.btn-block{display:flex;width:100%}
.btn-primary{background:var(--blue);color:#fff;font-size:16px;padding:15px 26px;box-shadow:0 12px 26px -10px var(--blue)}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 16px 32px -10px var(--blue)}
.btn-submit{background:var(--blue);color:#fff;font-size:16.5px;padding:16px;box-shadow:0 14px 30px -10px var(--blue)}
.btn-submit:hover{transform:translateY(-2px)}
.btn-submit:disabled{opacity:.75;cursor:default;transform:none}
.btn-ghost{background:#ffffff14;border:1px solid #ffffff2e;color:#fff;font-size:16.5px;padding:16px 28px}
.btn-ghost:hover{background:#ffffff26}
.btn-outline{flex:1;min-width:150px;background:#fff;color:var(--navy-2);border:1.5px solid var(--border-2);font-size:14.5px;padding:13px 18px}
.btn-outline:hover{border-color:var(--navy-2)}
.btn-outline-blue{flex:1;min-width:150px;background:#fff;color:var(--blue);border:1.5px solid var(--blue);font-size:14.5px;padding:13px 18px}
.btn-outline-blue:hover{background:#eff5ff}
.btn-solid-blue{flex:1;min-width:150px;background:var(--blue);color:#fff;border:1.5px solid var(--blue);font-size:14.5px;padding:13px 18px;box-shadow:0 10px 22px -8px var(--blue)}
.btn-solid-blue:hover{background:var(--blue-dark)}

/* ---------- Header ---------- */
.site-header{position:sticky;top:0;z-index:50;background:#ffffffe6;backdrop-filter:blur(12px);border-bottom:1px solid var(--border)}
.site-header .container{display:flex;align-items:center;gap:24px;height:72px}
.logo{display:flex;align-items:center;gap:11px;text-decoration:none;flex-shrink:0}
.logo-mark{width:38px;height:38px;border-radius:11px;background:linear-gradient(145deg,var(--blue-dark),var(--blue-light));display:flex;align-items:center;justify-content:center;box-shadow:0 6px 16px -4px #1d4ed870}
.logo-mark--sm{width:36px;height:36px;border-radius:10px}
.logo-wordmark{font-family:var(--font-display);font-size:21px;letter-spacing:-.03em;font-weight:800}
.logo-wordmark span:first-child{color:var(--blue)}
.logo-wordmark span:last-child{color:var(--navy-2)}

.nav-desktop{display:flex;align-items:center;gap:28px;margin-left:auto}
.nav-desktop a{text-decoration:none;color:#42536b;font-size:15px;font-weight:600}
.nav-desktop a:hover{color:var(--navy-2)}

.burger{display:none;margin-left:auto;align-items:center;justify-content:center;width:44px;height:44px;border:1px solid var(--border-2);background:#fff;border-radius:11px;cursor:pointer;color:var(--navy-2)}

.mobile-menu{border-top:1px solid var(--border);background:#fff;padding:14px 24px 22px;display:flex;flex-direction:column;gap:4px}
.mobile-menu[hidden]{display:none}
.mobile-menu a{text-decoration:none;color:var(--navy-2);font-size:17px;font-weight:600;padding:13px 8px;border-radius:9px}
.mobile-menu a:hover{background:var(--bg-soft)}

@media(max-width:940px){
  .nav-desktop{display:none}
  .burger{display:inline-flex}
}

/* ---------- Hero ---------- */
.hero{position:relative;background:radial-gradient(1100px 520px at 78% -8%,#1e40af,transparent),radial-gradient(800px 500px at -5% 110%,#0c4a6e80,transparent),var(--navy);color:#fff;padding:84px 32px 96px;overflow:hidden}
.hero::before{content:'';position:absolute;inset:0;background-image:radial-gradient(#ffffff10 1px,transparent 1px);background-size:26px 26px;opacity:.5;pointer-events:none}
.hero-grid{position:relative;max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1.05fr .95fr;gap:56px;align-items:center}
@media(max-width:940px){
  .hero-grid{grid-template-columns:1fr !important}
  .hero-right{order:-1}
}
.hero-left{animation:bcUp .7s ease both}
.hero-right{animation:bcUp .7s .12s ease both}

.badge-pill{display:inline-flex;align-items:center;gap:9px;background:#ffffff14;border:1px solid #ffffff26;padding:8px 15px;border-radius:100px;font-size:13.5px;font-weight:600;color:#bfdbfe;letter-spacing:.01em;margin-bottom:26px}
.badge-dot{width:7px;height:7px;border-radius:50%;background:var(--green);box-shadow:0 0 0 4px #34d39933}

.hero h1{font-family:var(--font-display);font-weight:800;font-size:clamp(38px,5.4vw,62px);line-height:1.04;letter-spacing:-.03em;margin-bottom:22px;text-wrap:balance}
.gradient-text{background:linear-gradient(90deg,var(--blue-lighter),var(--blue-light));-webkit-background-clip:text;background-clip:text;color:transparent}
.hero-lead{font-size:19px;line-height:1.55;color:#aebfd8;max-width:520px;margin-bottom:34px;text-wrap:pretty}

.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-bottom:40px}

.trust-row{display:flex;flex-wrap:wrap;gap:26px}
.trust-item{display:flex;align-items:center;gap:10px}
.trust-item span{font-size:14.5px;color:#cdd9ec;font-weight:600}

.param-card{background:#fff;border-radius:22px;padding:32px;box-shadow:0 40px 80px -30px #00000099;color:var(--navy-2)}
.param-card h2{font-family:var(--font-display);font-weight:800;font-size:21px;letter-spacing:-.02em;margin-bottom:6px}
.param-card > p{font-size:14.5px;color:var(--text-body);line-height:1.5;margin-bottom:22px}
.param-rows{display:flex;flex-direction:column;margin-bottom:24px}
.param-row{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:15px 0;border-top:1px solid #eef2f8}
.param-row:last-child{border-bottom:1px solid #eef2f8}
.param-row .label{font-size:14.5px;color:var(--text-body);font-weight:600}
.param-row .value{font-family:var(--font-display);font-size:17px;font-weight:800;letter-spacing:-.02em}
.param-row .value--green{color:var(--green-dark)}
.param-disclaimer{font-size:11.5px;color:var(--text-body);text-align:center;margin-top:14px;line-height:1.5}

/* ---------- Section headings ---------- */
.eyebrow{font-size:14px;font-weight:700;color:var(--blue);text-transform:uppercase;letter-spacing:.08em;margin-bottom:14px}
.eyebrow--light{color:var(--blue-lighter)}
.section-head{text-align:center;max-width:640px;margin:0 auto 56px}
.section-head h2{font-family:var(--font-display);font-weight:800;font-size:clamp(30px,4vw,44px);letter-spacing:-.03em;line-height:1.08;margin-bottom:16px}
.section-head p{font-size:18px;color:var(--text-body);line-height:1.55}

/* ---------- How it works ---------- */
.steps-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:22px}
.step-card{background:#fff;border:1px solid var(--border);border-radius:18px;padding:30px 26px;position:relative}
.step-num{font-family:var(--font-display);font-size:15px;font-weight:800;color:#bcd0ee;position:absolute;top:22px;right:24px}
.icon-box{width:52px;height:52px;border-radius:14px;background:#eff5ff;display:flex;align-items:center;justify-content:center;margin-bottom:20px}
.step-card h3{font-family:var(--font-display);font-weight:700;font-size:19px;margin-bottom:9px;letter-spacing:-.02em}
.step-card p{font-size:15px;color:var(--text-body);line-height:1.55}

/* ---------- Why us ---------- */
.why-section{background:var(--bg-soft)}
.why-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:48px;align-items:start}
.why-sticky{position:sticky;top:96px}
.why-sticky h2{font-family:var(--font-display);font-weight:800;font-size:clamp(30px,4vw,44px);letter-spacing:-.03em;line-height:1.08;margin-bottom:18px}
.why-sticky p{font-size:18px;color:var(--text-body);line-height:1.6;margin-bottom:28px;max-width:440px}
@media(max-width:800px){
  .why-sticky{position:static;top:auto}
}
.feature-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:18px}
.feature-card{background:#fff;border:1px solid var(--border);border-radius:16px;padding:26px 24px}
.feature-icon{width:46px;height:46px;border-radius:12px;background:var(--navy-2);display:flex;align-items:center;justify-content:center;margin-bottom:16px}
.feature-card h3{font-family:var(--font-display);font-weight:700;font-size:17.5px;margin-bottom:8px;letter-spacing:-.02em}
.feature-card p{font-size:14.5px;color:var(--text-body);line-height:1.55}

/* ---------- Who we help ---------- */
.audience-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(170px,1fr));gap:18px}
.audience-card{background:#fff;border:1px solid var(--border);border-radius:18px;padding:28px 24px}
.audience-card--dark{background:linear-gradient(160deg,var(--navy),var(--navy-3));color:#fff;border:none}
.audience-icon{width:46px;height:46px;border-radius:12px;background:#eff5ff;display:flex;align-items:center;justify-content:center;margin-bottom:16px}
.audience-card--dark .audience-icon{background:#ffffff14}
.audience-card h3{font-family:var(--font-display);font-weight:700;font-size:18px;margin-bottom:7px;letter-spacing:-.02em}
.audience-card p{font-size:14px;color:var(--text-body);line-height:1.5}
.audience-card--dark p{color:#aebfd8}

/* ---------- FAQ ---------- */
.faq-section{background:var(--bg-soft)}
.faq-list{display:flex;flex-direction:column;gap:12px}
.faq-item{background:#fff;border:1px solid var(--border);border-radius:14px;overflow:hidden}
.faq-question{width:100%;display:flex;align-items:center;justify-content:space-between;gap:16px;padding:20px 24px;background:none;border:none;cursor:pointer;text-align:left;font-family:var(--font-sans)}
.faq-question span:first-child{font-size:17px;font-weight:700;color:var(--navy-2);letter-spacing:-.01em}
.faq-icon{display:flex;flex-shrink:0;transition:transform .2s}
.faq-item.open .faq-icon{transform:rotate(45deg)}
.faq-answer{padding:0 24px 22px;font-size:15.5px;color:var(--text-body);line-height:1.6}
.faq-answer[hidden]{display:none}

/* ---------- Application form ---------- */
.apply-section{background:radial-gradient(900px 500px at 85% 0%,var(--navy-3),transparent),var(--navy);color:#fff}
.apply-grid{max-width:1000px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(290px,1fr));gap:48px;align-items:start}
.apply-grid h2{font-family:var(--font-display);font-weight:800;font-size:clamp(30px,4vw,44px);letter-spacing:-.03em;line-height:1.08;margin-bottom:18px}
.apply-lead{font-size:18px;color:#aebfd8;line-height:1.6;margin-bottom:30px;max-width:420px}
.contact-list{display:flex;flex-direction:column;gap:18px}
.contact-row{display:flex;align-items:center;gap:14px}
.contact-icon{width:44px;height:44px;border-radius:12px;background:#ffffff14;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.contact-row .label{font-size:13px;color:#9fb6d6}
.contact-row .value{font-size:17px;font-weight:700;color:#fff;text-decoration:none}
.contact-row a.value:hover{color:var(--blue-lighter)}

.apply-card{background:#fff;border-radius:22px;padding:32px;box-shadow:0 40px 80px -30px #00000099;color:var(--navy-2)}

.success-state{text-align:center;padding:30px 10px;animation:bcFade .4s ease both}
.success-icon{width:72px;height:72px;border-radius:50%;background:#dcfce7;display:flex;align-items:center;justify-content:center;margin:0 auto 22px}
.success-state h3{font-family:var(--font-display);font-weight:800;font-size:24px;color:var(--navy-2);margin-bottom:12px;letter-spacing:-.02em}
.success-state p{font-size:16px;color:var(--text-body);line-height:1.6;max-width:360px;margin:0 auto}

.apply-form{display:flex;flex-direction:column;gap:16px}
.apply-form[hidden]{display:none}
.form-row{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:14px}
@media(max-width:520px){.form-row{grid-template-columns:1fr}}
.field{display:flex;flex-direction:column;gap:7px;min-width:0}
.field span.field-label{font-size:13.5px;font-weight:700;color:var(--navy-2)}
.field span.field-label small{font-weight:500;color:var(--text-body)}
.field input,.field select,.field textarea{border:1.5px solid var(--border-2);border-radius:11px;padding:13px 14px;font-size:15px;font-family:inherit;color:var(--navy-2);outline:none;background:#fff;width:100%}
.field textarea{resize:vertical}
.field input:focus,.field select:focus,.field textarea:focus{border-color:var(--blue)}

.pref-group{display:flex;flex-direction:column;gap:11px;padding:15px 15px 16px;border-radius:14px;scroll-margin-top:140px;transition:all .2s;background:var(--amber-bg);border:1.5px solid var(--amber-border)}
.pref-group.has-selection{background:#f7faff;border-color:#dbe9ff}
.pref-group.has-error{background:#fef2f2;border-color:var(--red)}
.pref-group-head{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap}
.pref-group-head > span:first-child{font-size:13.5px;font-weight:700;color:var(--navy-2)}
.pref-hint{font-size:12.5px;font-weight:700;padding:4px 10px;border-radius:100px;color:#92400e;background:#fdeccd}
.pref-group.has-selection .pref-hint{color:var(--green-text);background:#d1fae5}
.pref-group.has-error .pref-hint{color:#b91c1c;background:#fee2e2}
.pref-options{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}
@media(max-width:520px){.pref-options{grid-template-columns:repeat(2,1fr)}}
.pref-option{position:relative;display:flex;flex-direction:column;align-items:center;gap:7px;padding:16px 8px 14px;border-radius:12px;cursor:pointer;transition:all .15s;border:2px dashed #c3d3e8;background:#fbfcfe;color:var(--text-body)}
.pref-option:has(input:focus-visible){outline:2px solid var(--blue);outline-offset:2px}
.pref-option.selected{border:2px solid var(--blue);background:#eff5ff;color:var(--blue-dark);box-shadow:0 6px 16px -8px #2563eb99}
.pref-option input{position:absolute;opacity:0;width:1px;height:1px}
.pref-dot{position:absolute;top:9px;right:9px;width:16px;height:16px;border-radius:50%;display:flex;align-items:center;justify-content:center;border:2px solid #c3d3e8;background:#fff}
.pref-option.selected .pref-dot{border-color:var(--blue);background:var(--blue)}
.pref-dot-inner{width:6px;height:6px;border-radius:50%;background:transparent}
.pref-option.selected .pref-dot-inner{background:#fff}
.pref-icon{display:flex;align-items:center;justify-content:center;width:26px;height:26px;border-radius:8px;background:#f1f5fb;font-size:15px}
.pref-option.selected .pref-icon{background:#dbe9ff}
.pref-option .pref-label{font-size:14.5px;font-weight:700}

.gdpr-check{display:flex;align-items:flex-start;gap:11px;cursor:pointer;margin-top:2px}
.gdpr-check input{width:19px;height:19px;margin-top:2px;accent-color:var(--blue);flex-shrink:0;cursor:pointer}
.gdpr-check span{font-size:13.5px;color:var(--text-body);line-height:1.5}
.gdpr-check a{color:var(--blue);font-weight:600;text-decoration:none}
.gdpr-check a:hover{text-decoration:underline}

[data-netlify-recaptcha]{display:flex;justify-content:center;min-height:20px;overflow-x:auto;max-width:100%}

.form-error{font-size:13.5px;color:var(--red);text-align:center;line-height:1.5}
.form-error a{color:var(--blue);font-weight:600}
.form-error[hidden]{display:none}
.form-note{font-size:11.5px;color:var(--text-body);text-align:center;line-height:1.5}
.hp-field{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}

/* ---------- Footer ---------- */
.site-footer{background:var(--navy-deep);color:#aebfd8;padding:64px 32px 40px}
.footer-top{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:40px;padding-bottom:44px;border-bottom:1px solid #1a2942}
.footer-brand p{font-size:14.5px;line-height:1.6;color:#7e91b0;max-width:280px}
.footer-col-title{font-size:13px;font-weight:700;color:#fff;text-transform:uppercase;letter-spacing:.06em;margin-bottom:16px}
.footer-links{display:flex;flex-direction:column;gap:11px}
.footer-links a,.footer-links button{text-decoration:none;color:#aebfd8;font-size:15px;background:none;border:none;cursor:pointer;font-family:inherit;text-align:left;padding:0}
.footer-links a:hover,.footer-links button:hover{color:#fff}
.footer-contact{display:flex;flex-direction:column;gap:11px;font-size:15px}
.footer-contact .name{color:#e2e9f5;font-weight:700}
.footer-contact a{text-decoration:none;color:#aebfd8}
.footer-contact a:hover{color:#fff}
.footer-contact span.muted{color:#7e91b0}
.footer-legal{padding-top:30px;display:flex;flex-direction:column;gap:14px;text-align:center;font-size:13px;line-height:1.65;color:#8ea1bd}
.footer-legal p{max-width:1000px;margin:0 auto}
.footer-legal strong{color:#cdd9ec;font-weight:700}
.footer-copy{padding-top:26px;font-size:13px;color:#5e718e;line-height:1.6;text-align:center}

/* ---------- Cookie banner / modal ---------- */
.cookie-overlay{position:fixed;inset:0;z-index:95;background:#0a173066;display:flex;align-items:flex-end;justify-content:center;padding:18px}
.cookie-overlay[hidden]{display:none}
.cookie-sheet{max-width:900px;width:100%;background:#fff;border:1px solid #e0e8f4;border-radius:18px;box-shadow:0 30px 70px -24px #00000060;padding:24px 26px;animation:bcUp .4s ease both}
.cookie-sheet h2{font-family:var(--font-display);font-weight:800;font-size:17px;color:var(--navy-2);margin-bottom:8px;letter-spacing:-.01em}
.cookie-sheet > p{font-size:13.5px;color:var(--text-body);line-height:1.6;margin-bottom:18px;max-width:740px}
.cookie-btns{display:flex;gap:10px;flex-wrap:wrap}

.modal-overlay{position:fixed;inset:0;z-index:100;background:#0a173080;display:flex;align-items:center;justify-content:center;padding:18px}
.modal-overlay[hidden]{display:none}
.modal-card{max-width:720px;width:100%;max-height:88vh;background:#fff;border-radius:18px;box-shadow:0 40px 90px -30px #00000070;display:flex;flex-direction:column;overflow:hidden;animation:bcUp .35s ease both}
.modal-head{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;padding:24px 26px 18px;border-bottom:1px solid #eef2f8}
.modal-head h2{font-family:var(--font-display);font-weight:800;font-size:19px;color:var(--navy-2);letter-spacing:-.02em}
.modal-close{flex-shrink:0;width:34px;height:34px;border:none;background:#f1f5fb;border-radius:9px;cursor:pointer;color:var(--text-body);font-size:17px;font-family:inherit;line-height:1}
.modal-close:hover{background:var(--border)}
.modal-body{overflow-y:auto;padding:20px 26px 22px}
.modal-body > p{font-size:13.5px;color:var(--text-body);line-height:1.6;margin-bottom:18px}
.cat-list{display:flex;flex-direction:column;gap:12px}
.cat-card{border:1.5px solid #e6edf7;border-radius:13px;padding:16px 17px}
.cat-head{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-bottom:7px}
.cat-toggle-detail{display:flex;align-items:center;gap:8px;background:none;border:none;padding:0;cursor:pointer;font-family:inherit;text-align:left}
.chevron{flex-shrink:0;transition:transform .2s}
.cat-toggle-detail[aria-expanded="true"] .chevron{transform:rotate(90deg)}
.cat-name{font-size:15px;font-weight:800;color:var(--navy-2)}
.cat-always{font-size:12.5px;font-weight:700;color:var(--green-text);background:#d1fae5;padding:5px 11px;border-radius:100px;flex-shrink:0}
.cat-desc{font-size:13px;color:var(--text-body);line-height:1.55}
.cat-detail{margin-top:13px;background:#f6f9fd;border-radius:10px;padding:14px 15px}
.cat-detail[hidden]{display:none}
.cat-detail p{font-size:12.5px;color:var(--text-body);line-height:1.55}
.cookie-row{display:grid;grid-template-columns:minmax(0,110px) minmax(0,1fr);gap:4px 14px;font-size:12.5px;line-height:1.5}
.cookie-row span:nth-child(odd){color:#8494a8}
.cookie-row span:nth-child(even){color:#3d5372}
.modal-footer{display:flex;gap:10px;flex-wrap:wrap;padding:16px 26px 20px;border-top:1px solid #eef2f8;background:#fbfcfe}

.switch{position:relative;width:50px;height:28px;border-radius:100px;border:none;cursor:pointer;flex-shrink:0;padding:0;transition:background .18s;background:var(--border-2)}
.switch.on{background:var(--blue)}
.switch-knob{position:absolute;top:3px;left:3px;width:22px;height:22px;border-radius:50%;background:#fff;box-shadow:0 2px 5px #0000002e;transition:transform .18s}
.switch.on .switch-knob{transform:translateX(22px)}

.consent-fab{position:fixed;left:18px;bottom:18px;z-index:80;width:48px;height:48px;border-radius:50%;border:none;background:var(--blue-dark);color:#fff;cursor:pointer;box-shadow:0 12px 26px -10px var(--blue-dark);display:flex;align-items:center;justify-content:center}
.consent-fab:hover{background:var(--blue)}
.consent-fab[hidden]{display:none}

/* ---------- Privacy page ---------- */
.legal-hero{background:radial-gradient(900px 420px at 85% -20%,#1e40af,transparent),var(--navy);color:#fff;padding:64px 32px 56px}
.legal-hero h1{font-family:var(--font-display);font-weight:800;font-size:clamp(30px,4.6vw,46px);letter-spacing:-.03em;line-height:1.06;margin-bottom:14px}
.legal-hero p{font-size:17.5px;color:#aebfd8;line-height:1.55;max-width:620px}
.back-link{margin-left:auto;display:inline-flex;align-items:center;gap:8px;text-decoration:none;color:#42536b;font-size:15px;font-weight:700}
.back-link:hover{color:var(--navy-2)}

.toc-card{background:var(--bg-soft);border:1px solid var(--border);border-radius:16px;padding:24px 26px}
.toc-title{font-family:var(--font-display);font-weight:700;font-size:15px;color:var(--navy-2);margin-bottom:14px}
.toc-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:8px 22px}
.toc-grid a{text-decoration:none;color:var(--blue);font-size:15px;font-weight:600}
.toc-grid a:hover{text-decoration:underline}

.legal-note{background:#fffbeb;border:1px solid #fde68a;border-radius:12px;padding:16px 18px;margin-top:28px}
.legal-note p{margin:0;font-size:14.5px;color:#92702a;line-height:1.55}
.legal-note strong{color:#7c5e16}

.gdpr-wrap p{font-size:16px;line-height:1.68;color:var(--text-body-2);margin-bottom:14px}
.gdpr-wrap li{font-size:16px;line-height:1.6;color:var(--text-body-2);margin-bottom:9px}
.gdpr-wrap ul{padding-left:22px;margin-bottom:16px}
.gdpr-wrap h2{font-family:var(--font-display);font-weight:800;font-size:25px;letter-spacing:-.02em;color:var(--navy-2);margin:42px 0 14px;scroll-margin-top:96px}
.gdpr-wrap strong{color:var(--navy-2);font-weight:700}
.gdpr-wrap a{color:var(--blue);font-weight:600;text-decoration:none}
.gdpr-wrap a:hover{text-decoration:underline}

.legal-footer-bottom{margin-top:44px;display:flex;flex-wrap:wrap;gap:14px;align-items:center;justify-content:space-between;border-top:1px solid var(--border);padding-top:28px}
.legal-footer-bottom span{font-size:14px;color:#8a99ad}

.footer-mini{background:var(--navy-deep);color:#aebfd8;padding:40px 32px}
.footer-mini .container{max-width:920px;display:flex;flex-wrap:wrap;gap:14px;justify-content:space-between;align-items:center}
