/* =========================================================
   GTTAX LLC — Design System
   Navy #102A43 | Teal #16A6A1 | BG #F8FAFC
   Headings/buttons: Sora | Body: Manrope
   ========================================================= */

:root{
  --navy:#102A43;
  --navy-700:#193C61;
  --teal:#16A6A1;
  --teal-600:#128f8a;
  --teal-100:#E3F6F5;
  --bg:#F8FAFC;
  --surface:#FFFFFF;
  --text-dark:#18212F;
  --text-muted:#52606D;
  --border:#E3E9F0;
  --radius-sm:10px;
  --radius-md:16px;
  --radius-lg:24px;
  --shadow-sm:0 1px 2px rgba(16,42,67,.06);
  --shadow-md:0 8px 24px rgba(16,42,67,.08);
  --shadow-lg:0 20px 48px rgba(16,42,67,.12);
  --container:1200px;
  --header-h:76px;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;overflow-x:hidden;width:100%;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *,*::before,*::after{animation-duration:0.01ms !important;animation-iteration-count:1 !important;transition-duration:0.01ms !important;scroll-behavior:auto !important;}
}

body{
  margin:0;
  width:100%;
  overflow-x:hidden;
  background:var(--bg);
  color:var(--text-dark);
  font-family:'Manrope',system-ui,-apple-system,sans-serif;
  font-weight:400;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3,h4,.font-heading{
  font-family:'Sora',system-ui,-apple-system,sans-serif;
  color:var(--navy);
  line-height:1.15;
  margin:0;
}

p{margin:0;}
a{color:inherit;text-decoration:none;}
ul{margin:0;padding:0;list-style:none;}
button{font-family:inherit;cursor:pointer;}
img{max-width:100%;display:block;}
svg{display:block;}

.container{max-width:var(--container);margin:0 auto;padding:0 24px;}
.muted{color:var(--text-muted);}
.visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}

