@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Manrope:wght@600;700&display=swap");

/* ========================
   Tokens
   ======================== */
:root{
  --ink-900:#111827;
  --ink-700:#374151;
  --muted-500:#6B7280;
  --border-200:#E5E7EB;
  --surface:#FFFFFF;
  --subsurface:#F6F8FB;
  --accent-600:#2563EB;
  --accent-700:#1D4ED8;

  --shadow-card:0 8px 24px rgba(17, 24, 39, 0.06);
  --shadow-card-hover:0 12px 32px rgba(17, 24, 39, 0.10);
}

/* ========================
   Base
   ======================== */
*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  background:var(--surface);
  color:var(--ink-900);
  font-family:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-size:16px;
  line-height:24px;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

a{ text-decoration:none; color:inherit; }
a:visited{ color:inherit; }

.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}

*:focus-visible{
  outline:2px solid var(--accent-600);
  outline-offset:2px;
  border-radius:8px;
}

/* ========================
   Typography
   ======================== */
h1{
  font-family:"Manrope",sans-serif;
  font-weight:700;
  font-size:44px;
  line-height:56px;
  letter-spacing:-0.02em;
  margin:0;
}
h2{
  font-family:"Manrope",sans-serif;
  font-weight:700;
  font-size:32px;
  line-height:40px;
  letter-spacing:-0.01em;
  margin:0;
}
h3{
  font-family:"Manrope",sans-serif;
  font-weight:600;
  font-size:22px;
  line-height:30px;
  margin:0;
}
h4{
  font-family:"Manrope",sans-serif;
  font-weight:600;
  font-size:16px;
  line-height:24px;
  margin:0;
}

@media (max-width:1024px){
  h1{ font-size:36px; line-height:44px; }
  h2{ font-size:28px; line-height:36px; }
}
@media (max-width:430px){
  h1{ font-size:30px; line-height:40px; }
  h2{ font-size:24px; line-height:32px; }
}

