:root{
  /* Approx colors from your logo */
  --teal: #0b6b7d;
  --teal-dark:#064957;
  --green:#8cc63f;

  --text:#eaf2f5;
  --muted:#a8bcc3;
  --border: rgba(255,255,255,.10);
  --shadow: 0 18px 45px rgba(0,0,0,.35);
  --radius: 18px;

  --focus: rgba(140,198,63,.60);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ transition:none !important; animation:none !important; }
}

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 20% -10%, rgba(140,198,63,.22), transparent 55%),
    radial-gradient(900px 600px at 90% 0%, rgba(11,107,125,.28), transparent 55%),
    linear-gradient(180deg, #081014 0%, #070d10 35%, #060b0d 100%);
  background-repeat:no-repeat;
  background-size:cover;
  min-height: 100dvh;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

:focus-visible{
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 10px;
}

.container{
  width:min(1100px, calc(100% - 40px));
  margin-inline:auto;
}

/* Better anchor scrolling under sticky header */
section[id]{ scroll-margin-top: 96px; }

.skip-link{
  position:absolute; left:-999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  position:fixed; left:16px; top:16px;
  width:auto; height:auto; padding:10px 12px;
  background: rgba(15,23,27,.95);
  border:1px solid var(--border);
  border-radius:12px; z-index:9999;
}

/* Header */
.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(6,11,13,.65);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brand{
  display:flex; align-items:center; gap:12px;
  min-width: 220px;
}
.brand-logo{
  width:80px;
  height:80px;
  object-fit:contain;
  padding:0;
  background:none;
  border:none;
  border-radius:0;
}
.brand-text{ line-height:1.1; }
.brand-name{ font-weight:800; letter-spacing:.2px; }
.brand-tagline{ color:var(--muted); font-weight:600; font-size:.92rem; }

.nav{
  display:flex; align-items:center; gap:16px;
}
.nav a{
  color:var(--text);
  opacity:.9;
  font-weight:600;
}
.nav a:hover{ opacity:1; }

.nav-toggle{
  display:none;
  width:44px; height:44px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width:18px; height:2px;
  background: var(--text);
  margin:4px auto;
  border-radius:2px;
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius: 14px;
  border:1px solid transparent;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  font-weight:800;
  letter-spacing:.2px;
  text-decoration:none !important;
  transition: filter .15s ease, transform .05s ease;
}
.btn:hover{ filter: brightness(1.08); }
.btn:active{ transform: translateY(1px); }
.btn:disabled{
  opacity:.7;
  cursor:not-allowed;
  filter:saturate(.9);
}

.btn-ghost{
  background: rgba(255,255,255,.05);
  border:1px solid var(--border);
  box-shadow:none;
  font-weight:800;
}
.btn-small{ padding:10px 12px; border-radius: 12px; }
.btn-wide{ width:100%; }

/* Sections */
.section{ padding:72px 0; }
.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section-contact{
  background:
    radial-gradient(800px 450px at 30% 30%, rgba(140,198,63,.14), transparent 60%),
    radial-gradient(900px 520px at 80% 20%, rgba(11,107,125,.20), transparent 60%);
  border-top:1px solid var(--border);
}

.section-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:18px; flex-wrap:wrap;
  margin-bottom:26px;
}

/* Fix the contact “offset” look: keep title + subtitle together */
.section-head-contact{
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
  gap:8px;
}

h1,h2,h3{ margin:0 0 10px; }
h1{
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  line-height:1.05;
  letter-spacing: -.5px;
}
h2{
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  letter-spacing: -.3px;
}
h3{ font-size:1.1rem; }

.lead{
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 620px;
}
.muted{ color: var(--muted); }
.small{ font-size: .92rem; }

/* Hero */
.hero{ padding:64px 0 30px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:26px;
  align-items:start;
}

.badge{
  display:inline-flex;
  gap:10px;
  padding:8px 12px;
  border-radius: 999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-weight:700;
  margin: 0 0 14px;
}
.hero-cta{ display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 12px; }

.hero-points{
  list-style:none; padding:0; margin:14px 0 0;
  display:grid; gap:8px;
  color: var(--muted);
  font-weight:600;
}

