/* ===== Theme ===== */
:root{
  --ink:#0a1d3b;           /* rgb(21,24,63) */
  --ink-deep:#0e1133;
  --gold:#f1c40f;
  --white:#ffffff;
  --muted:#7b80a8;
  --ring: 0 0 0 3px rgba(241,196,15,.35);
  --radius:14px;
  --shadow: 0 10px 30px rgba(0,0,0,.12);
}
*{box-sizing:border-box}
:root{
  --ink:#0a1d3b;        /* brand deep blue */
  --gold:#f1c40f;
  --white:#fff;
  --blur-bg: rgba(21,24,63,.6);
  --ring: 0 0 0 3px rgba(241,196,15,.35);
}

/* header shell: glass + shadow + sticky */
.site-header{
  position:sticky; top:0; z-index:80;
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(21,24,63,.85), rgba(21,24,63,.55));
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}

/* brand / logo */
.brand{display:flex; align-items:center; gap:10px; color:var(--white); text-decoration:none}
.logo{font-weight:300; letter-spacing:.4px; line-height:1; font-size:1.1rem}
.logo span{color:var(--gold)}
.brand:hover .logo{transform:translateY(-1px); transition:transform .15s}

/* nav layout */
.nav{display:flex; align-items:center; gap:6px; flex-wrap:wrap}
.nav-cta{margin-left:8px}

/* link chip with animated underline */
.nav-link{
  position:relative; display:inline-flex; align-items:center; justify-content:center;
  padding:.55rem .75rem; border-radius:12px; color:var(--white); text-decoration:none;
  opacity:.95; transition:opacity .15s, transform .15s, background .15s;
}
.nav-link span{position:relative; z-index:2}
.nav-link::after{
  content:""; position:absolute; left:10px; right:10px; bottom:6px; height:2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform:scaleX(0); transform-origin:center; transition:transform .2s ease;
}
.nav-link:hover{opacity:1; transform:translateY(-1px)}
.nav-link:hover::after{transform:scaleX(1)}

/* active pill */
.nav-link.is-active{
  background:linear-gradient(180deg, rgba(241,196,15,.18), rgba(241,196,15,.08));
  border:1px solid rgba(241,196,15,.45);
  box-shadow: 0 3px 12px rgba(241,196,15,.25);
}

/* gold CTA */
.btn{
  display:inline-block; border:2px solid var(--gold); background:var(--gold); color:#0b0c22;
  padding:.6rem 1rem; border-radius:999px; font-weight:300; letter-spacing:.2px;
}
.btn:hover{transform:translateY(-1px)}
.btn:focus{outline:none; box-shadow:var(--ring)}

/* mobile menu button (hamburger -> X) */
.nav-toggle{
  display:none; position:relative; width:44px; height:44px; border:0; background:transparent;
  border-radius:12px;
}
.nav-toggle span{
  position:absolute; left:10px; right:10px; height:2px; background:#fff; border-radius:2px; transition:.25s;
}
.nav-toggle span:nth-child(1){top:14px}
.nav-toggle span:nth-child(2){top:21px}
.nav-toggle span:nth-child(3){top:28px}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* responsive drawer */
@media (max-width: 1024px){
  .nav-toggle{display:block}
  .nav{
    position:fixed; inset:70px 16px auto 16px;
    display:flex; flex-direction:column; gap:10px;
    padding:14px; border-radius:16px;
    background:linear-gradient(180deg, rgba(21,24,63,.96), rgba(21,24,63,.85));
    border:1px solid rgba(255,255,255,.1);
    transform:translateY(-16px); opacity:0; pointer-events:none;
    box-shadow: 0 18px 40px rgba(0,0,0,.35); transition:.2s ease;
  }
  .nav-cta{margin:6px 0 0}
  .nav.nav--open{transform:translateY(0); opacity:1; pointer-events:auto}
}

/* tiny screens */
@media (max-width:560px){
  .logo{font-size:1rem}
  .nav-link{padding:.5rem .65rem}
}