/* ========================
   Header/Navbar
   ======================== */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:var(--surface);
  border-bottom:1px solid var(--border-200);
}
.header-inner{
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.site-brand{
  display:flex;
  align-items:center;
  gap:16px;
  transition:opacity .15s ease;
}
.site-brand:hover{ opacity:.85; }
.brand-text{
  font-family:"Manrope",sans-serif;
  font-weight:700;
  font-size:18px;
  line-height:24px;
  color:var(--ink-900);
}
.site-nav{
  display:flex;
  align-items:center;
  gap:22px;
}
.nav-link{
  position:relative;
  padding:8px 0;
  font-size:16px;
  font-weight:500;
  line-height:24px;
  letter-spacing:0.2px;
  color:#0B1220;
}
.nav-link::after{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:2px;
  width:24px;
  height:2px;
  background:transparent;
  border-radius:999px;
  transition:background .15s ease;
}
.nav-link:hover::after{ background:rgba(26,76,224,0.30); }
.nav-link.is-active{ color:#1A4CE0; }
.nav-link.is-active::after{ background:#1A4CE0; }

.btn.btn-header{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:44px;
  padding:0 20px;
  border-radius:12px;
  font-size:16px;
  font-weight:500;
  line-height:24px;
  background:#1A4CE0;
  color:#fff;
  box-shadow:0 4px 12px rgba(0,0,0,0.08);
  white-space:nowrap;
}
.btn.btn-header:hover{ background:#1742C7; }

.nav-toggle{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  padding:10px;
  border-radius:10px;
}
.nav-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:var(--ink-900);
  margin:5px 0;
  border-radius:2px;
}

/* Mobile Drawer */
.mobile-nav{
  position:fixed;
  inset:0;
  background:rgba(17,24,39,0.35);
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease;
  z-index:99;
}
.mobile-nav.open{ opacity:1; pointer-events:auto; }
.mobile-panel{
  position:absolute;
  top:0;
  right:0;
  height:100%;
  width:min(360px, 90vw);
  background:var(--surface);
  border-left:1px solid var(--border-200);
  padding:18px;
  transform:translateX(100%);
  transition:transform .18s ease;
}
.mobile-nav.open .mobile-panel{ transform:translateX(0); }
.mobile-links{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:10px;
}
.m-link{
  display:block;
  padding:12px 14px;
  border-radius:12px;
  font-weight:500;
  color:var(--ink-700);
}
.m-link:hover{ background:var(--subsurface); }
.m-link.is-active{ background:var(--subsurface); color:var(--accent-600); }
.btn.btn-mobile{
  margin-top:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  height:48px;
  border-radius:12px;
  background:var(--accent-600);
  color:#fff;
  font-weight:600;
}
@media (max-width:1020px){
  .site-nav, .btn.btn-header{ display:none; }
  .nav-toggle{ display:block; }
}

/* ========================
   Page Hero
   ======================== */
.page-hero{
  background:var(--subsurface);
  border-bottom:1px solid var(--border-200);
  padding:48px 0 34px;
  text-align:center;
}
.page-hero p{
  margin:12px auto 0;
  max-width:920px;
  color:var(--ink-700);
}
.page-hero strong{ font-weight:600; }

/* ========================
   Contact Layout
   ======================== */
.contact-wrapper{
  padding:56px 0 64px;
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap:24px;
  align-items:start;
}

.contact-left h2{
  margin:0 0 8px;
}

.contact-lead{
  margin:0 0 16px;
  color:var(--ink-700);
}

.contact-meta{
  border:1px solid var(--border-200);
  border-radius:16px;
  background:var(--surface);
  box-shadow:var(--shadow-card);
  padding:14px 16px;
  margin-bottom:16px;
}

.meta-row{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:8px 0;
  border-bottom:1px solid var(--border-200);
}
.meta-row:last-child{ border-bottom:none; }

.meta-row i{
  margin-top:2px;
  color:var(--accent-600);
  width:18px;
}
.meta-row span:first-of-type{
  font-weight:700;
  color:var(--ink-900);
}
.meta-row a{
  color:var(--accent-600);
  font-weight:600;
}
.meta-row a:hover{ text-decoration:underline; }

/* Info cards */
.info-card{
  border:1px solid var(--border-200);
  border-radius:16px;
  background:var(--subsurface);
  padding:16px;
  box-shadow:var(--shadow-card);
  margin-bottom:16px;
}

.card-sub{
  margin:8px 0 0;
  color:var(--ink-700);
}

.bullet-list{
  margin:10px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.bullet-list li{
  position:relative;
  padding-left:18px;
  color:var(--ink-700);
  font-size:14px;
  line-height:20px;
  font-weight:500;
}
.bullet-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:9px;
  width:6px;
  height:6px;
  border-radius:999px;
  background:var(--accent-600);
}

.trust-line{
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid var(--border-200);
  color:var(--ink-700);
  font-size:14px;
  line-height:20px;
}

.share-note{
  margin-top:10px;
  color:var(--muted-500);
  font-size:13px;
  line-height:18px;
}

/* Right form card */
.contact-right{
  border:1px solid var(--border-200);
  border-radius:18px;
  background:var(--surface);
  box-shadow:var(--shadow-card);
  padding:18px;
}

.contact-right h3{
  margin:0 0 12px;
}

/* Honeypot (hidden) */
.hp{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  opacity:0 !important;
}

/* Form */
.contact-form{
  margin-top:10px;
}

.form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}

.field{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:12px;
}

label{
  font-size:13px;
  line-height:18px;
  color:var(--ink-900);
  font-weight:700;
}

input, select, textarea{
  border:1px solid var(--border-200);
  border-radius:12px;
  padding:12px 12px;
  font-size:14px;
  line-height:20px;
  outline:none;
  background:#fff;
  color:var(--ink-900);
}

input:focus, select:focus, textarea:focus{
  border-color:rgba(37,99,235,0.55);
  box-shadow:0 0 0 4px rgba(37,99,235,0.12);
}

textarea{
  min-height:120px;
  resize:vertical;
}

.hint{
  color:var(--muted-500);
  font-size:12px;
  line-height:16px;
}

/* ✅ Netlify reCAPTCHA spacing */
.netlify-captcha{
  margin:10px 0 14px;
}

.btn.btn-primary.submit{
  width:100%;
  height:48px;
  border-radius:14px;
  background:var(--accent-600);
  color:#fff;
  border:none;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 4px 12px rgba(0,0,0,0.08);
}
.btn.btn-primary.submit:hover{
  background:var(--accent-700);
}

.form-note{
  margin-top:10px;
  color:var(--muted-500);
  font-size:12px;
  line-height:16px;
  text-align:center;
}

/* FAQ */
.faq{
  padding:0 0 56px;
}
.faq h2{
  text-align:center;
  margin:0 0 18px;
}
.faq-item{
  border:1px solid var(--border-200);
  border-radius:14px;
  overflow:hidden;
  background:var(--surface);
  box-shadow:var(--shadow-card);
  margin-bottom:12px;
}
.faq-toggle{
  width:100%;
  text-align:left;
  background:transparent;
  border:none;
  padding:14px 16px;
  font-weight:700;
  font-size:14px;
  cursor:pointer;
}
.faq-content{
  display:none;
  padding:0 16px 14px;
  color:var(--ink-700);
  font-size:14px;
}
.faq-item.open .faq-content{
  display:block;
}

/* Final CTA */
.contact-cta{
  padding:44px 0 72px;
  background:var(--subsurface);
  border-top:1px solid var(--border-200);
  text-align:center;
}
.contact-cta h2{
  max-width:980px;
  margin:0 auto 18px;
}
.cta-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:44px;
  padding:0 20px;
  border-radius:12px;
  background:var(--accent-600);
  color:#fff;
  font-weight:600;
  box-shadow:0 4px 12px rgba(0,0,0,0.08);
}
.cta-button:hover{ background:var(--accent-700); }

/* Footer */
.site-footer{
  background:var(--surface);
  border-top:1px solid var(--border-200);
  padding:56px 24px 28px;
  color:var(--ink-700);
}
.footer-inner{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:44px;
}
.footer-brand .brand{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
  color:var(--ink-900);
  font-family:"Manrope",sans-serif;
  font-weight:700;
}
.footer-brand p{ margin:0; font-size:14px; line-height:20px; }
.footer-nav h4,
.footer-contact h4{
  margin:0 0 12px;
  color:var(--ink-900);
  font-family:"Manrope",sans-serif;
  font-weight:600;
}
.footer-nav a{
  display:block;
  margin:8px 0;
  color:var(--ink-700);
  font-size:14px;
  line-height:20px;
}
.footer-nav a:hover{ color:var(--ink-900); }
.footer-contact .email-link{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--ink-700);
}
.footer-contact img{ width:18px; height:18px; }
.socials{ display:flex; gap:12px; margin-top:12px; }
.socials img{ width:18px; height:18px; opacity:0.9; }
.footer-bottom{
  margin-top:28px;
  text-align:center;
  font-size:14px;
  line-height:20px;
  color:var(--muted-500);
}
@media (max-width:1024px){
  .footer-inner{ grid-template-columns:1fr; gap:22px; }
}

/* Responsive contact */
@media (max-width:1024px){
  .contact-wrapper{
    grid-template-columns: 1fr;
  }
  .form-grid{
    grid-template-columns: 1fr;
  }
}

/* Visited hotfix */
a.btn.btn-header:visited,
a.btn.btn-mobile:visited,
a.btn.btn-primary:visited,
a.cta-button:visited{
  color:#fff;
}