.skip-link{position:absolute;left:12px;top:-60px;background:var(--navy);color:#fff;padding:10px 16px;border-radius:8px;z-index:2000;transition:top .2s ease;font-family:'Sora',sans-serif;font-weight:600;}
.skip-link:focus{top:12px;}
:focus-visible{outline:2px solid var(--teal);outline-offset:3px;}

/* ---------- Buttons ---------- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;font-family:'Sora',sans-serif;font-weight:600;font-size:15px;padding:14px 24px;border-radius:12px;border:1.5px solid transparent;transition:transform .15s ease, background-color .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;white-space:nowrap;}
.btn:active{transform:translateY(1px);}
.btn-primary{background:var(--teal);color:#fff;box-shadow:var(--shadow-sm);}
.btn-primary:hover{background:var(--teal-600);}
.btn-secondary{background:transparent;color:var(--navy);border-color:var(--border);}
.btn-secondary:hover{border-color:var(--navy);background:rgba(16,42,67,.04);}
.btn-outline-light{background:transparent;color:#fff;border-color:rgba(255,255,255,.55);}
.btn-outline-light:hover{background:rgba(255,255,255,.1);border-color:#fff;}
.btn-on-navy{background:var(--teal);color:#fff;}
.btn-on-navy:hover{background:#12b8b1;}
.btn-block{width:100%;}
.btn[disabled]{opacity:.6;cursor:not-allowed;}

/* ---------- Logo ---------- */
.logo{display:flex;align-items:center;gap:10px;}
.logo-lockup-img{height:42px;width:auto;display:block;}
.footer-logo-chip{display:inline-flex;background:#fff;border-radius:12px;padding:14px 20px;box-shadow:var(--shadow-sm);}
.footer-logo-img{height:44px;width:auto;display:block;}

/* ---------- Header ---------- */
.site-header{position:sticky;top:0;z-index:1000;background:rgba(248,250,252,.9);backdrop-filter:saturate(180%) blur(10px);border-bottom:1px solid transparent;transition:box-shadow .25s ease, border-color .25s ease, background-color .25s ease;}
.site-header.is-stuck{background:rgba(248,250,252,.97);border-bottom-color:var(--border);box-shadow:var(--shadow-sm);}
.header-inner{height:var(--header-h);display:flex;align-items:center;justify-content:space-between;gap:20px;}
.main-nav{display:flex;align-items:center;gap:2px;}
.main-nav a{font-family:'Sora',sans-serif;font-weight:600;font-size:14.5px;color:var(--text-dark);padding:10px 14px;border-radius:8px;transition:color .15s ease, background-color .15s ease;}
.main-nav a:hover{color:var(--teal-600);background:rgba(22,166,161,.08);}
.main-nav a[aria-current="page"]{color:var(--teal-600);background:rgba(22,166,161,.1);}
.header-actions{display:flex;align-items:center;gap:10px;}

.lang-switch{display:flex;align-items:center;gap:2px;background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:3px;}
.lang-switch button{border:none;background:transparent;font-family:'Sora',sans-serif;font-weight:700;font-size:12.5px;letter-spacing:.02em;color:var(--text-muted);padding:7px 10px;border-radius:7px;transition:background-color .15s ease,color .15s ease;}
.lang-switch button:hover{color:var(--navy);}
.lang-switch button[aria-pressed="true"]{background:var(--navy);color:#fff;}

.mobile-nav-scroll{display:none;}

@media (max-width: 900px){
  .header-inner{height:auto;min-height:var(--header-h);flex-wrap:wrap;row-gap:8px;padding:12px 0;}
  .logo-lockup-img{height:32px;}
  .main-nav{display:none;}
  .header-actions{gap:6px;}
  .header-actions .lang-switch{padding:2px;}
  .header-actions .lang-switch button{padding:4px 6px;font-size:9.5px;}
  .header-actions .btn-primary{display:inline-flex;padding:8px 12px;font-size:11px;white-space:normal;text-align:center;}

  .mobile-nav-scroll{
    display:flex;
    align-items:center;
    gap:2px;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    -ms-overflow-style:none;
    white-space:nowrap;
    margin:0 -24px;
    padding:0 24px 10px;
    border-top:1px solid var(--border);
  }
  .mobile-nav-scroll::-webkit-scrollbar{display:none;}
  .mobile-nav-scroll a{
    flex:0 0 auto;
    font-family:'Sora',sans-serif;
    font-weight:600;
    font-size:13.5px;
    color:var(--text-dark);
    padding:10px 12px 8px;
    white-space:nowrap;
  }
  .mobile-nav-scroll a[aria-current="page"]{color:var(--teal-600);}
}

/* ---------- Sections ---------- */
section{padding:96px 0;}
@media (max-width:768px){section{padding:64px 0;}}
.section-head{max-width:680px;margin:0 0 48px;}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center;}
.eyebrow{display:inline-flex;align-items:center;gap:8px;font-family:'Sora',sans-serif;font-weight:700;font-size:12.5px;letter-spacing:.08em;text-transform:uppercase;color:var(--teal-600);margin-bottom:16px;}
.eyebrow::before{content:"";width:22px;height:2px;background:var(--teal);border-radius:2px;}
.section-head.center .eyebrow::before{display:none;}
h2.section-title{font-size:clamp(28px,3.4vw,40px);font-weight:700;margin-bottom:16px;}
.section-lede{font-size:17px;color:var(--text-muted);max-width:640px;}

/* ---------- Hero (home) — video background ---------- */
.hero{padding:72px 0 64px;overflow:hidden;position:relative;}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600'%3E%3Cg fill='none' stroke='%23102A43' stroke-width='1'%3E%3Cline x1='0' y1='60' x2='600' y2='60'/%3E%3Cline x1='0' y1='140' x2='600' y2='140'/%3E%3Cline x1='0' y1='220' x2='600' y2='220'/%3E%3Cline x1='0' y1='300' x2='600' y2='300'/%3E%3Cline x1='0' y1='380' x2='600' y2='380'/%3E%3Cline x1='0' y1='460' x2='600' y2='460'/%3E%3Cline x1='0' y1='540' x2='600' y2='540'/%3E%3Cline x1='120' y1='0' x2='120' y2='600'/%3E%3Cline x1='240' y1='0' x2='240' y2='600'/%3E%3Cline x1='360' y1='0' x2='360' y2='600'/%3E%3Cline x1='480' y1='0' x2='480' y2='600'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat:repeat;
  background-size:600px 600px;
  opacity:0.045;
  pointer-events:none;
}

.hero--video{padding:0;min-height:640px;width:100%;display:flex;align-items:center;background:var(--navy);}
.hero--video::before{display:none;}
.hero-video{position:absolute;top:0;left:0;right:0;bottom:0;width:100%;height:100%;object-fit:cover;object-position:center;z-index:0;}
.hero-video-overlay{
  position:absolute;
  top:0;left:0;right:0;bottom:0;
  width:100%;height:100%;
  z-index:1;
  background:linear-gradient(100deg, rgba(10,26,44,.86) 0%, rgba(10,26,44,.74) 48%, rgba(10,26,44,.58) 100%);
}
.hero-content{position:relative;z-index:2;padding:110px 0;width:100%;}
.hero--video .hero-copy{max-width:640px;}
.hero--video .hero-copy .eyebrow{color:#7FE0DB;}
.hero--video .hero-copy .eyebrow::before{background:#7FE0DB;}
.hero--video .hero-copy h1{color:#fff;}
.hero--video .hero-copy p{color:rgba(255,255,255,.82);}
.hero--video .hero-copy .hero-lang-line{color:#fff;}
.hero--video .hero-trust-item{color:#fff;}
.hero--video .hero-trust-item svg{color:#7FE0DB;}

.hero-copy h1{font-size:clamp(34px,4.6vw,56px);font-weight:700;margin-bottom:22px;letter-spacing:-.01em;}
.hero-copy p{color:var(--text-muted);font-size:18px;margin-bottom:14px;max-width:560px;}
.hero-copy .hero-lang-line{color:var(--navy);font-weight:600;font-size:15.5px;margin-bottom:32px;}
.hero-cta-row{display:flex;flex-wrap:wrap;gap:14px;margin-bottom:36px;}
.hero-trust{display:flex;flex-wrap:wrap;gap:22px 28px;}
.hero-trust-item{display:flex;align-items:center;gap:9px;font-family:'Sora',sans-serif;font-weight:600;font-size:13.5px;color:var(--navy);}
.hero-trust-item svg{flex:0 0 auto;color:var(--teal);}

@media (max-width:700px){
  .hero--video{min-height:auto;}
  .hero-content{padding:24px 0 20px;}
  .hero-video-overlay{background:rgba(9,23,39,.91);}
  .hero--video .hero-copy{max-width:100%;}
  .hero--video .hero-copy .eyebrow{font-size:9.5px;margin-bottom:8px;line-height:1.4;}
  .hero--video .hero-copy h1{font-size:clamp(20px,6vw,24px);font-weight:800;line-height:1.22;margin-bottom:10px;letter-spacing:-.01em;text-shadow:0 2px 14px rgba(0,0,0,.45);}
  .hero--video .hero-copy p{font-size:12.5px;line-height:1.5;margin-bottom:6px;max-width:none;}
  .hero--video .hero-copy .hero-lang-line{font-size:11.5px;font-weight:700;margin-bottom:14px;}
  .hero--video .hero-cta-row{flex-direction:row;flex-wrap:wrap;gap:8px;margin-bottom:0;}
  .hero--video .hero-cta-row .btn{flex:1 1 calc(50% - 4px);width:auto;padding:10px 8px;font-size:11px;white-space:normal;}
}

/* ---------- Page header (inner pages) ---------- */
.page-hero{padding:56px 0 48px;background:var(--navy);position:relative;overflow:hidden;}
.page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600'%3E%3Cg fill='none' stroke='%23FFFFFF' stroke-width='1'%3E%3Cline x1='0' y1='60' x2='600' y2='60'/%3E%3Cline x1='0' y1='140' x2='600' y2='140'/%3E%3Cline x1='0' y1='220' x2='600' y2='220'/%3E%3Cline x1='0' y1='300' x2='600' y2='300'/%3E%3Cline x1='0' y1='380' x2='600' y2='380'/%3E%3Cline x1='0' y1='460' x2='600' y2='460'/%3E%3Cline x1='0' y1='540' x2='600' y2='540'/%3E%3Cline x1='120' y1='0' x2='120' y2='600'/%3E%3Cline x1='240' y1='0' x2='240' y2='600'/%3E%3Cline x1='360' y1='0' x2='360' y2='600'/%3E%3Cline x1='480' y1='0' x2='480' y2='600'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat:repeat;
  background-size:600px 600px;
  opacity:0.06;
  pointer-events:none;
}
.page-hero .container{position:relative;}
.page-hero .eyebrow{color:#7FE0DB;}
.page-hero .eyebrow::before{background:#7FE0DB;}
.page-hero h1{color:#fff;font-size:clamp(30px,4vw,44px);margin-bottom:14px;}
.page-hero p{color:rgba(255,255,255,.78);font-size:17px;max-width:640px;margin:0;}
.breadcrumb{display:flex;align-items:center;gap:8px;font-family:'Sora',sans-serif;font-weight:600;font-size:13px;color:rgba(255,255,255,.6);margin-bottom:18px;}
.breadcrumb a{color:rgba(255,255,255,.85);}
.breadcrumb a:hover{color:#fff;}

/* ---------- Trust strip ---------- */
.trust-strip{padding:28px 0;background:var(--surface);border-top:1px solid var(--border);border-bottom:1px solid var(--border);}
.trust-strip .container{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
.trust-strip-item{display:flex;align-items:center;gap:12px;}
.trust-strip-item .icon-wrap{width:38px;height:38px;border-radius:10px;background:var(--teal-100);color:var(--teal-600);display:flex;align-items:center;justify-content:center;flex:0 0 auto;}
.trust-strip-item span{font-family:'Sora',sans-serif;font-weight:600;font-size:13.5px;color:var(--navy);line-height:1.3;}
@media (max-width:900px){.trust-strip .container{grid-template-columns:repeat(2,1fr);}}
@media (max-width:520px){.trust-strip .container{grid-template-columns:1fr;}}

/* ---------- Services ---------- */
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.service-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-md);padding:32px 28px;transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;}
.service-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);border-color:rgba(22,166,161,.35);}
.service-icon{width:52px;height:52px;border-radius:14px;background:var(--navy);color:var(--teal);display:flex;align-items:center;justify-content:center;margin-bottom:20px;transition:background-color .2s ease;}
.service-card:hover .service-icon{background:var(--teal);color:#fff;}
.service-card h3{font-size:19px;margin-bottom:10px;}
.service-card p{color:var(--text-muted);font-size:15px;margin-bottom:18px;}
.service-link{display:inline-flex;align-items:center;gap:6px;font-family:'Sora',sans-serif;font-weight:700;font-size:14px;color:var(--teal-600);}
.service-link svg{transition:transform .15s ease;}
.service-card:hover .service-link svg{transform:translateX(3px);}
@media (max-width:980px){.services-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:640px){.services-grid{grid-template-columns:1fr;}}

/* ---------- Consultation banner ---------- */
.consult-banner{background:var(--navy);color:#fff;border-radius:var(--radius-lg);padding:64px;position:relative;overflow:hidden;}
.consult-banner::before{content:"";position:absolute;right:-80px;top:-80px;width:280px;height:280px;border-radius:50%;background:radial-gradient(circle, rgba(22,166,161,.35), transparent 70%);}
.consult-inner{position:relative;max-width:680px;}
.consult-banner h2{color:#fff;font-size:clamp(26px,3.2vw,36px);margin-bottom:18px;}
.consult-banner p{color:rgba(255,255,255,.82);font-size:17px;margin-bottom:16px;}
.consult-banner .consult-note{font-size:14.5px;color:rgba(255,255,255,.7);border-left:2px solid var(--teal);padding-left:14px;margin:20px 0 32px;}
.consult-disclaimer{margin-top:24px;font-size:12.5px;color:rgba(255,255,255,.55);max-width:620px;}
@media (max-width:640px){.consult-banner{padding:40px 28px;}}

/* ---------- Why GTTAX ---------- */
.why-grid{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;}
.why-grid--full{grid-template-columns:1fr;}
.benefit-list{display:flex;flex-direction:column;gap:18px;}
.benefit-list--grid{display:grid;grid-template-columns:1fr 1fr;gap:18px;}
.benefit-card{display:flex;gap:16px;background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-md);padding:22px 24px;}
.benefit-card .icon-wrap{width:44px;height:44px;border-radius:12px;flex:0 0 auto;background:var(--teal-100);color:var(--teal-600);display:flex;align-items:center;justify-content:center;}
.benefit-card h3{font-size:16.5px;margin-bottom:6px;}
.benefit-card p{color:var(--text-muted);font-size:14.5px;}
.why-visual svg{width:100%;height:auto;}
@media (max-width:900px){.why-grid{grid-template-columns:1fr;}.why-visual{order:-1;max-width:360px;margin:0 auto;}.benefit-list--grid{grid-template-columns:1fr;}}

/* ---------- About ---------- */
.about-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:56px;align-items:start;}
.about-portrait{aspect-ratio:4/5;border-radius:var(--radius-lg);overflow:hidden;position:relative;background:var(--navy);}
.about-portrait img{width:100%;height:100%;object-fit:cover;display:block;}
.about-copy .kicker{font-family:'Sora',sans-serif;font-weight:700;color:var(--teal-600);font-size:14px;margin-bottom:10px;}
.about-copy h2{margin-bottom:22px;}
.about-copy p{color:var(--text-muted);font-size:16px;margin-bottom:16px;}
.credential-block{margin-top:28px;background:var(--teal-100);border-radius:var(--radius-md);padding:22px 24px;display:flex;gap:16px;align-items:flex-start;}
.credential-block .icon-wrap{width:42px;height:42px;border-radius:10px;background:var(--navy);color:var(--teal);display:flex;align-items:center;justify-content:center;flex:0 0 auto;}
.credential-block h3{font-size:16px;margin-bottom:4px;color:var(--navy);}
.credential-block p{font-size:14px;color:var(--text-muted);margin:0;}
@media (max-width:900px){.about-grid{grid-template-columns:1fr;}.about-portrait{max-width:320px;margin:0 auto;}}

/* ---------- Compact profile row (circular photo) ---------- */
.profile-row{display:flex;align-items:flex-start;gap:40px;}
.profile-photo{flex:0 0 auto;width:180px;height:180px;border-radius:50%;overflow:hidden;box-shadow:0 0 0 4px var(--bg),0 0 0 5px var(--border);}
.profile-photo img{width:100%;height:100%;object-fit:cover;object-position:center 15%;display:block;}
.profile-row .about-copy{flex:1;}
@media (max-width:700px){.profile-row{flex-direction:column;align-items:center;}.profile-photo{width:140px;height:140px;}}

/* ---------- Language badges (Veronika) ---------- */
.lang-badges{display:flex;flex-wrap:wrap;gap:10px;margin-top:4px;}
.lang-badge{font-family:'Sora',sans-serif;font-weight:700;font-size:12.5px;letter-spacing:.02em;color:var(--navy);background:var(--teal-100);border-radius:999px;padding:8px 16px;}

/* ---------- Bilingual community ---------- */
.bilingual-section{background:var(--surface);border-top:1px solid var(--border);border-bottom:1px solid var(--border);}
.lang-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin:40px 0 28px;}
.lang-card{border:1px solid var(--border);border-radius:var(--radius-md);padding:28px 20px;text-align:center;background:var(--bg);}
.lang-card svg{margin:0 auto 14px;color:var(--teal-600);}
.lang-card span{font-family:'Sora',sans-serif;font-weight:700;font-size:17px;color:var(--navy);}
.bilingual-footnote{text-align:center;color:var(--text-muted);font-size:14.5px;max-width:560px;margin:0 auto;}
@media (max-width:640px){.lang-cards{grid-template-columns:1fr;}}

/* ---------- Process ---------- */
.process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-bottom:40px;}
.process-step{position:relative;padding-top:8px;}
.process-num{font-family:'Sora',sans-serif;font-weight:700;font-size:14px;color:#fff;background:var(--navy);width:34px;height:34px;border-radius:50%;display:flex;align-items:center;justify-content:center;margin-bottom:18px;}
.process-step h3{font-size:16.5px;margin-bottom:8px;}
.process-step p{color:var(--text-muted);font-size:14.5px;}
.process-cta{text-align:center;}
@media (max-width:900px){.process-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:520px){.process-grid{grid-template-columns:1fr;}}

/* ---------- Resources ---------- */
.resources-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-bottom:36px;}
.resource-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-md);padding:28px;display:flex;flex-direction:column;gap:14px;transition:box-shadow .2s ease, transform .2s ease;}
.resource-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-md);}
.resource-card .icon-wrap{width:44px;height:44px;border-radius:12px;background:var(--teal-100);color:var(--teal-600);display:flex;align-items:center;justify-content:center;}
.resource-card h3{font-size:17px;}
.resource-card .resource-note{font-size:12px;color:var(--text-muted);font-style:italic;}
.resources-cta{text-align:center;}
@media (max-width:900px){.resources-grid{grid-template-columns:1fr;}}

/* ---------- FAQ ---------- */
.faq-list{max-width:820px;margin:0 auto;display:flex;flex-direction:column;gap:12px;}
.faq-item{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-md);overflow:hidden;}
.faq-question{width:100%;display:flex;align-items:center;justify-content:space-between;gap:16px;padding:20px 24px;background:transparent;border:none;font-family:'Sora',sans-serif;font-weight:600;font-size:16px;color:var(--navy);text-align:left;}
.faq-question .chevron{flex:0 0 auto;transition:transform .2s ease;color:var(--teal-600);}
.faq-item[data-open="true"] .chevron{transform:rotate(180deg);}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .25s ease;}
.faq-answer-inner{padding:0 24px 22px;color:var(--text-muted);font-size:15px;max-width:680px;}