html{scroll-behavior:smooth}
body{
  margin:0;
  font:16px/1.6 ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;
  color:var(--white);
  background:var(--ink);
}
body{
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
h1,h2,h3{
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.wrap{max-width:1180px;margin-inline:auto;padding:0 24px}
h1,h2,h3{line-height:1.15;margin:0 0 .65em}
h1{font-size:clamp(32px,4vw,48px)}
h2{font-size:clamp(26px,3vw,36px)}
h3{font-size:clamp(20px,2.2vw,24px)}
p{margin:0 0 1em}
a{color:var(--gold);text-decoration:none}
a:hover{opacity:.9}
.lead{font-size:1.1rem}

/* ===== Sections (alternating) ===== */
.section{padding:72px 0}
.section--ink{
  background:
    radial-gradient(900px 500px at 100% -10%, rgba(241,196,15,.12), transparent 60%),
    linear-gradient(180deg, var(--ink), var(--ink-deep));
  color:var(--white);
}
.section--light{
  background:var(--white);
  color:#0b0e2b;
  border-top:1px solid #eef0f5;
  border-bottom:1px solid #eef0f5;
}
.section--light .card{background:#0a1d3b;color:#fff;border:1px solid rgba(21,24,63,.18)}
.section--light .chip{background:#0a1d3b;color:#fff;border:1px solid rgba(21,24,63,.18)}
.section--light .toc a{background:#0a1d3b;color:#fff;border:1px solid rgba(21,24,63,.18)}
.section--light .ph{color:#cfd2f3;border-color:rgba(21,24,63,.22)}
.mt-16{margin-top:16px}

/* ===== Topbar ===== */
.topbar{background:#0a1d3b;border-bottom:1px solid rgba(255,255,255,.08)}
.topbar-inner{display:flex;gap:12px;align-items:center;justify-content:space-between;padding:.6rem 0}

/* ===== Header ===== */
.site-header{position:sticky;top:0;z-index:60;background:rgba(10,12,35,.82);backdrop-filter:blur(10px);border-bottom:1px solid rgba(255,255,255,.06)}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:12px 0}
.brand{display:flex;gap:10px;align-items:baseline;color:#fff}
.logo{font-weight:300;letter-spacing:.3px}
.logo span{color:var(--gold)}
.tag{font-size:.85rem;color:#b7bbdc}
.nav{display:flex;gap:16px;align-items:center;flex-wrap:wrap}
.nav a{color:#fff;opacity:.92}
.nav-cta{margin-left:4px}

/* Mobile nav */
.nav-toggle{display:none;background:transparent;border:0;width:40px;height:40px;border-radius:10px;position:relative}
.nav-toggle span{position:absolute;left:9px;right:9px;height:2px;background:#fff;border-radius:2px;transition:.25s}
.nav-toggle span:nth-child(1){top:12px}
.nav-toggle span:nth-child(2){top:19px}
.nav-toggle span:nth-child(3){top:26px}
.nav--open{transform:translateY(0)!important}

/* ===== Buttons ===== */
.btn{
  display:inline-block;border:2px solid var(--gold);background:var(--gold);color:#0b0c22;
  padding:.75rem 1.1rem;border-radius:999px;font-weight:300;letter-spacing:.2px;
  box-shadow:var(--shadow);transition:transform .15s ease, box-shadow .2s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn:focus{outline:none;box-shadow:var(--ring)}
.btn--outline{background:transparent;color:var(--white)}
.btn--sm{padding:.45rem .75rem;font-size:.9rem}
.btn--full{display:block;width:100%;text-align:center}

/* ===== Hero ===== */
.hero{padding-top:84px}
.hero-inner{display:grid;grid-template-columns:1.25fr .9fr;gap:32px;align-items:start}
.hero-bullets{margin:1rem 0 1.25rem;padding:0 0 0 1.1rem}
.card{
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.18);border-radius:var(--radius);padding:20px;box-shadow:var(--shadow)
}
.highlight h3{margin-top:0}
.enquiry-form label{display:block;margin-bottom:.6rem;font-weight:200}
.enquiry-form input{
  width:100%;padding:.8rem .9rem;border-radius:12px;border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);color:#fff;outline:none
}
.enquiry-form input::placeholder{color:#cfd2f3}
.enquiry-form input:focus{box-shadow:var(--ring)}
.form-note{font-size:.8rem;color:#b9bdf0;margin-top:.5rem}

/* ===== Grids & Cards ===== */
.grid{display:grid;gap:18px}
.grid.two{grid-template-columns:1fr 1fr}
.cards-compact{grid-template-columns:repeat(auto-fit,minmax(220px,1fr))}
.features{grid-template-columns:repeat(auto-fit,minmax(230px,1fr))}
.testimonials{grid-template-columns:repeat(auto-fit,minmax(280px,1fr))}
.contact{grid-template-columns:1.15fr .85fr}

.card:hover{transform:translateY(-2px);transition:.2s ease;box-shadow:0 14px 40px rgba(0,0,0,.18)}

/* ===== Chips / Metrics / TOC ===== */
.chips{grid-template-columns:repeat(auto-fit,minmax(180px,1fr))}
.chip{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.14);border-radius:12px;padding:12px}
.metrics{display:grid;grid-template-columns:repeat(auto-fit,minmax(120px,1fr));gap:12px;margin-top:18px}
.metrics > div{background:rgba(241,196,15,.12);border:1px solid rgba(241,196,15,.35);padding:14px;border-radius:12px;text-align:center}
.metrics strong{display:block;font-size:28px;color:var(--gold)}
.toc{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:10px;margin-top:8px}
.toc a{display:block;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.14);padding:12px;border-radius:12px;color:#fff}
.toc a:hover{transform:translateY(-2px)}

/* ===== Lists ===== */
.list-check{list-style:square;padding-left:1.2rem}
.list-dash{list-style:disc;padding-left:1.2rem}

/* ===== Figure note ===== */
.figure.note{background:rgba(255,255,255,.06);border:1px dashed rgba(255,255,255,.22);padding:10px 12px;border-radius:12px;margin:12px 0}
.section--light .figure.note{background:#0a1d3b;border-color:rgba(255,255,255,.18);color:#fff}

/* ===== Logos & Gallery placeholders ===== */
.logos{grid-template-columns:repeat(auto-fit,minmax(240px,1fr))}
.logo-card{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.14);border-radius:12px;padding:16px}
.gallery{grid-template-columns:repeat(auto-fit,minmax(160px,1fr))}
.ph{aspect-ratio:16/10;display:grid;place-items:center;border:1px dashed rgba(255,255,255,.22);border-radius:12px;color:#cfd2f3}

/* ===== FAQ ===== */
.faq{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.16);border-radius:12px;margin-bottom:10px;overflow:hidden}
.section--light .faq{background:#0a1d3b;border-color:rgba(255,255,255,.16);color:#fff}
.faq summary{cursor:pointer;padding:14px 16px;font-weight:300;list-style:none}
.faq[open] summary{background:rgba(241,196,15,.12)}
.faq-body{padding:0 16px 16px}

/* ===== Footer ===== */
.site-footer{padding:28px 0 64px;border-top:1px solid rgba(255,255,255,.08)}
.section--light.site-footer{background:#fff;color:#0b0e2b}
.section--light .foot-nav a{color:#0a1d3b}
.footer-inner{display:flex;align-items:center;justify-content:space-between;gap:20px}
.foot-nav{display:flex;gap:14px;flex-wrap:wrap}
.back-to-top{display:block;text-align:center;margin-top:18px;color:var(--gold)}

/* ===== Utility ===== */
.callout{background:rgba(241,196,15,.12);border:1px dashed rgba(241,196,15,.45);padding:14px;border-radius:12px}
.skip-link{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}
.skip-link:focus{left:8px;top:8px;width:auto;height:auto;background:#000;color:#fff;padding:6px 10px;border-radius:8px}
.noscroll{overflow:hidden}

/* ===== Responsive ===== */
@media (max-width: 1100px){
  .nav a{padding:.25rem 0}
}
@media (max-width: 960px){
  .hero-inner{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
  .header-inner{padding:10px 0}
  .nav-toggle{display:block}
  .nav{
    position:fixed;inset:60px 16px auto 16px;transform:translateY(-20px);
    opacity:0;pointer-events:none;flex-direction:column;gap:10px;padding:16px;border-radius:16px;
    background:#0a1d3b;border:1px solid rgba(255,255,255,.14);box-shadow:var(--shadow);transition:.2s
  }
  .nav a{padding:.6rem 10px;border-radius:10px}
  .nav a:hover{background:rgba(255,255,255,.06)}
  .nav.nav--open{opacity:1;pointer-events:auto;transform:translateY(0)}
  .nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
  .nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
  .nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
}
@media (max-width: 560px){
  .section{padding:56px 0}
  .btn{padding:.7rem 1rem}
}
/* ===== THEME ===== */
:root{
  --ink:#0a1d3b;      /* deep blue */
  --ink-deep:#0e1133;
  --gold:#f1c40f;
  --white:#ffffff;
  --muted:#b9bdf0;
  --radius:18px;
  --shadow:0 18px 60px rgba(6,8,28,.35);
  --ring:0 0 0 4px rgba(241,196,15,.35);
}

/* ===== HERO LAYER ===== */
.section--ink.hero{
  padding:88px 0 72px;
  color:var(--white);
  background:
    radial-gradient(1100px 640px at 100% -10%, rgba(241,196,15,.12), transparent 60%),
    linear-gradient(180deg, var(--ink), var(--ink-deep));
  position:relative;
  overflow:hidden;
}
.section--ink.hero::after{
  /* soft vignette */
  content:""; position:absolute; inset:-8% -8% -8% -8%;
  pointer-events:none;
  background:radial-gradient(70% 50% at 20% -10%, rgba(255,255,255,.08), transparent 55%);
}

/* grid */
.hero-inner{
  display:grid; grid-template-columns:1.25fr .95fr; gap:36px; align-items:start;
}

/* copy */
.hero-copy h1{
  font-weight:300; letter-spacing:.2px;
  font-size:clamp(32px,4.2vw,36px);
  line-height:1.12; margin:0 0 .55em;
}
.hero-copy h1 .accent{
  color:var(--gold);
  background:linear-gradient(180deg, rgba(241,196,15,.3), rgba(241,196,15,0));
  padding:0 .15em;
  border-radius:4px;
}
.lead{
  font-size:clamp(16px,1.6vw,19px);
  color:#e8e9ff; opacity:.95; margin-bottom:1rem;
}

/* mini badges row */
.meta-badges{
  display:flex; flex-wrap:wrap; gap:10px; margin:.4rem 0 1rem;
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border-radius:999px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.16);
  font-weight:200; font-size:.9rem; color:#fff;
}
.badge::before{
  content:""; width:8px; height:8px; border-radius:50%; background:var(--gold);
  box-shadow:0 0 0 3px rgba(241,196,15,.2);
}

/* bullets with custom checks */
.hero-bullets{list-style:none; padding:0; margin:10px 0 18px}
.hero-bullets li{
  position:relative; padding-left:34px; margin:.55rem 0;
}
.hero-bullets li::before{
  content:""; position:absolute; left:0; top:.15em;
  width:22px; height:22px; border-radius:50%;
  background:linear-gradient(180deg, var(--gold), #ddb30a);
  box-shadow:0 6px 18px rgba(241,196,15,.35);
  -webkit-mask:
    radial-gradient(circle 10px at 9px 11px, black 98%, transparent 101%),
    linear-gradient(black,black);
  mask:
    radial-gradient(circle 10px at 9px 11px, black 98%, transparent 101%),
    linear-gradient(black,black);
}
.hero-bullets li::after{
  /* check mark */
  content:""; position:absolute; left:6px; top:7px; width:10px; height:6px;
  border:2px solid #0b0c22; border-top:0; border-left:0; transform:rotate(45deg);
}

/* CTA row */
.hero-cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:6px}
.btn{
  display:inline-block; border:2px solid var(--gold); background:var(--gold); color:#0b0c22;
  padding:.8rem 1.1rem; border-radius:999px; font-weight:300; letter-spacing:.2px;
  box-shadow:0 8px 28px rgba(241,196,15,.35); transition:transform .15s ease, box-shadow .2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn--outline{background:transparent; color:#fff; border-color:rgba(241,196,15,.7)}
.btn--outline:hover{box-shadow:0 10px 32px rgba(241,196,15,.25)}

/* enquiry card (glass) */
.card.highlight{
  background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.24);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px 20px;
}
.card.highlight h3{margin:.1rem 0 .7rem; font-weight:300}
.enquiry-form label{display:block; font-weight:200; margin:.55rem 0 .35rem}
.enquiry-form input{
  width:100%; padding:.9rem .95rem;
  border-radius:14px; border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.08); color:#fff; outline:none;
  transition:box-shadow .15s ease, transform .05s ease, border-color .15s ease;
}
.enquiry-form input::placeholder{color:#e1e3ff}
.enquiry-form input:focus{box-shadow:var(--ring); border-color:rgba(241,196,15,.6)}
.form-note{font-size:.85rem; color:var(--muted); margin-top:.5rem}

/* subtle floating accent blob behind the card */
.card.highlight::after{
  content:""; position:absolute; translate: 10px 10px; inset:auto auto  -22px -22px;
  width:180px; height:180px; border-radius:50%;
  background:radial-gradient(closest-side, rgba(241,196,15,.28), rgba(241,196,15,0));
  filter:blur(8px); pointer-events:none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px){
  .hero-inner{grid-template-columns:1fr}
  .card.highlight{order:-1}
}
@media (max-width: 560px){
  .section--ink.hero{padding:68px 0 56px}
  .btn{padding:.74rem 1rem}
}
/* --- TOC tiles --- */
.toc{
  /* responsive grid */
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px,1fr));
  gap:14px;
  margin-top:14px;
  counter-reset: toc;
}

.toc a{
  position:relative;
  display:flex;
  align-items:flex-start;
  gap:10px;

  min-height:78px;
  padding:16px 16px 16px 58px;
  border-radius:16px;

  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  text-decoration:none;

  box-shadow:0 10px 28px rgba(0,0,0,.18);
  transition:transform .18s ease, box-shadow .22s ease, border-color .2s ease, background .2s ease;
}

/* numbered gold badge */
.toc a::before{
  counter-increment: toc;
  content: counter(toc, decimal-leading-zero);

  position:absolute; left:16px; top:16px;
  width:34px; height:34px; border-radius:50%;

  display:grid; place-items:center;
  font-weight:300; font-size:.9rem;
  color:#0b0c22;

  background:linear-gradient(180deg, #f1c40f, #d4ad0b);
  box-shadow:0 8px 20px rgba(241,196,15,.35);
}

/* animated accent ring on hover */
.toc a::after{
  content:""; position:absolute; inset:-1px; border-radius:16px; padding:1px;
  background:
    linear-gradient(120deg, rgba(241,196,15,.65), rgba(241,196,15,0) 35%, rgba(255,255,255,.25) 65%, rgba(255,255,255,0));
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor; mask-composite:exclude;
  opacity:0; transition:opacity .22s ease;
}

.toc a:hover{
  transform:translateY(-2px);
  border-color:rgba(241,196,15,.45);
  box-shadow:0 16px 40px rgba(0,0,0,.28);
  background:rgba(255,255,255,.08);
}
.toc a:hover::after{ opacity:1; }

/* tiny chevron hint */
.toc a span{ position:relative; padding-right:18px }
.toc a span::after{
  content:""; position:absolute; right:0; top:50%; translate:0 -50%;
  width:8px; height:8px; border-right:2px solid currentColor; border-bottom:2px solid currentColor; transform:rotate(-45deg);
  opacity:.7;
}

/* Light section variant (if you ever place TOC in white section) */
.section--light .toc a{
  background:#0a1d3b; color:#fff; border-color:rgba(255,255,255,.16);
}
.section--light .toc a:hover{
  background:#111742; border-color:rgba(241,196,15,.45);
}
/* ===== Why Choose – premium styling ===== */

/* section heading accent */
#why h2{
  position:relative;
  font-weight:300;
  letter-spacing:.2px;
  margin-bottom:.35em;
}
#why h2::after{
  content:"";
  display:block;
  width:72px;
  height:4px;
  margin-top:10px;
  border-radius:999px;
  background:linear-gradient(90deg, #f1c40f, rgba(241,196,15,0));
}

/* intro paragraph */
#why > .wrap > p{
  color:#3b3f6c;
  max-width:70ch;
  margin-bottom:1.1rem;
}

/* responsive grid already present; enhance spacing if needed */
#why .features{
  gap:18px;
}

/* feature cards */
#why .features .card{
  position:relative;
  overflow:hidden;
  padding:18px 16px 16px 16px;
  border-radius:16px;

  /* dark-on-light contrast tile */
  background:#0a1d3b;
  color:#fff;

  /* gold-ish border & soft depth */
  border:1px solid rgba(241,196,15,.22);
  box-shadow:0 14px 36px rgba(6,8,28,.18);

  transition:transform .18s ease, box-shadow .25s ease, border-color .2s ease;
}

/* gold corner sheen */
#why .features .card::after{
  content:"";
  position:absolute;
  right:-40px; top:-40px;
  width:140px; height:140px; border-radius:50%;
  background:radial-gradient(closest-side, rgba(241,196,15,.35), rgba(241,196,15,0));
  filter:blur(14px);
  pointer-events:none;
}

/* icon bubble */
#why .features .card::before{
  content:"";
  position:absolute;
  inset:16px auto auto 16px;
  width:42px; height:42px; border-radius:50%;
  background:linear-gradient(180deg, #f1c40f, #d7b10b);
  box-shadow:0 10px 24px rgba(241,196,15,.35);
}

/* icon glyphs (no HTML change needed) */
#why .features .card h3{
  margin:0 0 .35rem 58px;    /* offset for icon bubble */
  font-weight:300;
  letter-spacing:.2px;
}
#why .features .card p{
  margin:0 0 .15rem 58px;    /* align body with title */
  color:#dfe2ff;
}

/* inject matching emojis into the gold bubble */
#why .features .card:nth-child(1)::before{content:"\1F4DD"; display:grid; place-items:center; font-size:18px; color:#0b0c22}
#why .features .card:nth-child(2)::before{content:"\1F3E2"}  /* office building */
#why .features .card:nth-child(3)::before{content:"\1F9F9"}  /* broom (maintenance) */
#why .features .card:nth-child(4)::before{content:"\1F6A7"}  /* construction/entry */
#why .features .card:nth-child(5)::before{content:"\2728"}   /* sparkle = modern appeal */
#why .features .card:nth-child(6)::before{content:"\2699"}   /* gear = flexibility */
#why .features .card::before{
  display:grid; place-items:center; font-size:18px; color:#0b0c22; font-weight:300;
}

/* hover effects */
#why .features .card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 48px rgba(6,8,28,.28);
  border-color:rgba(241,196,15,.45);
}

/* subtle entrance animation (respects reduced motion) */
@media (prefers-reduced-motion: no-preference){
  #why .features .card{
    opacity:0; transform:translateY(10px);
    animation:featureIn .5s ease forwards;
  }
  #why .features .card:nth-child(1){animation-delay:.02s}
  #why .features .card:nth-child(2){animation-delay:.06s}
  #why .features .card:nth-child(3){animation-delay:.10s}
  #why .features .card:nth-child(4){animation-delay:.14s}
  #why .features .card:nth-child(5){animation-delay:.18s}
  #why .features .card:nth-child(6){animation-delay:.22s}
  @keyframes featureIn{
    to{opacity:1; transform:translateY(0)}
  }
}

/* small screens: tighten spacing so icon + text feel balanced */
@media (max-width:560px){
  #why .features .card h3{margin-left:56px}
  #why .features .card p{margin-left:56px}
}
/* ===========================
   LOCATION SECTION STYLING
=========================== */
#location {
  position: relative;
}

#location h2 {
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 42px);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  color: var(--white);
  position: relative;
}

#location h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(241, 196, 15, 0));
}

