:root{
  --font-heading:'Bricolage Grotesque',sans-serif;
  --font-body:'Inter',sans-serif;
  --color-bg:#F6F4EF;
  --color-bg-alt:#EEE9DF;
  --color-surface:#FFFFFF;
  --color-ink:#1B2030;
  --color-muted:#5C6472;
  --color-primary:#163259;
  --color-primary-dark:#0D1F3B;
  --color-primary-light:#2C5490;
  --color-accent:#2BAF9E;
  --color-accent-dark:#1F8E80;
  --color-amber:#E38B3C;
  --color-border:rgba(27,32,48,0.1);
  --radius-sm:8px;
  --radius-md:14px;
  --radius-lg:22px;
  --radius-xl:32px;
  --radius-full:999px;
  --shadow-sm:0 1px 2px rgba(16,24,40,.06),0 1px 1px rgba(16,24,40,.04);
  --shadow-md:0 6px 14px rgba(16,24,40,.08),0 2px 4px rgba(16,24,40,.06);
  --shadow-lg:0 16px 32px -8px rgba(16,24,40,.14),0 6px 12px rgba(16,24,40,.06);
  --shadow-hover:0 24px 48px -10px rgba(16,24,40,.2),0 10px 20px rgba(16,24,40,.08);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;overflow-x:hidden;}
body{
  margin:0;
  font-family:var(--font-body);
  background:var(--color-bg);
  color:var(--color-ink);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;transition:color .3s ease;}
h1,h2,h3,h4{font-family:var(--font-heading);margin:0;color:var(--color-primary-dark);}
p{margin:0;}
button{font-family:var(--font-body);}

