:root{
  --bg:#ffffff;
  --text:#0b1220;
  --muted:#5f6b7a;
  --line:#e6e8ee;
  --soft:#f6f8fb;
  --shadow:0 14px 30px rgba(15,23,42,.12);
  --r:16px;

  --navy:#0b2a55;
  --navy2:#0a234d;
  --green:#2e7d32;
  --green2:#256628;

  --max:1120px;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
}

*{ box-sizing:border-box; }
body{ margin:0; background:var(--bg); color:var(--text); }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.wrap{ max-width:var(--max); margin:0 auto; padding:0 18px; }
.muted{ color:var(--muted); }
.block{ margin-top:8px; line-height:1.7; }
.small{ font-size:13px; margin-top:12px; }

/* Header */
.topbar{
  position:sticky; top:0; z-index:50;
  background:#fff; border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:10px; font-weight:800;
  letter-spacing:.2px;
}
.brand-title{ line-height:1; font-size:16px; }
.brand-sub{ font-size:12px; font-weight:700; color:var(--muted); }

.logo{
  width:38px; height:38px; border-radius:12px;
  background:linear-gradient(135deg, var(--navy), #2b6cb0);
  box-shadow:0 10px 20px rgba(11,42,85,.18);
  position:relative;
}
.logo:before{
  content:""; position:absolute; inset:9px;
  border-radius:10px; border:2px solid rgba(255,255,255,.85);
}
.menu{ display:flex; gap:18px; align-items:center; }
.menu a{
  font-weight:700; color:#1f2a37; padding:8px 10px; border-radius:10px;
}
.menu a:hover{ background:var(--soft); }

.nav-cta{ display:flex; gap:10px; align-items:center; }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:12px;
  font-weight:800; border:1px solid transparent;
  transition:.15s ease;
  white-space:nowrap;
}
.btn-primary{
  background:linear-gradient(180deg, #3aa64a, var(--green2));
  color:#fff;
  box-shadow:0 10px 20px rgba(46,125,50,.18);
}
.btn-primary:hover{ transform:translateY(-1px); }
.btn-ghost{
  background:#fff; border-color:var(--line); color:#111827;
}
.btn-ghost:hover{ background:var(--soft); }

/* Hero */
.hero{
  position:relative;
  color:#fff;
  background:
    url("assets/hero.webp");
  background-size:cover;
  background-position:center;
  overflow:hidden;
}

/* Stronger overlay to keep text readable */
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(255,255,255,.12), transparent 55%),
    linear-gradient(90deg, rgba(11,42,85,.92) 0%, rgba(11,42,85,.86) 45%, rgba(11,42,85,.20) 72%, rgba(11,42,85,.12) 100%);
  z-index:0;
}

.hero-inner{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:28px;
  padding:56px 0;
  align-items:center;
}

.pill{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:999px;
  background:rgba(0,0,0,.18);
  color:#fff;
  font-weight:700;
  font-size:13px;
  backdrop-filter: blur(6px);
}

.hero h1{
  margin:10px 0 10px;
  font-size:44px;
  line-height:1.08;
  letter-spacing:-.5px;
  text-shadow:0 10px 28px rgba(0,0,0,.35);
}
.lead{
  margin:0 0 18px;
  color:rgba(255,255,255,.90);
  font-size:18px;
  max-width:56ch;
  text-shadow:0 10px 28px rgba(0,0,0,.30);
}

.checks{ margin:16px 0 22px; padding:0; list-style:none; }
.checks li{
  display:flex; gap:10px; align-items:flex-start;
  margin:10px 0;
  color:rgba(255,255,255,.95);
  font-weight:650;
  text-shadow:0 10px 28px rgba(0,0,0,.35);
}
.checkdot{
  width:18px; height:18px; border-radius:999px;
  background:rgba(52,211,153,.18);
  border:1px solid rgba(52,211,153,.55);
  position:relative; margin-top:2px; flex:0 0 18px;
}
.checkdot:after{
  content:""; position:absolute;
  width:8px; height:4px;
  border-left:2px solid #34d399;
  border-bottom:2px solid #34d399;
  transform:rotate(-45deg);
  left:4px; top:5px;
}