#location > .wrap > p {
  color: #d9dcff;
  max-width: 75ch;
  font-size: 1.05rem;
  margin-bottom: 28px;
  opacity: 0.9;
}

/* ====== Chips (Distance badges) ====== */
#location .chips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

#location .chip {
  position: relative;
  padding: 14px 16px 14px 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.3s ease, border-color 0.2s ease;
  font-weight: 500;
}

#location .chip::before {
  content: "📍";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(180deg, var(--gold), #d4ad0b);
  color: #0b0c22;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 4px 14px rgba(241, 196, 15, 0.4);
}

#location .chip strong {
  font-weight: 700;
}

#location .chip span {
  font-size: 0.95rem;
  color: #d7daff;
}

#location .chip:hover {
  transform: translateY(-3px);
  border-color: rgba(241, 196, 15, 0.4);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

/* ====== Two-column details ====== */
#location .two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

#location .two h3 {
  color: var(--gold);
  font-weight: 700;
  margin: 16px 0 6px;
  font-size: 1.15rem;
  position: relative;
}

#location .two h3::before {
  content: "➤";
  color: var(--gold);
  font-size: 0.9rem;
  position: absolute;
  left: -20px;
  top: 2px;
}

#location .two p {
  color: #e6e7ff;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 18px;
  opacity: 0.95;
}