.SiteHeader-inner{max-width:1280px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding:1.3rem 1.5rem;}
.SiteHeader-logoImg{height:30px;}
.SiteHeader-nav{display:none;align-items:center;gap:2rem;}
.SiteHeader.nav-visible .SiteHeader-nav{display:flex;}
.SiteHeader-navLink{font-size:.92rem;font-weight:500;color:var(--color-ink);padding:.4rem 0;position:relative;transition:color .3s ease;}
.SiteHeader-navLink:hover{color:var(--color-accent-dark);}
.SiteHeader-navLink--cta{background:var(--color-primary);color:#fff;padding:.6rem 1.2rem;border-radius:var(--radius-full);}
.SiteHeader-navLink--cta:hover{background:var(--color-primary-dark);color:#fff;}
.SiteHeader-toggle{width:46px;height:46px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:5px;background:var(--color-primary);border:none;border-radius:12px;cursor:pointer;transition:background .3s ease,transform .3s ease;}
.SiteHeader-toggle:hover{background:var(--color-primary-dark);transform:translateY(-1px);}
.SiteHeader-toggleBar{width:20px;height:2px;background:#fff;border-radius:2px;transition:transform .3s ease;}

@media(min-width:1024px){
  .SiteHeader-nav{gap:2.2rem;}
}

.MobileMenu{position:fixed;inset:0;background:var(--color-primary);transform:translateY(-100%);transition:transform .5s cubic-bezier(.65,0,.35,1);z-index:300;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:3rem 1.5rem;}
.MobileMenu.is-open{transform:translateY(0);}
.MobileMenu-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:1.6rem;text-align:center;}
.MobileMenu-item{opacity:0;transform:translateY(-24px);transition:opacity .4s ease,transform .4s ease;}
.MobileMenu.is-open .MobileMenu-item{opacity:1;transform:translateY(0);}
.MobileMenu.is-open .MobileMenu-item:nth-child(1){transition-delay:.08s;}
.MobileMenu.is-open .MobileMenu-item:nth-child(2){transition-delay:.16s;}
.MobileMenu.is-open .MobileMenu-item:nth-child(3){transition-delay:.24s;}
.MobileMenu.is-open .MobileMenu-item:nth-child(4){transition-delay:.32s;}
.MobileMenu.is-open .MobileMenu-item:nth-child(5){transition-delay:.4s;}
.MobileMenu-link{font-family:var(--font-heading);font-size:clamp(1.6rem,5vw,2.4rem);font-weight:700;color:#fff;transition:color .3s ease;}
.MobileMenu-link:hover{color:var(--color-amber);}
.MobileMenu-close{margin-top:3rem;background:rgba(255,255,255,.12);color:#fff;border:1px solid rgba(255,255,255,.3);padding:.9rem 1.8rem;border-radius:var(--radius-full);cursor:pointer;font-weight:600;transition:background .3s ease,transform .3s ease;display:flex;align-items:center;gap:.6rem;min-height:44px;}
.MobileMenu-close:hover{background:rgba(255,255,255,.22);transform:translateY(-2px);}

.Btn{display:inline-flex;align-items:center;gap:.55rem;padding:.9rem 1.7rem;border-radius:var(--radius-full);font-weight:600;font-size:.95rem;transition:transform .3s ease,box-shadow .3s ease,background .3s ease,color .3s ease,border-color .3s ease;cursor:pointer;border:1px solid transparent;white-space:nowrap;min-height:44px;}
.Btn--primary{background:var(--color-primary);color:#fff;box-shadow:var(--shadow-md);}
.Btn--primary:hover{background:var(--color-primary-dark);transform:translateY(-3px);box-shadow:var(--shadow-hover);}
.Btn--outline{background:transparent;border-color:rgba(27,32,48,.2);color:var(--color-ink);}
.Btn--outline:hover{border-color:var(--color-primary);color:var(--color-primary);transform:translateY(-3px);}
.Btn--ghost{background:rgba(27,32,48,.06);color:var(--color-ink);}
.Btn--ghost:hover{background:rgba(27,32,48,.12);}
.Btn--onDark{background:#fff;color:var(--color-primary-dark);box-shadow:var(--shadow-md);}
.Btn--onDark:hover{background:var(--color-amber);color:#231708;transform:translateY(-3px);}
.Btn--outlineOnDark{background:transparent;border-color:rgba(255,255,255,.35);color:#fff;}
.Btn--outlineOnDark:hover{border-color:#fff;transform:translateY(-3px);}
.Btn--block{width:100%;justify-content:center;}

.Hero{padding-top:9.5rem;padding-bottom:5rem;background:radial-gradient(circle at 85% 10%,rgba(43,175,158,0.14),transparent 55%),radial-gradient(circle at 5% 90%,rgba(227,139,60,0.12),transparent 50%),var(--color-bg);overflow:hidden;}
.Hero-inner{max-width:1280px;margin:0 auto;padding:0 1.5rem;display:grid;grid-template-columns:1fr;gap:3rem;align-items:center;}
.Hero-eyebrow{display:inline-flex;align-items:center;gap:.5rem;font-size:.82rem;font-weight:600;color:var(--color-accent-dark);background:rgba(43,175,158,0.12);padding:.5rem 1rem;border-radius:var(--radius-full);margin-bottom:1.4rem;}
.Hero-heading{font-size:clamp(2.4rem,5vw + 1rem,4.4rem);font-weight:800;line-height:1.06;letter-spacing:-0.01em;margin-bottom:1.4rem;}
.Hero-text{font-size:1.08rem;color:var(--color-muted);max-width:620px;margin-bottom:2rem;}
.Hero-typed{color:var(--color-accent-dark);font-weight:600;}
.Hero-actions{display:flex;gap:1rem;flex-wrap:wrap;}
.Hero-panel{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;}

@media(min-width:1024px){
  .Hero-inner{grid-template-columns:1.05fr 1fr;}
}

.WidgetCard{background:var(--color-surface);border-radius:var(--radius-md);padding:1.35rem;box-shadow:var(--shadow-md);border:1px solid var(--color-border);transition:transform .35s ease,box-shadow .35s ease;}
.WidgetCard:hover{transform:translateY(-5px);box-shadow:var(--shadow-hover);}
.WidgetCard-icon{width:38px;height:38px;border-radius:var(--radius-sm);background:rgba(22,50,89,0.08);color:var(--color-primary);display:flex;align-items:center;justify-content:center;margin-bottom:.8rem;font-size:1rem;}
.WidgetCard-title{font-family:var(--font-heading);font-weight:700;font-size:.98rem;color:var(--color-ink);margin-bottom:.3rem;}
.WidgetCard-tag{font-size:.78rem;color:var(--color-muted);line-height:1.4;}
.WidgetCard--wide{grid-column:span 2;}
.WidgetCard--accent{background:linear-gradient(135deg,var(--color-amber),#F0A85C);border:none;}
.WidgetCard--accent .WidgetCard-icon{background:rgba(255,255,255,.35);color:#231708;}
.WidgetCard--accent .WidgetCard-title{color:#231708;}
.WidgetCard--accent .WidgetCard-tag{color:#3a2712;}

@media(max-width:900px){
  .Hero-panel{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:560px){
  .Hero-panel{grid-template-columns:1fr;}
  .WidgetCard--wide{grid-column:span 1;}
}

.PageHero{padding-top:9.5rem;padding-bottom:4rem;background:linear-gradient(180deg,var(--color-bg-alt),var(--color-bg));}
.PageHero--center{text-align:center;}
.PageHero-inner{max-width:820px;margin:0 auto;padding:0 1.5rem;}
.PageHero-eyebrow{display:inline-flex;align-items:center;gap:.5rem;font-size:.82rem;font-weight:600;color:var(--color-accent-dark);background:rgba(43,175,158,0.12);padding:.5rem 1rem;border-radius:var(--radius-full);margin-bottom:1.2rem;}
.PageHero-heading{font-size:clamp(2rem,4vw + 1rem,3.4rem);font-weight:800;line-height:1.1;margin-bottom:1.1rem;letter-spacing:-0.01em;}
.PageHero-text{font-size:1.05rem;color:var(--color-muted);max-width:680px;}
.ThanksPage-countdown{margin:1.5rem 0;font-size:1rem;color:var(--color-muted);font-weight:600;}

.Section{padding:5.5rem 1.5rem;}
.Section--tight{padding:4rem 1.5rem;}
.Section--alt{background:var(--color-bg-alt);}
.Section-inner{max-width:1200px;margin:0 auto;}
.Section-inner--split{display:grid;grid-template-columns:1fr;gap:2.5rem;align-items:center;}
@media(min-width:1024px){
  .Section-inner--split{grid-template-columns:1fr 1fr;gap:4rem;}
  .Section-inner--reverse{direction:rtl;}
  .Section-inner--reverse > *{direction:ltr;}
}
.Section-header{max-width:720px;margin:0 auto 3rem;text-align:center;}
.Section-eyebrow{display:inline-block;font-size:.8rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--color-accent-dark);margin-bottom:.8rem;}
.Section-title{font-size:clamp(1.7rem,3vw + 1rem,2.6rem);font-weight:700;line-height:1.2;margin-bottom:.9rem;}
.Section-lead{color:var(--color-muted);font-size:1.02rem;}
.Section-body{color:var(--color-muted);font-size:1.02rem;max-width:900px;margin-bottom:1.4rem;}
.Section-media img{border-radius:var(--radius-lg);box-shadow:var(--shadow-lg);width:100%;height:auto;object-fit:cover;}
.Section-media--wide img{max-height:460px;object-fit:cover;width:100%;}
.Section-text{max-width:520px;}
.Section-linkOut{display:inline-flex;align-items:center;gap:.5rem;margin-top:2.5rem;font-weight:600;color:var(--color-primary);transition:gap .3s ease,color .3s ease;}
.Section-linkOut:hover{gap:.8rem;color:var(--color-accent-dark);}

.FeatureGrid{display:grid;grid-template-columns:1fr;gap:1.5rem;}
@media(min-width:640px){.FeatureGrid{grid-template-columns:repeat(2,1fr);}}
@media(min-width:1024px){.FeatureGrid{grid-template-columns:repeat(4,1fr);}}
.FeatureCard{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-lg);padding:2rem;box-shadow:var(--shadow-sm);transition:transform .35s ease,box-shadow .35s ease,border-color .35s ease;}
.FeatureCard:hover{transform:translateY(-6px);box-shadow:var(--shadow-hover);border-color:transparent;}
.FeatureCard-icon{width:52px;height:52px;border-radius:var(--radius-md);background:rgba(22,50,89,0.08);color:var(--color-primary);display:flex;align-items:center;justify-content:center;font-size:1.3rem;margin-bottom:1.2rem;}
.FeatureCard-title{font-size:1.15rem;font-weight:700;margin-bottom:.7rem;}
.FeatureCard-text{font-size:.94rem;color:var(--color-muted);}

.ContentGrid{display:grid;grid-template-columns:1fr;gap:1.5rem;}
@media(min-width:640px){.ContentGrid{grid-template-columns:repeat(2,1fr);}}
@media(min-width:1024px){.ContentGrid{grid-template-columns:repeat(4,1fr);}}
.ContentGrid--five{grid-template-columns:1fr;}
@media(min-width:640px){.ContentGrid--five{grid-template-columns:repeat(2,1fr);}}
@media(min-width:1200px){.ContentGrid--five{grid-template-columns:repeat(5,1fr);}}
.ContentCard{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-lg);padding:1.8rem;box-shadow:var(--shadow-sm);transition:transform .35s ease,box-shadow .35s ease;}
.ContentCard:hover{transform:translateY(-5px);box-shadow:var(--shadow-hover);}
.ContentCard-icon{width:44px;height:44px;border-radius:var(--radius-sm);background:rgba(43,175,158,0.12);color:var(--color-accent-dark);display:flex;align-items:center;justify-content:center;font-size:1.1rem;margin-bottom:1rem;}
.ContentCard-title{font-size:1.02rem;font-weight:700;margin-bottom:.5rem;}
.ContentCard-body{font-size:.92rem;color:var(--color-muted);}

.Timeline{display:grid;grid-template-columns:1fr;gap:1.5rem;}
@media(min-width:768px){.Timeline{grid-template-columns:repeat(4,1fr);}}
.Timeline-item{background:var(--color-surface);border-radius:var(--radius-lg);padding:1.8rem;box-shadow:var(--shadow-sm);border:1px solid var(--color-border);transition:transform .35s ease,box-shadow .35s ease;}
.Timeline-item:hover{transform:translateY(-5px);box-shadow:var(--shadow-hover);}
.Timeline-marker{display:inline-flex;align-items:center;justify-content:center;font-family:var(--font-heading);font-weight:800;font-size:.85rem;color:#fff;background:var(--color-primary);padding:.4rem .9rem;border-radius:var(--radius-full);margin-bottom:1rem;}
.Timeline-title{font-size:1.05rem;font-weight:700;margin-bottom:.6rem;}
.Timeline-text{font-size:.92rem;color:var(--color-muted);}
.Timeline--detailed{grid-template-columns:1fr;gap:1.5rem;}
.Timeline--detailed .Timeline-item{display:grid;grid-template-columns:150px 1fr;gap:1.5rem;padding:2rem;align-items:start;}
.Timeline--detailed .Timeline-marker{width:fit-content;}
@media(max-width:768px){.Timeline--detailed .Timeline-item{grid-template-columns:1fr;}}
.Timeline--detailed .Timeline-title{font-size:1.25rem;}
.Timeline--detailed .Timeline-text{font-size:.98rem;}

.CtaBanner{background:linear-gradient(135deg,var(--color-primary-dark),var(--color-primary));padding:6rem 1.5rem;position:relative;overflow:hidden;}
.CtaBanner::before{content:'';position:absolute;top:-80px;right:-80px;width:320px;height:320px;background:radial-gradient(circle,rgba(227,139,60,.35),transparent 70%);}
.CtaBanner-inner{max-width:760px;margin:0 auto;text-align:center;position:relative;z-index:1;}
.CtaBanner-title{color:#fff;font-size:clamp(1.8rem,3.5vw + 1rem,2.8rem);font-weight:800;margin-bottom:1rem;}
.CtaBanner-text{color:rgba(255,255,255,.78);font-size:1.02rem;margin-bottom:2rem;}
.CtaBanner-actions{display:flex;justify-content:center;gap:1rem;flex-wrap:wrap;}

.SidebarLayout{max-width:1280px;margin:0 auto;padding:1rem 1.5rem 5rem;display:grid;grid-template-columns:1fr;gap:2.5rem;}
@media(min-width:1024px){
  .SidebarLayout--page{grid-template-columns:1fr 320px;align-items:start;}
  .SidebarLayout-sidebar{position:sticky;top:120px;}
}
.SidebarLayout-main{min-width:0;}
.SidebarLayout-sidebar{display:flex;flex-direction:column;gap:1.5rem;}

.InfoWidget{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-lg);padding:1.6rem;box-shadow:var(--shadow-sm);transition:box-shadow .35s ease,transform .35s ease;}
.InfoWidget:hover{box-shadow:var(--shadow-md);}
.InfoWidget-title{font-size:1rem;font-weight:700;margin-bottom:1rem;}
.InfoWidget-text{font-size:.9rem;color:var(--color-muted);margin-bottom:1rem;}
.InfoWidget-row{display:flex;justify-content:space-between;font-size:.9rem;padding:.6rem 0;border-bottom:1px solid var(--color-border);}
.InfoWidget-row:last-child{border-bottom:none;}
.InfoWidget-row span{color:var(--color-muted);}
.InfoWidget-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.7rem;}
.InfoWidget-item{display:flex;align-items:center;gap:.6rem;font-size:.88rem;color:var(--color-muted);}
.InfoWidget-item i{color:var(--color-accent-dark);}
.InfoWidget-link{display:flex;align-items:center;gap:.5rem;font-size:.9rem;font-weight:600;color:var(--color-primary);padding:.5rem 0;transition:gap .3s ease,color .3s ease;}
.InfoWidget-link:hover{gap:.8rem;color:var(--color-accent-dark);}
.InfoWidget--cta{background:linear-gradient(150deg,var(--color-primary),var(--color-primary-dark));border:none;}
.InfoWidget--cta .InfoWidget-title,.InfoWidget--cta .InfoWidget-text{color:#fff;}
.InfoWidget--cta .InfoWidget-text{color:rgba(255,255,255,.75);}
.InfoWidget-contactRow{display:flex;align-items:flex-start;gap:.8rem;font-size:.9rem;padding:.6rem 0;border-bottom:1px solid var(--color-border);color:var(--color-muted);}
.InfoWidget-contactRow:last-child{border-bottom:none;}
.InfoWidget-contactRow i{color:var(--color-accent-dark);margin-top:.15rem;}
.InfoWidget-contactRow a{font-weight:600;color:var(--color-ink);transition:color .3s ease;}
.InfoWidget-contactRow a:hover{color:var(--color-accent-dark);}

.FaqList{display:flex;flex-direction:column;gap:1.2rem;}
.FaqItem{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-lg);padding:1.6rem 1.8rem;box-shadow:var(--shadow-sm);transition:box-shadow .35s ease,transform .35s ease;}
.FaqItem:hover{box-shadow:var(--shadow-md);transform:translateY(-2px);}
.FaqItem-question{font-size:1.02rem;font-weight:700;margin-bottom:.6rem;}
.FaqItem-answer{font-size:.94rem;color:var(--color-muted);}

.ContactForm-wrap{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-xl);padding:2.5rem;box-shadow:var(--shadow-md);}
.ContactForm-heading{font-size:1.5rem;font-weight:700;margin-bottom:.5rem;}
.ContactForm-sub{color:var(--color-muted);font-size:.94rem;margin-bottom:1.8rem;}
.ContactForm-row{display:grid;grid-template-columns:1fr;gap:1.2rem;margin-bottom:1.2rem;}
@media(min-width:768px){.ContactForm-row{grid-template-columns:1fr 1fr;}}
.ContactForm-row--message{grid-template-columns:1fr;}
.ContactForm-field{display:flex;flex-direction:column;gap:.5rem;}
.ContactForm-field--full{grid-column:1/-1;}
.ContactForm-field label{font-size:.85rem;font-weight:600;color:var(--color-ink);}
.ContactForm-field input,.ContactForm-field textarea{border:1px solid var(--color-border);border-radius:var(--radius-md);padding:.8rem 1rem;font-family:var(--font-body);font-size:.95rem;background:var(--color-bg);transition:border-color .3s ease,box-shadow .3s ease;resize:none;}
.ContactForm-field input:focus,.ContactForm-field textarea:focus{outline:none;border-color:var(--color-accent);box-shadow:0 0 0 3px rgba(43,175,158,0.18);}
.ContactForm-row--actions{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1rem;}
.ContactForm-checkbox{display:flex;align-items:flex-start;gap:.6rem;font-size:.85rem;color:var(--color-muted);cursor:pointer;}
.ContactForm-checkbox input{margin-top:.2rem;width:18px;height:18px;accent-color:var(--color-primary);}
.ContactForm-checkbox a{color:var(--color-primary);font-weight:600;}

.Gallery{display:grid;grid-template-columns:1fr;gap:1.2rem;}
@media(min-width:768px){.Gallery{grid-template-columns:repeat(3,1fr);}}
.Gallery-item{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-md);transition:transform .4s ease,box-shadow .4s ease;}
.Gallery-item:hover{transform:translateY(-6px);box-shadow:var(--shadow-hover);}
.Gallery-item img{width:100%;height:230px;object-fit:cover;}

.MapEmbed{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-md);}

.LegalDoc{display:flex;flex-direction:column;gap:2.2rem;max-width:820px;margin:0 auto;}
.LegalDoc-section{padding-bottom:2.2rem;border-bottom:1px solid var(--color-border);}
.LegalDoc-section:last-child{border-bottom:none;}
.LegalDoc-question{font-size:1.2rem;font-weight:700;margin-bottom:.8rem;color:var(--color-primary-dark);}
.LegalDoc-answer{color:var(--color-muted);font-size:.98rem;}
.LegalDoc--plain .LegalDoc-question{font-size:1.15rem;}

.SiteFooter{background:#0A1526;padding:5rem 1.5rem 2.5rem;color:rgba(255,255,255,.85);}
.SiteFooter-inner{max-width:1280px;margin:0 auto;}
.SiteFooter-grid{display:grid;grid-template-columns:1fr;gap:2.5rem;margin-bottom:3.5rem;}
@media(min-width:768px){.SiteFooter-grid{grid-template-columns:1.4fr 1fr 1fr 1fr;}}
.SiteFooter-logo{height:28px;margin-bottom:1.2rem;filter:brightness(0) invert(1);}
.SiteFooter-text{font-size:.88rem;color:rgba(255,255,255,.55);line-height:1.7;}
.SiteFooter-heading{font-size:.85rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:rgba(255,255,255,.9);margin-bottom:1.2rem;}
.SiteFooter-col{display:flex;flex-direction:column;gap:.7rem;}
.SiteFooter-link{font-size:.9rem;color:rgba(255,255,255,.62);transition:color .3s ease,padding-left .3s ease;}
.SiteFooter-link:hover{color:var(--color-amber);padding-left:.3rem;}
.SiteFooter-bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:2rem;display:flex;flex-wrap:wrap;gap:1rem;justify-content:space-between;align-items:center;}
.SiteFooter-bottom p{font-size:.82rem;color:rgba(255,255,255,.45);}
.SiteFooter-cookieBtn{background:transparent;border:1px solid rgba(255,255,255,.25);color:rgba(255,255,255,.75);padding:.55rem 1.1rem;border-radius:var(--radius-full);font-size:.82rem;cursor:pointer;transition:border-color .3s ease,color .3s ease;min-height:44px;}
.SiteFooter-cookieBtn:hover{border-color:var(--color-amber);color:var(--color-amber);}

.CookieModal{position:fixed;inset:0;z-index:600;display:none;align-items:center;justify-content:center;padding:1.5rem;}
.CookieModal.is-open{display:flex;}
.CookieModal-backdrop{position:absolute;inset:0;background:rgba(10,21,38,.6);backdrop-filter:blur(3px);}
.CookieModal-panel{position:relative;background:var(--color-surface);border-radius:var(--radius-lg);max-width:560px;width:100%;max-height:88vh;overflow-y:auto;padding:2.2rem;box-shadow:var(--shadow-lg);}
.CookieModal-title{font-size:1.3rem;font-weight:700;margin-bottom:.8rem;}
.CookieModal-text{font-size:.92rem;color:var(--color-muted);margin-bottom:1.5rem;}
.CookieModal-text a{color:var(--color-primary);font-weight:600;}
.CookieModal-categories{display:flex;flex-direction:column;gap:1.1rem;margin-bottom:1.8rem;}
.CookieModal-category{border:1px solid var(--color-border);border-radius:var(--radius-md);padding:1rem 1.1rem;}
.CookieModal-categoryHead{display:flex;align-items:center;justify-content:space-between;margin-bottom:.4rem;}
.CookieModal-categoryTitle{font-weight:700;font-size:.92rem;}
.CookieModal-categoryText{font-size:.84rem;color:var(--color-muted);}
.CookieModal-switch{position:relative;display:inline-block;width:42px;height:24px;flex-shrink:0;}
.CookieModal-switch input{opacity:0;width:0;height:0;}
.CookieModal-slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#d8d5cd;border-radius:var(--radius-full);transition:background-color .3s ease;}
.CookieModal-slider::before{position:absolute;content:"";height:18px;width:18px;left:3px;bottom:3px;background-color:#fff;border-radius:50%;transition:transform .3s ease;}
.CookieModal-switch input:checked + .CookieModal-slider{background-color:var(--color-accent);}
.CookieModal-switch input:checked + .CookieModal-slider::before{transform:translateX(18px);}
.CookieModal-switch--disabled .CookieModal-slider{background-color:var(--color-primary);cursor:default;}
.CookieModal-actions{display:flex;flex-wrap:wrap;gap:.8rem;justify-content:flex-end;}

@media(max-width:640px){
  .Hero{padding-top:8rem;}
  .PageHero{padding-top:8rem;}
  .Section{padding:4rem 1.2rem;}
  .CtaBanner{padding:4rem 1.2rem;}
  .ContactForm-wrap{padding:1.6rem;}
  .Timeline--detailed .Timeline-item{padding:1.4rem;}
}