.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; align-items:center; }
.hero-small{
  margin-top:10px; font-size:13px;
  color:rgba(255,255,255,.82);
  text-shadow:0 10px 28px rgba(0,0,0,.30);
}

/* ✅ FIX: Right-side hero card visibility */
.hero-card{
  position:relative;
  z-index:2;

  /* Darker glass so text is readable */
  background: rgba(10, 18, 36, 0.62);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: var(--r);
  padding: 18px;

  /* Keep the glass effect but not too washed out */
  backdrop-filter: blur(10px) saturate(130%);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.hero-card h3{
  margin:0 0 12px;
  color:#fff;
  font-size:18px;
  letter-spacing:-.2px;
}

.mini{ display:grid; gap:10px; }
.mini .row{
  display:flex; gap:12px; align-items:flex-start;
  padding:12px 12px;
  border-radius:14px;
  background: rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.14);
}

.iconbox{
  width:38px; height:38px; border-radius:14px;
  display:grid; place-items:center;
  background:rgba(46,125,50,.18);
  border:1px solid rgba(46,125,50,.35);
  flex:0 0 38px;
}
.iconbox svg{ width:20px; height:20px; fill:#b9f6ca; }

.row-title{ font-weight:900; color:#fff; }
.row-sub{ font-size:13px; color:rgba(255,255,255,.86); }

/* Sections */
.section{ padding:54px 0; }
.section-alt{ background:var(--soft); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }

.section-head{
  display:flex; justify-content:space-between; align-items:flex-end;
  gap:18px; margin-bottom:18px;
}
.section-head h2{ margin:0; font-size:30px; letter-spacing:-.3px; }
.section-head p{ margin:0; max-width:72ch; }

.grid3{ display:grid; grid-template-columns:repeat(3, 1fr); gap:14px; }
.grid2{ display:grid; grid-template-columns:repeat(2, 1fr); gap:14px; }

.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r);
  padding:18px;
  box-shadow:0 10px 25px rgba(15,23,42,.06);
}
.card h3{ margin:0 0 6px; font-size:18px; }
.card p{ margin:0; color:var(--muted); line-height:1.5; }

.feature{ display:flex; gap:12px; align-items:flex-start; }
.feature .ficon{
  width:46px; height:46px; border-radius:16px;
  display:grid; place-items:center;
  background:linear-gradient(180deg, rgba(11,42,85,.08), rgba(11,42,85,.02));
  border:1px solid rgba(11,42,85,.12);
  flex:0 0 46px;
}
.feature .ficon svg{ width:26px; height:26px; }

.stars{ display:flex; gap:6px; align-items:center; margin-top:10px; color:#f59e0b; font-weight:900; }
.stars small{ color:var(--muted); font-weight:600; margin-left:8px; }

/* Service cards */
.service-card{ padding:0; overflow:hidden; }
.service-card .thumb{
  height:150px;
  background-size:cover;
  background-position:center;
  border-bottom:1px solid var(--line);
}
.service-card .body{ padding:16px 18px 18px; }
.service-card .meta{ margin-top:10px; display:flex; gap:10px; align-items:center; }

.banner-wrap{ margin-top:18px; }
.banner{
  display:flex; gap:16px; align-items:center; justify-content:space-between;
  padding:18px; border-radius:var(--r);
  border:1px solid var(--line); background:#fff;
  box-shadow:0 10px 25px rgba(15,23,42,.06);
}
.banner .left h3{ margin:0 0 4px; }
.banner .left p{ margin:0; color:var(--muted); }
.banner .right{ display:flex; gap:10px; flex-wrap:wrap; }

/* How it works */
.steps{ display:grid; grid-template-columns:repeat(3, 1fr); gap:14px; }
.stepnum{
  width:34px; height:34px; border-radius:12px;
  background:rgba(46,125,50,.12);
  border:1px solid rgba(46,125,50,.25);
  display:grid; place-items:center;
  font-weight:900; color:var(--green2);
  margin-bottom:10px;
}

/* FAQ */
details{
  background:#fff; border:1px solid var(--line);
  border-radius:14px; padding:14px 16px;
}
details + details{ margin-top:10px; }
summary{ cursor:pointer; font-weight:850; }
details p{ margin:10px 0 0; color:var(--muted); line-height:1.55; }

/* Contact */
.contact-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }

/* Footer */
.footer{
  padding:26px 0;
  border-top:1px solid var(--line);
  background:#fff;
}
.footer-inner{
  display:flex; justify-content:space-between;
  gap:14px; flex-wrap:wrap;
  color:var(--muted);
}

/* Responsive */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; padding:46px 0; }
  .hero h1{ font-size:38px; }
  .grid3{ grid-template-columns:1fr; }
  .grid2{ grid-template-columns:1fr; }
  .steps{ grid-template-columns:1fr; }
  .menu{ display:none; }
}

/* Fees */
.price{
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 6px;
}
@media (max-width: 900px){
  .price{ font-size: 30px; }
}


/* Footer referral links */
.footer-links{
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.footer-links a{
  text-decoration: underline;
}


/* ===== Footer (Colorlib-style) ===== */
.site-footer{
  margin-top: 40px;
  background: radial-gradient(1200px 500px at 10% 0%, rgba(255,255,255,.06), rgba(255,255,255,0) 55%),
              linear-gradient(180deg, #0b1320, #08101a);
  color: rgba(255,255,255,.86);
  padding: 44px 0 22px;
}
.site-footer .wrap{ max-width: var(--max); }
.fgrid{
  display: grid;
  gap: 22px;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.2fr;
  align-items: start;
}
@media (max-width: 980px){
  .fgrid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .fgrid{ grid-template-columns: 1fr; }
}
.flogo{
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
}
.ftext{
  margin: 0 0 14px;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
}
.fhead{
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.flist{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.flist a{
  color: rgba(255,255,255,.78);
  text-decoration: none;
}
.flist a:hover{ color: #fff; text-decoration: underline; }

.fsocial{
  display: flex;
  gap: 10px;
  margin: 12px 0 14px;
}
.fsoc{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
}
.fsoc svg{ width: 18px; height: 18px; fill: rgba(255,255,255,.9); }
.fsoc:hover{ background: rgba(255,255,255,.14); }

.fcontact{ display: grid; gap: 12px; }
.frow{
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255,255,255,.78);
}
.frow a{ color: rgba(255,255,255,.86); text-decoration: none; }
.frow a:hover{ text-decoration: underline; color: #fff; }
.fico{ opacity: .9; transform: translateY(1px); }

.fref{
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.10);
  font-size: 14px;
  line-height: 1.55;
}
.fref-title{ color: rgba(255,255,255,.75); display:block; margin-bottom: 6px; }
.fref a{ color: rgba(255,255,255,.88); text-decoration: underline; }
.fsep{ opacity: .55; margin: 0 6px; }

.fcopy{
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.62);
}


/* Nav layout fixes */
.nav{ gap:16px; }
.brand{ display:flex; align-items:center; gap:12px; min-width: 260px; }
.menu{ flex:1; justify-content:center; }
.menu a{ white-space:nowrap; }
.logo-img{
  width:44px; height:44px;
  object-fit:contain;
  display:block;
}
@media (max-width: 980px){
  .brand{ min-width: 0; }
  .menu{ justify-content:flex-start; overflow-x:auto; scrollbar-width: thin; }
}
.logo-img{
  width: 71px;
  height: 71px;
  object-fit: contain;
  display: block;
}
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
}
.thumb{ overflow:hidden; border-radius:14px; }
.thumb img{ width:100%; height:100%; display:block; object-fit:cover; }