/* ====== Responsive ====== */
@media (max-width: 960px) {
  #location .two {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #location .chip {
    padding-left: 48px;
  }
}

@media (max-width: 560px) {
  #location h2 {
    font-size: 26px;
  }
  #location > .wrap > p {
    font-size: 1rem;
  }
}
/* ===== Timeline Rail ===== */
.loc-rail {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  width: 100%;
}

/* Center rail line */
.loc-rail::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(180deg, rgba(241, 196, 15, 0.8), rgba(241, 196, 15, 0.3));
  transform: translateX(-50%);
  border-radius: 4px;
}

/* Timeline stop container */
.stop {
  position: relative;
  width: 100%;
  margin: 40px 0;
  display: flex;
  justify-content: flex-start;
}

/* Node indicator on the line */
.stop .node {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: linear-gradient(180deg, #f1c40f, #d4ad0b);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(241, 196, 15, 0.6);
  z-index: 2;
}

/* Timeline cards (default: left side) */
.stop-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 18px;
  max-width: 45%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  color: #fff;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border-color: rgba(241, 196, 15, 0.5);
}

/* Time badge */
.stop-card .stop-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.stop-card .time-badge {
  background: linear-gradient(180deg, #f1c40f, #d4ad0b);
  color: #0b0c22;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  box-shadow: 0 8px 20px rgba(241, 196, 15, 0.4);
}

/* Alternate stops (right side) */
.stop.alt {
  justify-content: flex-end;
}

.stop.alt .stop-card {
  text-align: left;
}

/* Headings and text */
.stop-card h3 {
  font-weight: 700;
  margin: 0;
  font-size: 1.1rem;
  color: var(--gold);
}

.stop-card p {
  margin: 6px 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #eaeaff;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 960px) {
  .loc-rail::before {
    left: 8px;
  }

  .stop {
    flex-direction: column;
    align-items: flex-start;
    margin: 20px 0;
  }

  .stop .node {
    left: 8px;
    transform: none;
    top: 10px;
  }

  .stop-card {
    max-width: 100%;
    margin-left: 40px;
  }

  .stop.alt {
    justify-content: flex-start;
  }

  .stop.alt .stop-card {
    margin-left: 40px;
  }
}

@media (max-width: 560px) {
  .stop-card {
    padding: 14px;
    font-size: 0.9rem;
  }

  .stop-card h3 {
    font-size: 1rem;
  }
}
/* ================================
   BUSINESS OPPORTUNITIES (Premium)
================================== */
#opportunities{
  position:relative;
}

