:root{
    --bg: #6b6c6e;
    --panel: #3a3f4f;
    --ink:#eef1f5;
    --muted:#b9c0cc;
    --brand:#4aa3ff;
    --brand-ink:#002a55;
    --accent:#93ff4a;
    --shadow: 0 8px 24px rgba(0,0,0,.25);
}

* { box-sizing: border-box; }
html, body { margin:0; }
body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #3aa7b0, #0b0d12 40%, #474949);
    line-height: 1.55;    
}
.container { width: min(1100px, 92vw); margin: 0 auto; }

.site-header {
    position: sticky; top:0; z-index: 50;
    background: rgba(10,12,16,.8);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner { display:flex; align-items:center; gap:16px; padding: 12px 0; }
.brand { display:flex; align-items: center; gap:12px; color:var(--ink); text-decoration:none; font-weight:700; }
.brand img { border-radius: 8px; background: #ffffff14; }

.site-nav { margin-left: auto; display:flex; gap:16px; align-items: center; }
.site-nav a {color: var(--ink); text-decoration:none; padding:8px 10px; border-radius:8px; } 
.site-nav a:hover { background:#ffffff14; }
.site-nav a.active { background:#ffffff10; outline: 1px solid #ffffff22; }

.btn {
    background: var(--brand);
    color: var(--brand-ink);
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: var(--shadow);
}
.btn:hover { filter: brightness(1.05); }
.btn.ghost { background: transparent; color: var(--ink); outline: 1px solid #ffffff33; box-shadow:none; }

.nav-toggle { display:none; margin-left:auto; font-size:22px; background:transparent; color:var(--ink); border:0; padding:8px; }

.hero { padding: clamp(32px, 6vw, 72px) 0; }
.hero-inner { display:grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items:center; }
.hero-copy h1 { font-size: clamp(28px, 4.6vw, 56px); line-height:1.05; margin:0 0 10px; letter-spacing:.3px; }
.hero-copy p { color: var(--muted); font-size: clamp(16px, 1.6vw, 18px); }
.hero-cta {display:flex; gap:12px; margin: 18px 0 8px; }
.trust-bullets {margin: 14px 0 0; padding-left: 18px; color: var(--muted); }
.hero-art img { width:100%; border-radius:16px; box-shadow: var(--shadow);object-fit: cover; aspect-ratio: 4/3; }

.highlights { padding: 36px 0 24px; }
.highlights h2 { font-size: 28px; margin-bottom: 12px; }
.cards { display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; }
.cards {
    background: var(--panel);
    padding: 16px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    border: 1px solid #ffffff14;
}
.card h3 { margin: 0 0 6px; }

.cta-band { margin: 28px 0 14px; }
.cta-band-inner {
    background: linear-gradient(180dg, #15203a, #10182a);
    border:1px solid #ffffff1a;
    border-radius: 14px;
    padding: 18px;
    display:flex; align-items:center; justify-content: space-between;
    box-shadow: var(--shadow);
}
.cta-band p { margin:0; font-weight:700; }

.ba-grid {display:grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 6px; }
.ba-pair {
    background: var(--panel);
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #ffffff14;
    box-shadow: var(--shadow);
}
.ba-pair img { width:100%; display:block; border-radius: 10px; }
.ba-pair figcaption { color: var(--muted); font-size: 14px; margin-top: 6px; }

.lead {color: var(--muted); }

.testimonials { display:grid; gap: 16px; margin: 16px 0 20px;  }
.quote {
    background: var(--panel);
    border: 1px solid #ffffff14;
    border-radius: 12px; 
    padding: 14px;
    box-shadow: var(--shadow);
}
.quote p { margin:0 0 8px; font-size: 18px; }
.quote footer {color: var(--muted); }

.prose { background: var(--panel); border:1px solid #ffffff14; border-radius: 12px; padding: 16px; box-shadow: var(--shadow); }
.prose h2 { margin-top: 14px; }

.center { text-align:center; margin: 8px 0 24px }

.site-footer { margin: 26px 0 32px; }
.footer-inner { display:flex; align-items:center; justify-content: space-between; gap:16px;color: var(--muted); }
.footer-inner nav a { color: var(--muted); text-decoration:none; padding: 6px 8px; }
.footer-innert nav a:hover { color: var(--ink); }

@media (max-width: 860px){
    .hero-inner { grid-template-columns: 1fr;}
    .cards { grid-template-columns: 1fr; }
    .ba-grid { grid-template-columns: 1fr; }
    .nav-toggle { display:inline-block; }
    .site-nav { display:none; position:absolute; right:12px; top:62px; background:#0b0e14; border:1px solid #ffffff1a; padding:8px; border-radius:10px; box-shadow: var(--shadow); }
    .site-nav.open { display:flex; flex-direction:column; gap:8px; }
}

/* HERO BASE */
.hero {
  width: 100%;
  min-height: 60vh;             /* desktop/tablet height */
  background-image: var(--hero);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Optional overlay content spacing */ 
.hero-overlay {
  display: grid;
  place-items: center;
  min-height: inherit;
  padding: 2rem;
}

/* iPhone-ish */
@media (max-width: 767px) {
  .hero { min-height: 55vh; background-position: center; }
}

/* iPad-ish */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero { min-height: 70vh; background-position: center top; }
}

/* Make sure old figure/img styles don’t shrink the hero */
.hero img { max-width: none; width: 100%; height: auto; border-radius: 0; }


/* Prevent hero image from being too tall on phones */
.hero img {
  width: 100%;
  height: auto;
  max-height: 60vh; /* adjust as needed — 60vh = 60% of screen height */
  object-fit: cover; /* keeps proportions but crops excess if needed */
}

.hero {
  background-image: var(--hero);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 90vh; /* Adjust this height to control how tall it appears */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.3); /* darkens image slightly */
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 600px) {
  .hero {
    height: 50vh; /* shorter hero image on mobile */
  }
}

.hero img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}