.hero-card{
  background: rgba(255,255,255,.04);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.contact-card{ margin:10px 0 14px; }
.cc-row{
  display:flex; justify-content:space-between; gap:12px;
  padding:10px 0;
  border-bottom: 1px dashed rgba(255,255,255,.10);
}
.cc-row:last-child{ border-bottom:none; }
.cc-label{ color:var(--muted); font-weight:700; }
.cc-value{ font-weight:800; }

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.card{
  background: rgba(255,255,255,.04);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
}
.card p{ color:var(--muted); line-height:1.55; }

.bullets{
  margin:12px 0 0;
  padding-left:18px;
  color: var(--muted);
}
.bullets li{ margin:6px 0; }

.split{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:start;
}

.checklist{
  list-style:none; padding:0; margin:14px 0 0;
  display:grid; gap:10px;
  color: var(--muted);
  font-weight:650;
}
.checklist li{
  padding-left: 26px;
  position:relative;
}
.checklist li:before{
  content:"";
  position:absolute; left:0; top:5px;
  width:16px; height:16px;
  border-radius: 6px;
  background: rgba(140,198,63,.18);
  border: 1px solid rgba(140,198,63,.55);
  box-shadow: 0 0 0 3px rgba(140,198,63,.08);
}

.stats{
  display:grid;
  gap:12px;
}
.stat{
  background: rgba(255,255,255,.04);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:16px;
}
.stat-number{
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -.4px;
  background: linear-gradient(90deg, var(--green), #d7ff9a);
  -webkit-background-clip: text;
  background-clip:text;
  color:transparent;
}
.stat-label{ color:var(--muted); font-weight:650; margin-top:6px; }

/* About */
.about{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:16px;
  align-items:start;
}
.about-box{
  background: rgba(255,255,255,.04);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:16px;
}

.about-highlights{
  display:flex; flex-wrap:wrap; gap:10px;
  margin-top:14px;
}
.pill{
  border:1px solid rgba(140,198,63,.45);
  background: rgba(140,198,63,.12);
  color: #d8ffb0;
  padding:8px 10px;
  border-radius: 999px;
  font-weight:800;
  font-size:.92rem;
}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:26px;
  align-items:start;
}

.contact-panel{
  background: rgba(255,255,255,.04);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
}
.contact-lines{ display:grid; gap:10px; margin-top:10px; }

.note{
  margin-top:14px;
  padding:12px;
  border-radius: 14px;
  border:1px solid rgba(11,107,125,.35);
  background: rgba(11,107,125,.12);
  color: var(--muted);
  font-weight:650;
  line-height: 1.5;
}
.note strong{ color: var(--text); }

.form{
  background: rgba(255,255,255,.04);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
}
.field{ display:grid; gap:8px; margin-bottom:12px; }
label{ font-weight:800; }
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(140,198,63,.55);
  box-shadow: 0 0 0 4px rgba(140,198,63,.12);
}

/* Hide honeypot */
.hidden{
  position:absolute !important;
  left:-9999px !important;
  top:auto !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
}

/* Footer */
.footer{
  border-top:1px solid var(--border);
  padding:20px 0;
  background: rgba(0,0,0,.25);
}
.footer-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; flex-wrap:wrap;
}
.footer-brand{
  display:flex; align-items:center; gap:10px;
}
.footer-brand img{
  width:34px; height:34px; object-fit:contain;
  border-radius:10px;
  background: rgba(255,255,255,.06);
  padding:5px;
  border:1px solid var(--border);
}
.footer-name{ font-weight:900; }
.footer-links{ display:flex; gap:14px; }
.footer-links a{ color:var(--muted); font-weight:700; }
.footer-links a:hover{ color:var(--text); }

/* Thank-you page */
.thankyou{
  min-height: 70vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 40px 0;
}
.thankyou-card{
  width: min(720px, 100%);
  background: rgba(255,255,255,.04);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.thankyou-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 14px;
}

/* Responsive */
@media (max-width: 980px){
  .cards{ grid-template-columns: repeat(2, 1fr); }
  .hero-grid{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .about{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 720px){
  .nav-toggle{ display:inline-block; }
  .nav{
    position:fixed;
    right:20px; top:74px;
    width:min(320px, calc(100% - 40px));
    background: rgba(10,16,19,.92);
    border:1px solid var(--border);
    border-radius: 18px;
    padding:12px;
    box-shadow: var(--shadow);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
  }
  .nav.open{ display:flex; }
  .nav a{ padding:10px 10px; border-radius: 12px; }
  .nav a:hover{ background: rgba(255,255,255,.05); text-decoration:none; }

  .header-inner{ padding:12px 0; }
  .brand-logo{ width:56px; height:56px; }
}