#opportunities h2{
  font-weight:300;
  letter-spacing:.2px;
  margin-bottom:.35em;
}
#opportunities h2::after{
  content:"";
  display:block;
  width:84px; height:4px; margin-top:10px;
  border-radius:999px;
  background:linear-gradient(90deg,#f1c40f,rgba(241,196,15,0));
}

/* Grid tune */
#opportunities .cards-compact{
  gap:18px;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
}

/* Card styling (glass-on-ink look but readable on white) */
#opportunities .card{
  position:relative;
  overflow:hidden;
  padding:18px 16px 16px 16px;
  border-radius:16px;

  background:#0a1d3b;          /* dark tile on light section for contrast */
  color:#fff;
  border:1px solid rgba(241,196,15,.18);
  box-shadow:0 12px 32px rgba(6,8,28,.16);

  transition:transform .18s ease, box-shadow .25s ease, border-color .2s ease, background .2s ease;
}

/* Animated gradient ring on hover (no extra markup) */
#opportunities .card::after{
  content:"";
  position:absolute; inset:-1px; border-radius:16px; padding:1px;
  background:
    linear-gradient(120deg, rgba(241,196,15,.65), rgba(241,196,15,0) 40%, rgba(255,255,255,.25) 70%, rgba(255,255,255,0));
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor; mask-composite:exclude;
  opacity:0; transition:opacity .22s ease;
}
#opportunities .card:hover{ transform:translateY(-4px); box-shadow:0 18px 48px rgba(6,8,28,.28); border-color:rgba(241,196,15,.42) }
#opportunities .card:hover::after{ opacity:1 }