/* ---------- Contact ---------- */
.contact-section{background:var(--surface);}
.contact-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:56px;align-items:start;}
.contact-copy h2{margin-bottom:16px;}
.contact-copy > p{color:var(--text-muted);font-size:16px;margin-bottom:32px;}
.contact-detail-list{display:flex;flex-direction:column;gap:20px;margin-bottom:28px;}
.contact-detail{display:flex;gap:14px;align-items:flex-start;}
.contact-detail .icon-wrap{width:40px;height:40px;border-radius:10px;flex:0 0 auto;background:var(--teal-100);color:var(--teal-600);display:flex;align-items:center;justify-content:center;}
.contact-detail .label{font-family:'Sora',sans-serif;font-weight:700;font-size:13px;color:var(--navy);margin-bottom:2px;}
.contact-detail .value{font-size:15px;color:var(--text-muted);}
.privacy-note{background:var(--teal-100);border-radius:var(--radius-sm);padding:16px 18px;font-size:13.5px;color:#0d4a48;margin-top:28px;border-left:3px solid var(--teal);}
.contact-form-card{background:var(--bg);border:1px solid var(--border);border-radius:var(--radius-lg);padding:36px;}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:18px;}
.form-group{margin-bottom:18px;}
.form-group label{display:block;font-family:'Sora',sans-serif;font-weight:600;font-size:13.5px;color:var(--navy);margin-bottom:7px;}
.form-group input,.form-group select,.form-group textarea{width:100%;font-family:'Manrope',sans-serif;font-size:15px;color:var(--text-dark);background:#fff;border:1.5px solid var(--border);border-radius:10px;padding:12px 14px;transition:border-color .15s ease, box-shadow .15s ease;}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--teal);box-shadow:0 0 0 3px rgba(22,166,161,.15);}
.form-group textarea{resize:vertical;min-height:110px;}
.form-checkbox{display:flex;gap:10px;align-items:flex-start;margin-bottom:22px;}
.form-checkbox input{width:18px;height:18px;margin-top:2px;flex:0 0 auto;accent-color:var(--teal);}
.form-checkbox label{font-size:13.5px;color:var(--text-muted);font-weight:500;}
.form-fineprint{font-size:12.5px;color:var(--text-muted);margin-top:14px;text-align:center;}
.form-status{margin-top:14px;padding:12px 14px;border-radius:10px;font-size:14px;font-weight:600;display:none;}
.form-status.success{display:block;background:var(--teal-100);color:#0d4a48;}
.form-status.error{display:block;background:#FDEEEE;color:#9B2C2C;}
@media (max-width:900px){.contact-grid{grid-template-columns:1fr;}.contact-form-card{padding:26px;}}
@media (max-width:560px){.form-row{grid-template-columns:1fr;}}

/* ---------- Footer ---------- */
.site-footer{background:var(--navy);color:rgba(255,255,255,.75);padding:64px 0 28px;}
.footer-top{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:40px;padding-bottom:44px;border-bottom:1px solid rgba(255,255,255,.12);}
.footer-brand p{margin-top:14px;font-size:14px;max-width:260px;color:rgba(255,255,255,.6);}
.footer-col h4{font-family:'Sora',sans-serif;font-weight:700;font-size:13px;letter-spacing:.05em;text-transform:uppercase;color:#fff;margin-bottom:16px;}
.footer-col ul{display:flex;flex-direction:column;gap:10px;}
.footer-col a{font-size:14.5px;color:rgba(255,255,255,.7);transition:color .15s ease;}
.footer-col a:hover{color:var(--teal);}
.footer-bottom{padding-top:28px;display:flex;flex-wrap:wrap;gap:16px;align-items:flex-start;justify-content:space-between;}
.footer-lang-links{display:flex;gap:10px;font-size:13.5px;}
.footer-lang-links button{background:none;border:none;color:rgba(255,255,255,.7);font-family:'Manrope',sans-serif;font-size:13.5px;padding:0;}
.footer-lang-links button[aria-pressed="true"]{color:var(--teal);font-weight:700;}
.footer-legal{font-size:12.5px;color:rgba(255,255,255,.5);max-width:900px;margin-top:22px;line-height:1.6;}
.footer-copyright{font-size:13px;color:rgba(255,255,255,.5);margin-top:14px;}
@media (max-width:900px){.footer-top{grid-template-columns:1fr 1fr;}}
@media (max-width:560px){.footer-top{grid-template-columns:1fr;}}

/* ---------- Reveal ---------- */
.reveal{opacity:0;transform:translateY(16px);transition:opacity .5s ease, transform .5s ease;}
.reveal.is-visible{opacity:1;transform:translateY(0);}
@media (prefers-reduced-motion: reduce){.reveal{opacity:1;transform:none;transition:none;}}

/* ---------- Home page section CTAs ---------- */
.home-section-cta{text-align:center;margin-top:40px;}

/* ---------- Legal pages (Terms / Privacy) ---------- */
.legal-section{background:var(--surface);}
.legal-content{max-width:800px;margin:0 auto;}
.legal-content .effective-date{display:inline-flex;align-items:center;gap:8px;font-family:'Sora',sans-serif;font-weight:700;font-size:12.5px;letter-spacing:.02em;color:var(--teal-600);background:var(--teal-100);border-radius:999px;padding:8px 16px;margin-bottom:36px;}
.legal-content .legal-intro{font-size:16px;color:var(--text-muted);margin-bottom:8px;}
.legal-content h2{font-size:19px;margin:40px 0 12px;}
.legal-content h2:first-of-type{margin-top:0;}
.legal-content p{color:var(--text-muted);font-size:15.5px;margin-bottom:14px;}
.legal-content ul{margin:0 0 14px;padding-left:0;display:flex;flex-direction:column;gap:8px;}
.legal-content ul li{position:relative;padding-left:22px;color:var(--text-muted);font-size:15.5px;}
.legal-content ul li::before{content:"";position:absolute;left:0;top:9px;width:6px;height:6px;border-radius:50%;background:var(--teal);}
.legal-content .contact-block{background:var(--bg);border:1px solid var(--border);border-radius:var(--radius-md);padding:22px 26px;margin-top:8px;}
.legal-content .contact-block p{margin-bottom:4px;color:var(--text-dark);font-size:15px;}
.legal-content .contact-block p.contact-block-name{font-family:'Sora',sans-serif;font-weight:700;color:var(--navy);margin-bottom:8px;}
@media (max-width:640px){.legal-content h2{font-size:17.5px;}.legal-content p, .legal-content ul li{font-size:15px;}}
