/* ==========================================================================
   SGC v2 — Modern Indigo & Gold
   Display: Playfair Display | Body/UI: Plus Jakarta Sans
   ========================================================================== */

:root{
  --indigo:      #3626C4;
  --indigo-600:  #2E1FA8;
  --indigo-700:  #241680;
  --indigo-deep: #150E3D;
  --gold:        #D39901;
  --gold-light:  #F0B92C;
  --lav-50:      #F5F4FC;
  --lav-100:     #ECEAFA;
  --lav-200:     #DEDAF5;
  --ink:         #14102B;
  --muted:       #6B6580;
  --white:       #FFFFFF;
  --success-bg:  #EAF7EE;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container-max: 1280px;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-soft: 0 10px 30px rgba(54,38,196,0.08);
  --shadow-card: 0 20px 45px rgba(20,16,43,0.09);
  --shadow-hover: 0 26px 55px rgba(54,38,196,0.18);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  font-family: var(--font-body);
  background: var(--lav-50);
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,.font-display{
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.01em;
}

a{ color: var(--indigo); text-decoration:none; }
a:hover{ color: var(--indigo-700); }
img{ max-width:100%; }

.container-sgc{ max-width: var(--container-max); margin:0 auto; padding: 0 24px; }

a:focus-visible, button:focus-visible, .btn:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline: 2px solid var(--gold); outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

/* ---------- Background blobs (signature motif) ---------- */
.blob{
  position:absolute; border-radius:50%; filter: blur(60px); z-index:0; pointer-events:none;
}
.blob-indigo{ background: radial-gradient(circle at 30% 30%, rgba(54,38,196,0.35), rgba(54,38,196,0) 70%); }
.blob-gold{ background: radial-gradient(circle at 30% 30%, rgba(211,153,1,0.30), rgba(211,153,1,0) 70%); }

/* ---------- Pill badge (used constantly per reference) ---------- */
.pill{
  display:inline-flex; align-items:center; gap:8px;
  background: var(--white);
  border: 1px solid var(--lav-200);
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  font-size:0.86rem; font-weight:600; color: var(--indigo-700);
  box-shadow: 0 6px 16px rgba(54,38,196,0.06);
}
.pill i, .pill .icn{ color: var(--gold); font-size:0.95rem; }
.pill.on-dark{ background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); color:#EDEBFB; }
.pill.on-dark i{ color: var(--gold-light); }
.pill.eyebrow-pill{ background: var(--lav-100); border-color: transparent; color: var(--indigo-700); font-family: var(--font-body); letter-spacing:0.02em; }

/* ---------- Topbar ---------- */
.topbar{
  background: var(--indigo-deep); color:#C9C4EA; font-size:0.8rem;
}
.topbar .container-sgc{ display:flex; justify-content:space-between; align-items:center; padding: 8px 24px; }
.topbar a{ color:#C9C4EA; } .topbar a:hover{ color: var(--gold-light); }
.topbar .sep{ opacity:.4; margin:0 10px; }

/* ---------- Navbar (fixed on scroll, light shadow once scrolled) ---------- */
.navbar-sgc{
  background: rgba(245,244,252,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  padding: 14px 0;
  position: sticky; top:0; z-index:1000;
  box-shadow: none;
  transition: box-shadow .25s ease, padding .25s ease, border-color .25s ease;
}
.navbar-sgc.scrolled{
  border-bottom-color: var(--lav-200);
  box-shadow: 0 10px 30px rgba(20,16,43,0.08);
  padding: 10px 0;
}
.navbar-sgc .container-sgc{ display:flex; align-items:center; justify-content:space-between; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ height:44px; width:auto; }
.brand-text{ line-height:1.15; }
.brand-text .name{ font-family: var(--font-display); font-weight:700; font-size:1.14rem; color: var(--ink); display:block; }
.brand-text .tag{ font-size:0.66rem; letter-spacing:0.12em; color: var(--muted); text-transform:uppercase; font-weight:600; }

.nav-sgc{ display:flex; align-items:center; gap:6px; }
.nav-sgc .nav-link-sgc{
  font-size:0.92rem; font-weight:600; color: var(--ink);
  padding: 10px 16px; border-radius: var(--radius-pill);
}
.nav-sgc .nav-link-sgc:hover{ background: var(--lav-100); color:var(--indigo); }
.nav-sgc .nav-link-sgc.active{ background: var(--indigo); color:#fff; }

.dropdown-sgc{ position:relative; }
.dropdown-sgc .dropdown-menu-sgc{
  display:none; position:absolute; left:50%; transform:translateX(-50%);
  top:100%; margin-top:12px; background: var(--white);
  border-radius: var(--radius); border:1px solid var(--lav-200);
  box-shadow: var(--shadow-card); min-width:340px; padding: 12px; z-index:1100;
}
.dropdown-sgc:hover .dropdown-menu-sgc, .dropdown-sgc:focus-within .dropdown-menu-sgc{ display:block; }
.dropdown-menu-sgc a{
  display:flex; align-items:center; gap:12px; padding:11px 12px; color:var(--ink);
  font-size:0.9rem; font-weight:600; border-radius: var(--radius-sm);
}
.dropdown-menu-sgc a:hover{ background: var(--lav-100); color:var(--indigo); }
.dropdown-menu-sgc .dd-icon{
  width:36px; height:36px; border-radius:10px; background: var(--lav-100);
  display:flex; align-items:center; justify-content:center; color:var(--indigo); flex-shrink:0;
}

.nav-cta{
  font-size:0.88rem; font-weight:700; padding:11px 22px;
  background: var(--indigo) !important; color:#fff !important; border-radius: var(--radius-pill);
  box-shadow: 0 10px 24px rgba(54,38,196,0.28);
  margin-left:8px;
}
.nav-cta:hover{ background: var(--indigo-700); }
.nav-cta i{ margin-left:4px; }

.nav-toggle{ display:none; background:var(--white); border:1px solid var(--lav-200); border-radius:10px; padding:9px 11px; }
.nav-toggle i{ font-size:1.1rem; color:var(--indigo); }

/* ---------- Buttons ---------- */
.btn-sgc{
  display:inline-flex; align-items:center; gap:10px;
  font-weight:700; font-size:0.94rem;
  padding: 10px 26px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--indigo); color: var(--indigo); background: transparent;
  transition: all .2s ease;
}
.btn-sgc:hover{ background: var(--indigo); color:#fff; transform: translateY(-2px); }
.btn-sgc.primary{ background: var(--indigo); color:#fff; box-shadow: 0 14px 30px rgba(54,38,196,0.28); }
.btn-sgc.primary:hover{ background: var(--indigo-700); }
.btn-sgc.gold{ background: var(--gold); border-color: var(--gold); color:#fff; box-shadow: 0 14px 30px rgba(211,153,1,0.3); }
.btn-sgc.gold:hover{ background:#B98501; border-color:#B98501; }
.btn-sgc.on-dark{ border-color: rgba(255,255,255,0.5); color:#fff; }
.btn-sgc.on-dark:hover{ background:#fff; color:var(--indigo); }
.btn-sgc .arrow{ transition: transform .2s ease; }
.btn-sgc:hover .arrow{ transform: translateX(4px); }
.btn-sm-sgc{ padding:9px 18px; font-size:0.82rem; border-radius:var(--radius-pill); border:1.5px solid var(--indigo); color:var(--indigo); display:inline-flex; align-items:center; gap:6px; font-weight:700; }
.btn-sm-sgc:hover{ background:var(--indigo); color:#fff; }

/* ---------- Hero ---------- */
.hero{
  position:relative; overflow:hidden;
  background: linear-gradient(180deg, var(--lav-100) 0%, var(--lav-50) 60%);
  padding: 76px 0 60px;
}
.hero .blob-a{ width:480px; height:480px; top:-160px; left:-140px; }
.hero .blob-b{ width:420px; height:420px; bottom:-180px; right:-120px; }
.hero-grid{ display:grid; grid-template-columns: 1.15fr 0.85fr; gap:56px; align-items:center; position:relative; z-index:2; }
.hero h1{
  font-size: clamp(2.4rem, 4.4vw, 3.7rem); line-height:1.1; margin: 22px 0 22px;
}
.hero h1 .accent{ color: var(--indigo); }
.hero h1 .gold-accent{ color: var(--gold); font-style:italic; }
.hero p.lead-sgc{ font-size:1.12rem; color: var(--muted); max-width:540px; margin-bottom:30px; }
.hero-badges{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:32px; }
.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; }

.hero-card{
  background: var(--indigo); color:#fff; border-radius: var(--radius-lg);
  padding: 34px; position:relative; box-shadow: var(--shadow-hover);
  overflow:hidden;
}
.hero-card::before{ content:""; position:absolute; right:-60px; top:-60px; width:200px; height:200px; border-radius:50%; background:rgba(255,255,255,0.07); }
.hero-card .eyebrow{ font-size:0.72rem; text-transform:uppercase; letter-spacing:0.12em; color: var(--gold-light); font-weight:700; }
.hero-card h3{ color:#fff; font-size:1.5rem; margin: 10px 0 18px; }
.hero-card .stat-row{ display:flex; justify-content:space-between; align-items:center; padding:14px 0; border-bottom:1px solid rgba(255,255,255,0.14); font-size:0.9rem; }
.hero-card .stat-row:last-child{ border-bottom:none; }
.hero-card .stat-row .k{ color:#C9C4EA; }
.hero-card .stat-row .v{ color:#fff; font-weight:700; display:flex; align-items:center; gap:8px; }
.hero-card .stat-row .v i{ color: var(--gold-light); }

/* ---------- Sections ---------- */
.section{ padding: 88px 0; position:relative; }
.section.tight{ padding: 56px 0; }
.section.on-lav{ background: var(--lav-50); }
.section.on-white{ background: var(--white); }
.section.on-indigo{ background: var(--indigo-deep); color:#D9D6F0; overflow:hidden; }
.section.on-indigo h2, .section.on-indigo h3, .section.on-indigo h4{ color:#fff; }
.section.on-indigo .lead-sgc{ color:#B7B2DC; }
.section.gradient-band{ background: linear-gradient(135deg, var(--indigo) 0%, #4B3AD9 100%); color:#fff; overflow:hidden; }
.section.gradient-band h2, .section.gradient-band h3{ color:#fff; }

.section-head{ max-width: 720px; margin-bottom: 46px; }
.section-head h2{ font-size: clamp(1.8rem, 3vw, 2.5rem); margin: 14px 0 14px; }
.section-head .lead-sgc{ color: var(--muted); font-size:1.05rem; }

/* ---------- Icon service cards ---------- */
.icon-card{
  background: var(--white); border-radius: var(--radius);
  padding: 30px; height:100%; box-shadow: var(--shadow-soft);
  border: 1px solid transparent; height: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.icon-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--indigo); }
.icon-card .icon-wrap{
  width:56px; height:56px; border-radius:16px;
  background: linear-gradient(135deg, var(--indigo) 0%, #5847E8 100%);
  display:flex; align-items:center; justify-content:center; color:#fff; font-size:1.35rem;
  margin-bottom:18px; box-shadow: 0 10px 20px rgba(54,38,196,0.25);
}
.icon-card.gold .icon-wrap{ background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); box-shadow: 0 10px 20px rgba(211,153,1,0.28); }
.icon-card h3{ font-size:1.22rem; margin-bottom:10px; }
.icon-card p{ color:var(--muted); font-size:0.96rem; margin-bottom:16px; }
.icon-card .card-tag{ font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:0.08em; color:var(--gold); margin-bottom:10px; display:block; }
.icon-card .card-link{ font-weight:700; font-size:0.88rem; color:var(--indigo); display:inline-flex; align-items:center; gap:8px; }
.icon-card:hover .card-link{ color: var(--indigo-700); }
.icon-card .card-link i{ transition: transform .2s ease; }
.icon-card:hover .card-link i{ transform: translateX(4px); }

/* small feature/pillar card */
.feature-card{
  background:#fff; border-radius: var(--radius); padding:26px;
  box-shadow: var(--shadow-soft); height:100%;
}
.feature-card .icon-wrap{ width:48px; height:48px; border-radius:14px; background: var(--lav-100); color:var(--indigo); display:flex; align-items:center; justify-content:center; font-size:1.15rem; margin-bottom:14px; }

.ss-label{ font-size:0.72rem; font-weight:800; text-transform:uppercase; letter-spacing:0.08em; color:var(--indigo); margin-bottom:8px; display:flex; align-items:center; gap:6px; }
.ss-label i{ color: var(--gold); }
.ss-list{ list-style:none; padding:0; margin:0; }
.ss-list li{ padding: 8px 0 8px 26px; position:relative; font-size:0.95rem; }
.ss-list li i{ position:absolute; left:0; top:11px; color: var(--gold); font-size:0.8rem; }
.benefit-strip{
  background: var(--lav-100); border-radius: var(--radius-sm); padding:16px 20px;
  font-size:0.94rem; display:flex; gap:12px; align-items:flex-start;
}
.benefit-strip i{ color:var(--indigo); font-size:1.1rem; margin-top:2px; }
.error-strip{
  background: #FDECEC; border-radius: var(--radius-sm); padding:16px 20px;
  font-size:0.94rem; display:flex; gap:12px; align-items:flex-start; color:#7A1F1F;
}
.error-strip i{ color:#C4302B; font-size:1.1rem; margin-top:2px; }
.deliverables-strip{
  font-size:0.88rem; color:var(--muted); margin-top:14px; display:flex; gap:10px; align-items:flex-start;
}
.deliverables-strip i{ color:var(--gold); margin-top:3px; }

/* ---------- Form submit button loading state ---------- */
.btn-sgc.is-loading{ pointer-events:none; opacity:0.85; }
.btn-sgc .spinner-sgc{
  width:15px; height:15px; border-radius:50%;
  border:2px solid rgba(255,255,255,0.5); border-top-color:#fff;
  animation: sgc-spin 0.7s linear infinite; display:none;
}
.btn-sgc.is-loading .spinner-sgc{ display:inline-block; }
.btn-sgc.is-loading .btn-label-default{ display:none; }
@keyframes sgc-spin{ to{ transform:rotate(360deg); } }

/* ---------- Service Blocks (static sections, no accordion) ---------- */
.sb-rail{ position:relative; }
.sb-row{ display:flex; gap:22px; position:relative; scroll-margin-top:110px; }
.sb-row .sb-line{
  position:absolute; left:27px; top:56px; bottom:-8px; width:2px;
  background: var(--lav-200); z-index:0;
}
.sb-row:last-child .sb-line{ display:none; }
.sb-marker{
  width:56px; height:56px; border-radius:16px; flex-shrink:0;
  background: linear-gradient(135deg, var(--indigo) 0%, #5847E8 100%);
  color:#fff; display:flex; align-items:center; justify-content:center;
  font-size:1.2rem; box-shadow: 0 10px 22px rgba(54,38,196,0.25); position:relative; z-index:2;
}
.sb-content{
  background:#fff; border-radius: var(--radius); padding:24px 28px; flex:1;
  box-shadow: var(--shadow-soft); margin-bottom:26px; transition: box-shadow .2s ease, transform .2s ease;
}
.sb-content:hover{ box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.sb-topline{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; margin-bottom:6px; }
.sb-num-chip{ font-size:0.74rem; font-weight:800; color:var(--gold); letter-spacing:0.04em; }
.sb-content h3{ font-size:1.18rem; margin:0; line-height:1.3; }
.sb-audience{ font-size:0.84rem; color:var(--muted); display:flex; align-items:center; gap:7px; margin-bottom:12px; }
.sb-audience i{ color:var(--indigo); }
.sb-desc{ font-size:0.96rem; color:var(--ink); margin-bottom:16px; }
.sb-scope{
  list-style:none; padding:0; margin:0 0 16px; columns:2; column-gap:28px;
}
.sb-scope li{ padding:6px 0 6px 22px; position:relative; font-size:0.9rem; color:var(--ink); break-inside: avoid; }
.sb-scope li i{ position:absolute; left:0; top:9px; color: var(--gold); font-size:0.72rem; }
.sb-footline{ display:flex; flex-wrap:wrap; gap:10px 26px; padding-top:14px; border-top:1px dashed var(--lav-200); }
.sb-benefit, .sb-deliver{ font-size:0.85rem; display:flex; align-items:flex-start; gap:8px; flex:1 1 260px; }
.sb-benefit i{ color:var(--indigo); margin-top:2px; }
.sb-deliver i{ color:var(--gold); margin-top:2px; }
.sb-benefit strong, .sb-deliver strong{ color:var(--ink); }
.sb-deliver{ color:var(--muted); }
.sb-benefit{ color:var(--ink); }

@media (max-width: 767px){
  .sb-scope{ columns:1; }
  .sb-row{ gap:14px; }
  .sb-marker{ width:44px; height:44px; font-size:1rem; border-radius:12px; }
  .sb-row .sb-line{ left:21px; top:46px; }
  .sb-content{ padding:20px; }
}

/* ---------- Quicknav pill row ---------- */
.quicknav-row{ display:flex; flex-wrap:wrap; gap:10px; margin: -8px 0 40px; }
.quicknav-row a{
  background:#fff; border:1px solid var(--lav-200); border-radius: var(--radius-pill);
  padding: 9px 16px; font-size:0.84rem; font-weight:600; color:var(--ink); display:inline-flex; align-items:center; gap:8px;
}
.quicknav-row a:hover{ background:var(--indigo); color:#fff; border-color:var(--indigo); }
.quicknav-row a i{ color:var(--gold); font-size:0.8rem; }
.quicknav-row a:hover i{ color:#fff; }

/* ---------- Process timeline ---------- */
.timeline-item{ display:flex; gap:22px; position:relative; padding-bottom:38px; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-item::before{
  content:""; position:absolute; left:23px; top:50px; bottom:0; width:2px;
  background: var(--lav-200);
}
.timeline-item:last-child::before{ display:none; }
.timeline-icon{
  width:48px; height:48px; border-radius:14px; background: var(--indigo); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:1.1rem; flex-shrink:0;
  box-shadow: 0 10px 20px rgba(54,38,196,0.25); z-index:2;
}
.timeline-item h4{ font-size:1.12rem; margin-bottom:6px; }
.timeline-item p{ color:var(--muted); margin:0; font-size:0.95rem; }
.section.on-indigo .timeline-item::before{ background: rgba(255,255,255,0.14); }
.section.on-indigo .timeline-item h4{ color:#fff; }
.section.on-indigo .timeline-item p{ color:#B7B2DC; }
.section.on-indigo .timeline-icon{ background: var(--gold); }

/* ---------- Stat strip ---------- */
.stat-strip{ display:flex; flex-wrap:wrap; gap:20px; }
.stat-pill{
  flex:1 1 200px; background:#fff; border-radius: var(--radius); padding:26px;
  box-shadow: var(--shadow-soft); text-align:center;
}
.stat-pill .num{ font-family: var(--font-display); font-size:2.3rem; color: var(--indigo); font-weight:700; }
.stat-pill .lbl{ font-size:0.8rem; color:var(--muted); font-weight:600; text-transform:uppercase; letter-spacing:0.05em; }

/* ---------- Engagement / pricing-style cards ---------- */
.engage-card{
  background:#fff; border-radius: var(--radius); padding:28px; height:100%;
  box-shadow: var(--shadow-soft); border: 1px solid transparent; transition: all .25s ease;
}
.engage-card:hover{ border-color: var(--indigo); transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.engage-card .icon-wrap{ width:52px; height:52px; border-radius:14px; background: var(--lav-100); color:var(--indigo); display:flex; align-items:center; justify-content:center; font-size:1.2rem; margin-bottom:16px; }
.engage-card h4{ font-size:1.1rem; margin-bottom:8px; }
.engage-card p{ color:var(--muted); font-size:0.92rem; margin:0; }

/* ---------- CTA band ---------- */
.cta-band{
  background: linear-gradient(135deg, var(--indigo) 0%, #4B3AD9 100%);
  color:#fff; padding: 60px 0; border-radius: var(--radius-lg);
  margin: 0 auto; position:relative; overflow:hidden;
}
.cta-band::before{ content:""; position:absolute; right:-80px; bottom:-100px; width:280px; height:280px; border-radius:50%; background: rgba(255,255,255,0.08); }
.cta-band::after{ content:""; position:absolute; left:-60px; top:-90px; width:200px; height:200px; border-radius:50%; background: rgba(211,153,1,0.18); }
.cta-band h2{ color:#fff; margin-bottom:8px; font-size:2rem; }
.cta-band p{ color:#E4E2F7; margin:0; }
.cta-band .row-flex{ display:flex; justify-content:space-between; align-items:center; gap:30px; flex-wrap:wrap; position:relative; z-index:2; }

/* ---------- Forms ---------- */
.form-sgc label{ font-size:0.82rem; font-weight:700; color:var(--ink); margin-bottom:8px; display:flex; align-items:center; gap:6px; }
.form-sgc label i{ color:var(--gold); }
.form-sgc .form-control, .form-sgc .form-select{
  border-radius: var(--radius-sm); border:1.5px solid var(--lav-200); background:#fff;
  padding: 13px 16px; font-family: var(--font-body); font-size:0.96rem;
}
.form-sgc .form-control:focus, .form-sgc .form-select:focus{ border-color: var(--indigo); box-shadow: 0 0 0 4px rgba(54,38,196,0.1); }
.form-sgc textarea.form-control{ min-height:130px; }
.form-note{ font-size:0.82rem; color:var(--muted); }
.contact-icon-row{ display:flex; align-items:flex-start; gap:16px; margin-bottom:22px; }
.contact-icon-row .ic{ width:46px; height:46px; border-radius:14px; background:rgba(255,255,255,0.12); color:var(--gold-light); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:1.05rem; }
.contact-icon-row h4{ color:#fff; font-size:0.98rem; margin-bottom:3px; }
.contact-icon-row p, .contact-icon-row a{ color:#C9C4EA; font-size:0.92rem; margin:0; }
.contact-icon-row a:hover{ color:#fff; }

/* ---------- Footer ---------- */
.footer-sgc{ background: var(--indigo-deep); color:#B7B2DC; padding: 64px 0 24px; }
.footer-sgc h5{ color:#fff; font-size:0.85rem; text-transform:uppercase; letter-spacing:0.08em; font-weight:700; margin-bottom:18px; }
.footer-sgc a{ color:#B7B2DC; } .footer-sgc a:hover{ color:var(--gold-light); }
.footer-sgc .flinks li{ margin-bottom:11px; font-size:0.92rem; display:flex; align-items:center; gap:8px; }
.footer-sgc .flinks li i{ color: var(--gold); font-size:0.8rem; }
.foot-brand{ display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.foot-brand img{ height:40px; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,0.1); margin-top:44px; padding-top:22px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:0.82rem; color:#8B85B3; }
.footer-social{ display:flex; gap:10px; margin-top:16px; }
.footer-social a{
  width:40px; height:40px; border-radius:12px; background: rgba(255,255,255,0.06);
  display:flex; align-items:center; justify-content:center; color:#fff;
}
.footer-social a:hover{ background: var(--gold); }

/* ---------- Page header ---------- */
.page-header{
  position:relative; overflow:hidden;
  background: linear-gradient(135deg, var(--indigo) 0%, #4B3AD9 100%);
  color:#fff; padding: 64px 0 90px;
}
.page-header .blob{ width:340px; height:340px; }
.page-header .blob-1{ top:-140px; right:-100px; background: radial-gradient(circle, rgba(211,153,1,0.35), transparent 70%); }
.page-header .crumb{ font-size:0.85rem; color:#C9C4EA; margin-bottom:16px; position:relative; z-index:2; }
.page-header .crumb a{ color:#C9C4EA; } .page-header .crumb a:hover{ color:#fff; }
.page-header h1{ color:#fff; font-size: clamp(2.1rem,3.8vw,3rem); margin-bottom:14px; position:relative; z-index:2; max-width:760px; }
.page-header p{ color:#E4E2F7; max-width:640px; margin:0; position:relative; z-index:2; font-size:1.05rem; }

.page-header-card{
  background:#fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
  margin-top:-56px; position:relative; z-index:5; padding: 28px 32px;
}

/* ---------- Disclaimer box ---------- */
.disclaimer-box{
  background: var(--lav-100); border-radius: var(--radius); padding:24px 28px;
  font-size:0.92rem; color:var(--muted); display:flex; gap:16px; align-items:flex-start;
}
.disclaimer-box i{ color:var(--indigo); font-size:1.3rem; margin-top:2px; }

/* ---------- Utility ---------- */
.text-gold{ color:var(--gold) !important; }
.text-indigo{ color:var(--indigo) !important; }
.rounded-badge-num{
  width:34px; height:34px; border-radius:10px; background:var(--gold); color:#fff;
  display:inline-flex; align-items:center; justify-content:center; font-weight:800; font-size:0.85rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px){
  .hero-grid{ grid-template-columns: 1fr; }
  .nav-sgc{
    position:fixed; top:0; right:-100%; height:100vh; width:84%; max-width:340px;
    background:#fff; flex-direction:column; align-items:stretch; gap:6px;
    padding: 100px 22px 28px; transition: right .3s ease; box-shadow:-20px 0 50px rgba(20,16,43,0.18);
    overflow-y:auto; border-radius: 0;
  }
  .nav-sgc.open{ right:0; }
  .nav-sgc .nav-link-sgc{ width:100%; }
  .dropdown-sgc{ width:100%; }
  .dropdown-menu-sgc{ position:static; transform:none; display:none; box-shadow:none; border:none; padding-left:6px; margin-top:6px; min-width:0; }
  .dropdown-sgc.open .dropdown-menu-sgc{ display:block; }
  .nav-toggle{ display:flex; align-items:center; justify-content:center; }
  .ss-grid{ grid-template-columns:1fr; }
  .cta-band .row-flex{ text-align:center; justify-content:center; }
}