/* Gold icon bubbles via pseudo-elements (no HTML edits) */
#opportunities .card::before{
  content:"";
  position:absolute; inset:16px auto auto 16px;
  width:44px; height:44px; border-radius:50%;
  background:linear-gradient(180deg,#f1c40f,#d7b10b);
  box-shadow:0 10px 24px rgba(241,196,15,.35);
  display:grid; place-items:center;
  color:#0b0c22; font-weight:300; font-size:18px;
}

/* Different glyph per card */
#opportunities .card:nth-child(1)::before{ content:"🍽️" } /* Food */
#opportunities .card:nth-child(2)::before{ content:"🛍️" } /* Boutique/Wellness */
#opportunities .card:nth-child(3)::before{ content:"💼" } /* IT/Co-working */
#opportunities .card:nth-child(4)::before{ content:"🩺" } /* Medical */
#opportunities .card:nth-child(5)::before{ content:"🎭" } /* Entertainment */

/* Align text with icon */
#opportunities .card h3{ margin:0 0 .35rem 60px; }
#opportunities .card p{ margin:0 0 .15rem 60px; color:#dfe2ff }

/* Callout styling upgrade */
#opportunities .callout{
  margin-top:16px;
  background:rgba(241,196,15,.12);
  border:1px dashed rgba(241,196,15,.5);
  color:#0b0e2b;
  padding:14px 16px;
  border-radius:14px;
  font-weight:200;
}

/* Fancy subtle entrance animation (respects reduced motion) */
@media (prefers-reduced-motion: no-preference){
  #opportunities .card{
    opacity:0; transform:translateY(10px);
    animation:oppsIn .5s ease forwards;
  }
  #opportunities .card:nth-child(1){animation-delay:.02s}
  #opportunities .card:nth-child(2){animation-delay:.06s}
  #opportunities .card:nth-child(3){animation-delay:.10s}
  #opportunities .card:nth-child(4){animation-delay:.14s}
  #opportunities .card:nth-child(5){animation-delay:.18s}
  @keyframes oppsIn{ to{opacity:1; transform:translateY(0)} }
}

/* Small screens */
@media (max-width:560px){
  #opportunities .card h3{ margin-left:56px }
  #opportunities .card p{ margin-left:56px }
}
/* ================================
   PRICING SECTION (Premium Look)
================================= */
#pricing {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(180deg, var(--ink), #0a1d3b);
  color: var(--white);
}

#pricing .pricing-head h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

#pricing .pricing-head h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(241,196,15,0));
}

#pricing .pricing-head p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #d9dcff;
  opacity: 0.95;
  max-width: 72ch;
  margin-bottom: 24px;
}

#pricing .pricing-body p {
  font-size: 1rem;
  line-height: 1.7;
  color: #eaeaff;
  opacity: 0.95;
  margin-bottom: 20px;
}

/* Features list */
#pricing .pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

#pricing .pricing-features li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 18px;
  margin-bottom: 12px;
  border-radius: 12px;
  font-size: 1rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#pricing .pricing-features li:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
  border-color: rgba(241,196,15,0.5);
}

/* Call button */
#pricing .cta-center {
  text-align: center;
}

#pricing .btn--large {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0b0c22;
  background: var(--gold);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(241,196,15,0.4);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

#pricing .btn--large:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(241,196,15,0.6);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #pricing {
    padding: 60px 0;
  }
  #pricing .pricing-head h2 {
    font-size: 26px;
  }
  #pricing .btn--large {
    font-size: 1rem;
    padding: 0.9rem 1.6rem;
  }
}
/* ================================
   INFRASTRUCTURE HIGHLIGHTS
   (works with your existing markup)
================================== */
#infrastructure{
  position: relative;
}

#infrastructure h2{
  font-weight:300;
  letter-spacing:.2px;
  margin-bottom:.45em;
}
#infrastructure h2::after{
  content:"";
  display:block;
  width:84px;height:4px;margin-top:10px;border-radius:999px;
  background:linear-gradient(90deg,#f1c40f,rgba(241,196,15,0));
}

/* Grid tuning */
#infrastructure .features{
  gap:18px;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}

/* Cards: dark tiles on light section for punchy contrast */
#infrastructure .features .card{
  position:relative; overflow:hidden;
  padding:18px 16px 16px 16px; border-radius:16px;
  background:#0a1d3b; color:#fff;
  border:1px solid rgba(241,196,15,.18);
  box-shadow:0 12px 32px rgba(6,8,28,.16);
  transition:transform .18s ease, box-shadow .25s ease, border-color .2s ease, background .2s ease;
}

/* Animated gradient ring (no extra markup) */
#infrastructure .features .card::after{
  content:""; position:absolute; inset:-1px; border-radius:16px; padding:1px;
  background:linear-gradient(120deg, rgba(241,196,15,.65), rgba(241,196,15,0) 40%, rgba(255,255,255,.25) 70%, rgba(255,255,255,0));
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor; mask-composite:exclude;
  opacity:0; transition:opacity .22s ease;
}
#infrastructure .features .card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 48px rgba(6,8,28,.28);
  border-color:rgba(241,196,15,.42)
}
#infrastructure .features .card:hover::after{ opacity:1 }

/* Gold icon bubbles via pseudo-elements */
#infrastructure .features .card::before{
  content:""; position:absolute; inset:16px auto auto 16px;
  width:44px; height:44px; border-radius:50%;
  background:linear-gradient(180deg,#f1c40f,#d7b10b);
  box-shadow:0 10px 24px rgba(241,196,15,.35);
  display:grid; place-items:center; color:#0b0c22; font-weight:300; font-size:18px;
}

