/* ═══════════════════════════════════════════════════════════════
   GEM PRO CONSULT — Corporate Modern Design System
   Theme: Slate-Navy (#0F172A) + Amber Gold (#F59E0B) + White (#FFFFFF)
   Style Reference: McKinsey Tech / Accenture Consulting Style
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy:         #0F172A; /* Deep Slate Navy */
  --navy-light:   #1E293B; /* Slate 800 */
  --navy-dark:    #0B0F19; /* Sleek Black Slate */
  --gold:         #F59E0B; /* Vibrant Amber Gold */
  --gold-light:   #FBBF24; /* Lighter Amber */
  --gold-dark:    #D97706; /* Dark Amber */
  --white:        #FFFFFF;
  --off-white:    #F8FAFC; /* Slate 50 */
  --light-gray:   #F1F5F9; /* Slate 100 */
  --border:       #E2E8F0; /* Slate 200 */
  --text-dark:    #0F172A;
  --text-main:    #334155; /* Slate 700 */
  --text-muted:   #64748B; /* Slate 500 */
  --text-light:   #94A3B8; /* Slate 400 */
  --success:      #10B981; /* Emerald green */
  --error:        #EF4444; /* Rose red */

  --font-display: 'Outfit', sans-serif; /* Modern tech geometric */
  --font-body:    'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;

  --shadow-sm:    0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md:    0 10px 25px rgba(15, 23, 42, 0.08);
  --shadow-lg:    0 20px 40px rgba(15, 23, 42, 0.12);
  --shadow-gold:  0 10px 25px rgba(245, 158, 11, 0.2);

  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;

  --transition:   0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --nav-height:   80px;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; outline: none; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.25; color: var(--text-dark); font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.55rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--text-muted); line-height: 1.8; }

/* ─── LAYOUT CONTAINERS ─── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 110px 0; position: relative; }
.section-sm { padding: 70px 0; position: relative; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-3-2 { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; }
.grid-2-3 { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 4rem; }

@media (max-width: 992px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-3-2, .grid-2-3 { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
}

/* ─── SECTION LABELS & HEADINGS ─── */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 0.4rem 1.15rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.section-heading {
  font-family: var(--font-display);
  color: var(--navy);
  margin-bottom: 1.25rem;
  font-weight: 800;
}
.section-heading span { color: var(--gold-dark); }
.section-heading::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--navy-light));
  margin-top: 1rem;
  border-radius: 4px;
}
.section-heading.center::after { margin: 1rem auto 0; }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  line-height: 1.8;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.15);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--navy-light);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.25);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ─── NAVIGATION (Glassmorphic Floating Navbar) ─── */
.navbar {
  position: fixed;
  top: 1.25rem; left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1200px;
  height: 72px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 40px;
  z-index: 1000;
  transition: all var(--transition);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}
.navbar.scrolled {
  top: 0;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  border-left: none; border-right: none; border-top: none;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 2rem;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.logo-name span { color: var(--gold-dark); }
.logo-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-menu { display: flex; align-items: center; gap: 0.2rem; flex-wrap: nowrap; }
.nav-link {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 0.5rem 0.7rem;
  border-radius: 20px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--navy); background: rgba(15, 23, 42, 0.05); }

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  font-weight: 600;
  padding: 0.5rem 1.15rem;
  border-radius: 20px;
  margin-left: 0.4rem;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: var(--shadow-gold); }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 1120px) {
  .mobile-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 90px;
    left: 4%; right: 4%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-cta { margin-left: 0; width: 100%; text-align: center; }
}

