
:root{
  --bg:#0b0f14;
  --bg2:#0f1620;
  --card:#121a24;
  --text:#e9eef6;
  --muted:#aab6c6;
  --brand:#d6b25b; /* gold */
  --brand2:#27d4c5; /* teal */
  --border:rgba(255,255,255,.10);
  --shadow: 0 12px 30px rgba(0,0,0,.35);
  --radius:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Inter,Arial,sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 700px at 20% -10%, rgba(214,178,91,.18), transparent 60%),
              radial-gradient(900px 600px at 90% 10%, rgba(39,212,197,.14), transparent 55%),
              linear-gradient(180deg, var(--bg), #070a0f);
}

img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
.container{width:min(1100px, 92vw); margin:0 auto}

.skip-link{
  position:absolute; left:-999px; top:0;
  background:#fff; color:#000; padding:.5rem .75rem; border-radius:10px;
}
.skip-link:focus{left:1rem; top:1rem; z-index:9999}

.site-header{
  position:sticky; top:0; z-index:50;
  background: rgba(11,15,20,.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:.75rem 0;
  gap:1rem;
}
.brand{display:flex; align-items:center; gap:.75rem}
.brand-logo{
  width:44px; height:44px; border-radius:12px;
  object-fit:cover; border:1px solid var(--border);
  box-shadow: var(--shadow);
}
.brand-text{display:flex; flex-direction:column; line-height:1.05}
.brand-sub{font-size:.8rem; color:var(--muted); margin-top:.15rem}

.site-nav{
  display:flex; align-items:center; gap:1rem;
}
.site-nav a{
  color:var(--muted);
  font-weight:600;
  padding:.5rem .6rem;
  border-radius:12px;
}
.site-nav a:hover{color:var(--text); background:rgba(255,255,255,.06)}
.site-nav .nav-cta{
  color:#051016;
  background: linear-gradient(135deg, var(--brand), #f0d58b);
}
.site-nav .nav-cta:hover{filter:brightness(1.02)}

.nav-toggle{
  display:none;
  background:transparent; border:0; padding:.45rem;
  border-radius:12px;
}
.nav-toggle span{
  display:block; width:26px; height:2px; margin:6px 0;
  background:var(--text); border-radius:2px;
}

/* Hero */
.hero{
  position:relative;
  min-height: 74vh;
  display:flex; align-items:center;
  overflow:hidden;
  border-bottom: 1px solid var(--border);
}
.hero-media{
  position:absolute; inset:0;
  background-image:
    linear-gradient(90deg, rgba(11,15,20,.88), rgba(11,15,20,.64) 35%, rgba(11,15,20,.20)),
    url("../img/hero.jpg");
  background-size:cover;
  background-position:center;
  filter:saturate(1.03) contrast(1.02);
  transform:scale(1.03);
}
.hero-content{
  position:relative;
  padding: 4.5rem 0 3.5rem;
}
.kicker{
  display:inline-flex;
  gap:.5rem;
  align-items:center;
  padding:.45rem .75rem;
  border:1px solid var(--border);
  border-radius:999px;
  background: rgba(18,26,36,.60);
  color:var(--brand2);
  font-weight:700;
  letter-spacing:.2px;
}
.hero h1{
  font-size: clamp(2rem, 5.4vw, 3.35rem);
  margin: .9rem 0 .6rem;
  line-height:1.05;
}
.lead{
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--muted);
  max-width: 60ch;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
  margin-top: 1.3rem;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.9rem 1.1rem;
  border-radius: 14px;
  border:1px solid var(--border);
  background: rgba(18,26,36,.55);
  color: var(--text);
  font-weight:800;
  box-shadow: var(--shadow);
}
.btn:hover{transform: translateY(-1px); transition: .15s ease}
.btn.primary{
  border:0;
  color:#061117;
  background: linear-gradient(135deg, var(--brand2), #8ff1e7);
}
.btn.ghost{
  background: transparent;
  border:1px solid rgba(214,178,91,.45);
  color: var(--brand);
}
.btn.small{padding:.65rem .85rem; border-radius:12px}

.trust-row{
  display:flex; flex-wrap:wrap;
  gap:.5rem;
  margin-top:1.5rem;
}
.pill{
  padding:.45rem .65rem;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(18,26,36,.48);
  color: var(--muted);
  font-weight:700;
}

/* Strip */
.strip{
  background: linear-gradient(180deg, rgba(18,26,36,.55), rgba(18,26,36,.25));
  border-bottom: 1px solid var(--border);
}
.strip-inner{
  display:flex; gap:1rem; align-items:center; justify-content:space-between;
  padding: 1.2rem 0;
}
.strip h2{margin:0; font-size:1.2rem}
.strip p{margin:.35rem 0 0; color:var(--muted)}
.strip-right{display:flex; gap:.75rem; flex-wrap:wrap}

/* Sections */
.section{padding: 4rem 0}
.section.alt{background: linear-gradient(180deg, rgba(15,22,32,.85), rgba(11,15,20,.0))}
.section-head h2{
  margin:0;
  font-size: 2rem;
}
.section-head p{
  margin:.5rem 0 0;
  color: var(--muted);
  max-width: 70ch;
}
.grid{display:grid; gap:1rem}
.cards{grid-template-columns: repeat(3, 1fr); margin-top: 1.6rem}
.card{
  background: rgba(18,26,36,.62);
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.card-img{height: 170px; width:100%; object-fit:cover}
.card-body{padding: 1rem 1rem 1.1rem}
.card-body h3{margin:.2rem 0 .45rem; font-size:1.05rem}
.card-body p{margin:0; color:var(--muted); line-height:1.5}

.note{
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border:1px solid rgba(39,212,197,.25);
  background: rgba(39,212,197,.08);
}
.note p{margin:0; color:var(--text)}

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.6rem;
}
.step{
  padding: 1.2rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(18,26,36,.55);
  box-shadow: var(--shadow);
}
.step-num{
  width:42px; height:42px;
  display:grid; place-items:center;
  border-radius:14px;
  color:#061117;
  background: linear-gradient(135deg, var(--brand), #f0d58b);
  font-weight:900;
}
.step h3{margin:.8rem 0 .35rem}
.step p{margin:0; color:var(--muted); line-height:1.55}

.two-col{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.2rem;
  margin-top: 1.8rem;
  align-items: start;
}
.mini{margin-top:.75rem; color:var(--muted)}
.map iframe{
  width:100%;
  height: 280px;
  border:0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Carousel */
.carousel{
  position:relative;
  margin-top:1.4rem;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(18,26,36,.55);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.carousel-track{
  display:flex;
  transition: transform .35s ease;
}
.slide{
  min-width:100%;
  background:#000;
}
.slide img{
  width:100%;
  height: min(62vh, 520px);
  object-fit: cover;
}
.carousel-btn{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:44px; height:44px;
  border-radius: 14px;
  border:1px solid var(--border);
  background: rgba(11,15,20,.65);
  color: var(--text);
  font-size: 28px;
  display:grid; place-items:center;
  cursor:pointer;
}
.carousel-btn:hover{background: rgba(11,15,20,.85)}
.carousel-btn.prev{left:12px}
.carousel-btn.next{right:12px}
.carousel-dots{
  display:flex; justify-content:center; gap:.4rem;
  margin-top:.85rem;
}
.dot{
  width:9px; height:9px;
  border-radius:999px;
  background: rgba(255,255,255,.22);
  border:1px solid var(--border);
}
.dot.active{background: var(--brand2)}

/* Testimonials */
.testimonials{grid-template-columns: repeat(3, 1fr); margin-top: 1.6rem}
.testimonial{
  padding: 1.2rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(18,26,36,.55);
  box-shadow: var(--shadow);
}
.testimonial blockquote{
  margin:0;
  color: var(--text);
  line-height:1.6;
  font-weight:650;
}
.testimonial figcaption{
  margin-top:.75rem;
  color: var(--muted);
  font-weight:700;
}

/* FAQ */
.faq{margin-top: 1.4rem; display:grid; gap:.75rem}
.faq-item{
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(18,26,36,.55);
  padding: .3rem 1rem;
  box-shadow: var(--shadow);
}
.faq-item summary{
  cursor:pointer;
  padding: .9rem 0;
  font-weight:850;
}
.faq-item p{
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 1rem;
  margin-top: 1.6rem;
}
.contact-card{
  padding: 1.2rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(18,26,36,.55);
  box-shadow: var(--shadow);
}
.big{font-size: 1.6rem; font-weight: 900; margin:.35rem 0 .8rem}
.contact-actions{display:flex; flex-wrap:wrap; gap:.75rem}
.small{color:var(--muted); margin:.8rem 0 0}

.form{
  padding: 1.2rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(18,26,36,.55);
  box-shadow: var(--shadow);
}
label{display:block; font-weight:800; color:var(--text)}
input, textarea{
  width:100%;
  margin-top:.4rem;
  padding:.8rem .85rem;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(6,9,13,.55);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{border-color: rgba(39,212,197,.55)}
.row{display:grid; gap:.8rem; margin-bottom:.9rem}
.row:first-child{grid-template-columns: 1fr 1fr}

.center{margin-top:1.2rem; display:flex; justify-content:center}

/* Footer */
.site-footer{
  border-top: 1px solid var(--border);
  padding: 2.2rem 0 1.2rem;
  background: rgba(11,15,20,.85);
}
.footer-inner{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
  align-items:center;
}
.footer-brand{display:flex; gap:.75rem; align-items:center}
.footer-brand img{width:52px; height:52px; border-radius:16px; border:1px solid var(--border); object-fit:cover}
.footer-links{display:flex; gap: .8rem; flex-wrap:wrap; color:var(--muted); font-weight:700}
.footer-links a:hover{color:var(--text)}
.footer-cta{display:flex; justify-content:flex-end}
.fineprint{
  margin-top:1rem;
  display:flex; justify-content:space-between;
  color:var(--muted);
  font-size:.9rem;
  padding-bottom: 3.2rem; /* space for sticky bar on mobile */
}

/* Sticky bar */
.sticky-bar{
  position:fixed; left:0; right:0; bottom:0;
  display:none;
  background: rgba(11,15,20,.88);
  backdrop-filter: blur(10px);
  border-top:1px solid var(--border);
}
.sticky-bar a{
  flex:1;
  padding: .9rem .3rem;
  text-align:center;
  font-weight: 900;
  color: var(--text);
}
.sticky-bar a:nth-child(1){color: var(--brand2)}
.sticky-bar a:nth-child(2){color: var(--brand)}
.sticky-bar a:nth-child(3){color: var(--text)}

/* Responsive */
@media (max-width: 900px){
  .cards{grid-template-columns: 1fr 1fr}
  .steps{grid-template-columns: 1fr}
  .two-col{grid-template-columns: 1fr}
  .testimonials{grid-template-columns: 1fr}
  .contact-grid{grid-template-columns: 1fr}
  .footer-inner{grid-template-columns: 1fr}
  .footer-cta{justify-content:flex-start}
}
@media (max-width: 760px){
  .nav-toggle{display:block}
  .site-nav{
    position:absolute;
    right: 4vw;
    top: 72px;
    width: min(320px, 92vw);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:.35rem;
    padding:.6rem;
    border-radius: 18px;
    border:1px solid var(--border);
    background: rgba(11,15,20,.92);
    box-shadow: var(--shadow);
  }
  .site-nav a{padding:.75rem .8rem}
  .site-nav.open{display:flex}
  .strip-inner{flex-direction:column; align-items:flex-start}
  .row:first-child{grid-template-columns: 1fr}
  .sticky-bar{display:flex}
}