/* Different glyph per item (no HTML changes needed) */
#infrastructure .features .card:nth-child(1)::before{ content:"🏙️" } /* Facade */
#infrastructure .features .card:nth-child(2)::before{ content:"🅿️" } /* Parking */
#infrastructure .features .card:nth-child(3)::before{ content:"🌿" } /* Landscape */
#infrastructure .features .card:nth-child(4)::before{ content:"🎭" } /* Community/Theatre */
#infrastructure .features .card:nth-child(5)::before{ content:"⚡" } /* Power */
#infrastructure .features .card:nth-child(6)::before{ content:"🛡️" } /* Security */
#infrastructure .features .card:nth-child(7)::before{ content:"💠" } /* Low OPEX */
#infrastructure .features .card:nth-child(8)::before{ content:"🏗️" } /* Construction Flex */

/* Align text so it lines up with the icon bubble */
#infrastructure .features .card h3{ margin:0 0 .35rem 60px; font-weight:300; letter-spacing:.2px }
#infrastructure .features .card p{ margin:0 0 .15rem 60px; color:#dfe2ff }

/* Subtle corner glow */
#infrastructure .features .card .corner-glow,
#infrastructure .features .card > i{ display:none } /* safety */
#infrastructure .features .card{
  background-image: radial-gradient(140px 140px at 110% -10%, rgba(241,196,15,.28), rgba(241,196,15,0));
  background-blend-mode:screen;
}

/* Entrance animation (respects reduced motion) */
@media (prefers-reduced-motion: no-preference){
  #infrastructure .features .card{
    opacity:0; transform:translateY(10px);
    animation:infraIn .5s ease forwards;
  }
  #infrastructure .features .card:nth-child(1){animation-delay:.02s}
  #infrastructure .features .card:nth-child(2){animation-delay:.06s}
  #infrastructure .features .card:nth-child(3){animation-delay:.10s}
  #infrastructure .features .card:nth-child(4){animation-delay:.14s}
  #infrastructure .features .card:nth-child(5){animation-delay:.18s}
  #infrastructure .features .card:nth-child(6){animation-delay:.22s}
  #infrastructure .features .card:nth-child(7){animation-delay:.26s}
  #infrastructure .features .card:nth-child(8){animation-delay:.30s}
  @keyframes infraIn{ to{opacity:1; transform:translateY(0)} }
}

/* Focus styles for accessibility */
#infrastructure .features .card:focus-within{
  outline:none; box-shadow:0 0 0 4px rgba(241,196,15,.35);
}

/* Small screens */
@media (max-width:560px){
  #infrastructure .features .card h3{ margin-left:56px }
  #infrastructure .features .card p{ margin-left:56px }
}
/* =========================
   PR COVERAGE – media cards
========================= */
#pr h2{
  font-weight:300; letter-spacing:.2px; margin-bottom:.45em;
}
#pr h2::after{
  content:""; display:block; width:84px; height:4px; margin-top:10px; border-radius:999px;
  background:linear-gradient(90deg,#f1c40f,rgba(241,196,15,0));
}

/* grid tune */
#pr .logos{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:16px;
}

/* linked card */
.logo-card{
  display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:12px;
  text-decoration:none; color:#0b0e2b; background:#0a1d3b; /* dark tile for contrast */
  border:1px solid rgba(241,196,15,.18); border-radius:16px; padding:14px;
  box-shadow:0 10px 28px rgba(6,8,28,.16);
  transition:transform .18s ease, box-shadow .25s ease, border-color .2s ease, background .2s ease;
}

/* publisher chip (initials) */
.logo-chip{
  width:44px; height:44px; border-radius:50%;
  display:grid; place-items:center;
  font-weight:300; color:#0b0c22;
  background:linear-gradient(180deg,#f1c40f,#d4ad0b);
  box-shadow:0 10px 24px rgba(241,196,15,.35);
}

/* text */
.logo-card .meta strong{ color:#fff; font-weight:300; display:block; margin-bottom:2px }
.logo-card .meta p{ margin:0; color:#dfe2ff; line-height:1.35; font-size:.95rem }
.logo-card .meta .source{ display:inline-block; margin-top:6px; color:#bfc3ff; font-size:.85rem }

/* external arrow */
.logo-card .ext{
  color:#fff; opacity:.9; font-weight:300;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  width:36px; height:36px; border-radius:10px; display:grid; place-items:center;
}

/* hover/active */
.logo-card:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 44px rgba(6,8,28,.28);
  border-color:rgba(241,196,15,.45);
  background:#111742;
}
.logo-card:active{ transform:translateY(-1px) }

/* light section text contrast fix */
.section--light .logo-card{ color:#fff }
/* ================================
   GALLERY STYLING
================================ */
#gallery {
  position: relative;
}

#gallery h2 {
  font-weight: 800;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
}

#gallery h2::after {
  content: "";
  display: block;
  width: 84px;
  height: 4px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f1c40f, rgba(241, 196, 15, 0));
}

#gallery .gallery-subtitle {
  font-size: 1rem;
  color: #d9dcff;
  opacity: 0.85;
  margin-bottom: 24px;
  max-width: 70ch;
}

/* Responsive grid */
#gallery .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

/* Gallery items */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.35s ease;
}

/* Hover effects */
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Optional lightbox preview */
.gallery-item::after {
  content: "🔍";
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(241, 196, 15, 0.9);
  color: #0b0c22;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #gallery .gallery {
    gap: 14px;
  }
}

@media (max-width: 560px) {
  #gallery h2 {
    font-size: 26px;
  }
}
/* =========================
   FAQ (Accordion – Premium)
========================= */
#faqs{
  position:relative;
}
#faqs h2{
  font-weight:300; letter-spacing:.2px; margin-bottom:.5em;
}
#faqs h2::after{
  content:""; display:block; width:84px; height:4px; margin-top:10px; border-radius:999px;
  background:linear-gradient(90deg,#f1c40f,rgba(241,196,15,0));
}