/* ─── HERO SECTION (Split-Screen Modern Graphics Layout) ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
  padding-top: calc(var(--nav-height) + 2rem);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(30, 58, 138, 0.25) 0%, rgba(11, 15, 25, 0.98) 80%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 5rem;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content { max-width: 720px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.45rem 1.15rem;
  border-radius: 50px;
  margin-bottom: 2rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 850;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.hero-buttons { display: flex; gap: 1.25rem; flex-wrap: wrap; }

/* Hero Right Floating Graphical Widgets */
.hero-graphic {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  justify-content: center;
}
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-graphic { display: none; }
  .hero-content { margin: 0 auto; }
  .hero-buttons { justify-content: center; }
}
.glass-widget {
  background: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  transition: border-color var(--transition), transform var(--transition);
  animation: floatWidget 5s ease-in-out infinite alternate;
}
.glass-widget:nth-child(2) {
  animation-delay: 1.5s;
  margin-left: 3rem;
}
.glass-widget:nth-child(3) {
  animation-delay: 3s;
  margin-left: -1rem;
}
.glass-widget:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(30, 41, 59, 0.55);
}
.glass-widget-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.glass-widget-info h4 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.15rem;
}
.glass-widget-info p {
  font-size: 0.8rem;
  color: var(--text-light);
}
@keyframes floatWidget {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

/* ─── TRUST STRIP ─── */
.trust-strip {
  background: var(--navy-light);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 2rem 0;
  position: relative;
  z-index: 5;
}
.trust-strip-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.trust-badge-icon {
  font-size: 1.5rem;
  color: var(--gold);
}
.trust-badge-text {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media(max-width: 768px) {
  .trust-strip-inner { justify-content: flex-start; display: grid; grid-template-columns: 1fr 1fr; }
}

/* ─── CARDS & SERVICES (Thin borders & glowing shadows) ─── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 2.75rem 2.25rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08), 0 4px 20px rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.35);
}
.card:hover::before {
  opacity: 1;
}
.card-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  background: rgba(15, 23, 42, 0.04);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.75rem;
  transition: all var(--transition);
}
.card:hover .card-icon {
  background: var(--navy);
  color: var(--gold);
}

/* Checklists */
.checklist { list-style: none; padding: 0; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.45rem 0;
  font-size: 0.95rem;
  color: var(--text-main);
}
.checklist li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--success);
  font-size: 0.72rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: rgba(16, 185, 129, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Section design shifts */
.bg-light { 
  background: var(--off-white);
  background-image: radial-gradient(var(--border) 1px, transparent 1px);
  background-size: 24px 24px;
}
.bg-white { background: var(--white); }
.bg-navy { background: var(--navy); color: rgba(255,255,255,0.7); }
.bg-navy .section-heading { color: var(--white); }
.bg-navy .section-desc { color: rgba(255,255,255,0.6); }

/* ─── TIMELINE (Advisory Dot indicators) ─── */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 2.5rem;
  border-left: 2px solid var(--border);
}
.timeline-item {
  position: relative;
  margin-bottom: 3.5rem;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -3.05rem;
  top: 0.15rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 4px solid var(--white);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
}
.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-dark);
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}
.timeline-title {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

/* ─── INDUSTRY BADGES ─── */
.industry-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.industry-badge i { color: var(--gold-dark); font-size: 1.15rem; }
.industry-badge:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

/* ─── INNER PAGES HERO ─── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 160px 0 90px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
}
.page-hero .section-label { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); color: var(--gold); }
.page-hero h1 { color: var(--white); font-family: var(--font-display); }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 600px; font-size: 1.05rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 500;
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--gold); }

/* ─── DYNAMIC FOOTER ─── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 90px 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1fr;
  gap: 4rem;
  padding-bottom: 4.5rem;
}
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
@media (max-width: 576px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-desc { font-size: 0.88rem; line-height: 1.8; margin-bottom: 1.75rem; }
.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  margin-bottom: 1.15rem;
}
.footer-contact-item i { color: var(--gold); font-size: 0.9rem; margin-top: 0.25rem; flex-shrink: 0; }
.footer-contact-item a { color: inherit; }
.footer-contact-item a:hover { color: var(--gold-dark); }
.footer .footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer .footer-contact-item a:hover { color: var(--gold); }

.social-links { display: flex; gap: 0.65rem; margin-top: 1.5rem; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: all var(--transition);
}
.social-btn:hover { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.75rem 0;
  font-size: 0.82rem;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.4); }
.footer-legal a:hover { color: var(--gold); }

/* ─── FORMS ─── */
.form-group { margin-bottom: 1.35rem; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 0.45rem; font-family: var(--font-heading); }
.form-control {
  width: 100%;
  padding: 0.8rem 1.15rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--gold-dark); box-shadow: 0 0 0 3px rgba(245,158,11,0.15); }
textarea.form-control { min-height: 120px; resize: vertical; }

.lead-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.75rem;
}

/* ─── SUCCESS SCREEN ─── */
.success-msg {
  display: none;
  text-align: center;
  padding: 3rem 1.5rem;
}
.success-msg i { font-size: 2.8rem; color: var(--success); margin-bottom: 1.25rem; }
.success-msg h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 0.6rem; font-family: var(--font-heading); }

/* ─── TOAST NOTIFICATION ─── */
.toast {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 10000;
  transform: translateY(-100px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--shadow-lg);
  color: var(--white);
  font-size: 0.88rem;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.error { border-color: var(--error); }
.toast i { font-size: 1.1rem; }
.toast.success i { color: var(--success); }
.toast.error i { color: var(--error); }

/* ─── STATS ROW (Advisory box widgets) ─── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.stat-box { background: var(--white); padding: 2.75rem 1.5rem; text-align: center; }
.stat-num { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 800; color: var(--navy); line-height: 1; letter-spacing: -0.03em; }
.stat-num span { color: var(--gold-dark); }
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.5rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

@media (max-width: 768px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr; }
}

/* Scroll reveal helper class */
.reveal { opacity: 0; transform: translateY(20px); transition: all 0.65s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }
.reveal.delay-3 { transition-delay: 0.45s; }