/* base tile */
#faqs .faq{
  background:#0a1d3b;             /* dark tile on light section */
  color:#fff;
  border:1px solid rgba(241,196,15,.18);
  border-radius:16px;
  margin:12px 0;
  overflow:hidden;
  box-shadow:0 12px 28px rgba(6,8,28,.16);
  transition:box-shadow .25s ease, border-color .2s ease, transform .18s ease;
}
#faqs .faq:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 44px rgba(6,8,28,.26);
  border-color:rgba(241,196,15,.4);
}

/* summary row */
#faqs .faq > summary{
  display:flex; align-items:center; gap:12px;
  padding:16px 18px;
  cursor:pointer;
  list-style:none;                 /* remove default triangle */
  position:relative;
  outline:none;
}
#faqs .faq > summary::-webkit-details-marker{display:none}

/* gold chevron */
#faqs .faq > summary::after{
  content:"";
  margin-left:auto;
  width:10px; height:10px;
  border-right:3px solid #f1c40f;
  border-bottom:3px solid #f1c40f;
  transform:rotate(-45deg);
  transition:transform .2s ease;
}

/* left gold icon bubble (auto, no extra markup) */
#faqs .faq > summary::before{
  content:"❓";
  width:40px; height:40px; flex:0 0 40px;
  display:grid; place-items:center;
  border-radius:50%;
  background:linear-gradient(180deg,#f1c40f,#d7b10b);
  color:#0b0c22; font-weight:300;
  box-shadow:0 8px 22px rgba(241,196,15,.35);
}

/* open state */
#faqs .faq[open] > summary{
  background:#0a1d3b;
  border-bottom:1px solid rgba(241,196,15,.25);
}
#faqs .faq[open] > summary::after{
  transform:rotate(45deg);
}

/* body */
#faqs .faq-body{
  padding:14px 18px 18px;
  color:#e6e7ff;
}

/* lists/text inside */
#faqs .faq-body p{ margin:.2rem 0 0; line-height:1.65 }
#faqs .faq-body .list-dash{
  list-style:disc; padding-left:1.2rem; margin:.2rem 0 0;
}
#faqs .faq-body .list-dash li{ margin:.35rem 0 }

/* focus accessibility */
#faqs .faq:has(> summary:focus-visible){
  box-shadow:0 0 0 4px rgba(241,196,15,.35), 0 8px 28px rgba(6,8,28,.2);
}

/* subtle reveal animation (respects reduced motion) */
@media (prefers-reduced-motion:no-preference){
  #faqs .faq{ opacity:0; transform:translateY(8px); animation:faqIn .45s ease forwards }
  #faqs .faq:nth-of-type(1){animation-delay:.02s}
  #faqs .faq:nth-of-type(2){animation-delay:.06s}
  #faqs .faq:nth-of-type(3){animation-delay:.10s}
  #faqs .faq:nth-of-type(4){animation-delay:.14s}
  #faqs .faq:nth-of-type(5){animation-delay:.18s}
  @keyframes faqIn{ to{ opacity:1; transform:translateY(0) } }
}

/* compact on small screens */
@media (max-width:560px){
  #faqs .faq > summary{ padding:14px 16px }
  #faqs .faq-body{ padding:12px 16px 16px }
}

/* =========================
   FOOTER (Premium, Responsive)
========================= */
.site-footer.section--light{
  background:#fff; color:#0b0e2b;
  border-top:1px solid #eef0f5;
  padding:36px 0 72px;            /* extra space for the back-to-top pill */
}

.footer-inner{
  display:flex; align-items:flex-start; justify-content:space-between; gap:24px;
}

/* Brand line */
.site-footer .logo.sm{
  font-weight:300; letter-spacing:.3px; font-size:1.15rem; line-height:1;
}
.site-footer .logo.sm span{ color:#f1c40f }

.site-footer .muted{
  margin:.5rem 0 0; color:#555b86;
  max-width:56ch;
}

/* nav */
.foot-nav{ display:flex; gap:14px; flex-wrap:wrap; align-items:center }
.foot-nav a{
  position:relative; color:#0a1d3b; text-decoration:none; font-weight:200;
  padding:.25rem 0; opacity:.92; transition:opacity .15s ease, transform .15s ease;
}
.foot-nav a:hover{ opacity:1; transform:translateY(-1px) }
.foot-nav a::after{
  content:""; position:absolute; left:0; right:0; bottom:-3px; height:2px;
  background:linear-gradient(90deg,#f1c40f, rgba(241,196,15,0));
  transform:scaleX(0); transform-origin:left; transition:transform .2s ease;
}
.foot-nav a:hover::after{ transform:scaleX(1) }

/* subtle divider above bottom area (optional, looks classy) */
.site-footer::before{
  content:""; display:block; width:100%; height:1px;
}

/* Back-to-top pill */
.back-to-top{
  --gold:#f1c40f;
  position:fixed; right:18px; bottom:18px; z-index:50;
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px; padding:.65rem .9rem; border-radius:999px;
  background:var(--gold); color:#0b0c22; font-weight:300;
  border:2px solid var(--gold);
  text-decoration:none; box-shadow:0 12px 36px rgba(241,196,15,.45);
  transition:transform .15s ease, box-shadow .2s ease, opacity .2s ease;
}
.back-to-top:hover{ transform:translateY(-2px); box-shadow:0 16px 44px rgba(241,196,15,.55) }

/* Hide the pill until user has scrolled a bit (JS-free trick) */
html:not([data-scrolled="true"]) .back-to-top{ opacity:0; pointer-events:none }

/* Responsive */
@media (max-width: 860px){
  .footer-inner{ flex-direction:column; gap:16px }
  .foot-nav{ gap:10px }
}
.img-logo{
       height: 82px;
    width: 158px;
}