/* ==========================================================================
   PHOENIX RISE — ULTRA-MODERN BLUE & CONTRAST (BLACK/WHITE) DESIGN SYSTEM
   REVISED SPACING & BREATHABLE MARGINS
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,500;0,9..144,700;1,9..144,400&family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* High-Contrast Color System */
  --bg-black: #070A12;
  --bg-black-surface: #0E1526;
  --bg-black-card: rgba(14, 21, 38, 0.85);

  --bg-white: #FFFFFF;
  --bg-white-subtle: #F8FAFC;
  --bg-white-card: #FFFFFF;

  /* Electric Blue Gradient Suite */
  --blue-primary: #2563EB;
  --blue-light: #3B82F6;
  --blue-cyan: #06B6D4;
  --blue-bright: #60A5FA;
  --blue-glow: rgba(37, 99, 235, 0.35);
  --blue-cyan-glow: rgba(6, 182, 212, 0.3);

  --accent-emerald: #10B981;
  --accent-rose: #EF4444;

  /* Text Colors */
  --text-on-dark: #F8FAFC;
  --text-on-dark-muted: #94A3B8;
  --text-on-dark-dim: #64748B;

  --text-on-light: #0F172A;
  --text-on-light-muted: #475569;
  --text-on-light-dim: #94A3B8;

  /* Borders & Shadows */
  --border-glass-dark: rgba(255, 255, 255, 0.1);
  --border-glass-blue: rgba(59, 130, 246, 0.35);
  --border-light: rgba(15, 23, 42, 0.12);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-blue-glow: 0 10px 30px -5px rgba(37, 99, 235, 0.3);
  --shadow-card-dark: 0 24px 48px -15px rgba(0, 0, 0, 0.65);
  --shadow-card-light: 0 20px 45px -15px rgba(15, 23, 42, 0.08);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-black);
  color: var(--text-on-dark);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  line-height: 1.7;
  background: var(--bg-black);
  color: var(--text-on-dark);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, .heading-display {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

/* Gradient Text Utilities */
.text-gradient-blue {
  background: linear-gradient(135deg, #FFFFFF 20%, var(--blue-bright) 70%, var(--blue-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #FFFFFF 10%, var(--blue-cyan) 60%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-blue-dark {
  background: linear-gradient(135deg, var(--text-on-light) 20%, var(--blue-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img, svg {
  display: block;
  max-width: 100%;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

/* ---------- BUTTONS & BADGES ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--blue-primary) 0%, #1D4ED8 100%);
  color: #FFFFFF;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-size: 15.5px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: var(--shadow-blue-glow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-primary) 100%);
  box-shadow: 0 14px 38px rgba(37, 99, 235, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-on-dark);
  padding: 16px 28px;
  border-radius: var(--radius-full);
  font-size: 15.5px;
  font-weight: 600;
  border: 1px solid var(--border-glass-dark);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.badge-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 24px;
}

.badge-status .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--blue-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--blue-cyan);
  animation: pulse-glow-blue 2s infinite;
}

@keyframes pulse-glow-blue {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(6, 182, 212, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(6, 182, 212, 0); }
}

/* ---------- NAVBAR ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 10, 18, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-glass-dark);
  transition: all var(--transition-fast);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  max-width: 1240px;
  margin: 0 auto;
}

.brand img {
  height: 36px;
  width: auto;
  transition: transform var(--transition-fast);
}

.brand:hover img {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 15px;
  font-weight: 500;
}

.nav-links a {
  color: var(--text-on-dark-muted);
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-on-dark);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--blue-light);
  border-radius: 2px;
  transition: width var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: rgba(37, 99, 235, 0.15) !important;
  border: 1px solid rgba(59, 130, 246, 0.35) !important;
  color: var(--blue-bright) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-full) !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  transition: all var(--transition-fast) !important;
}

.nav-cta:hover {
  background: var(--blue-primary) !important;
  color: #FFFFFF !important;
  border-color: var(--blue-primary) !important;
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.45);
}

.nav-cta::after {
  display: none !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-on-dark);
  font-size: 26px;
  cursor: pointer;
  padding: 6px;
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-on-dark-dim);
  padding: 28px 0 16px;
}

.breadcrumb a {
  color: var(--text-on-dark-muted);
}

.breadcrumb a:hover {
  color: var(--blue-bright);
}

/* ---------- HERO SECTION (BLACK BACKGROUND WITH REGIONAL IMAGE & BLUE GRADIENTS) ---------- */
.hero {
  padding: 104px 0 80px;
  position: relative;
  background: var(--bg-black);
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(180deg, rgba(7, 10, 18, 0.52) 0%, rgba(7, 10, 18, 0.70) 55%, rgba(7, 10, 18, 0.92) 100%),
    radial-gradient(circle at 75% 35%, rgba(37, 99, 235, 0.32) 0%, rgba(7, 10, 18, 0.5) 70%),
    url('assets/bg-hero-region.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.58;
  filter: saturate(1.18) brightness(0.95);
  pointer-events: none;
  z-index: 0;
}

.hero .wrap {
  position: relative;
  z-index: 2;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 30%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, rgba(6, 182, 212, 0.08) 50%, transparent 80%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 1;
}

.badge-status-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.35);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--blue-cyan);
  margin-bottom: 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 80px;
}

h1.hero-head {
  font-size: clamp(38px, 4.8vw, 58px);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero-sub {
  font-size: 18.5px;
  color: var(--text-on-dark-muted);
  max-width: 52ch;
  line-height: 1.65;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

/* Hero Digital Marketing Visual Showcase Card */
.hero-visual-card {
  background: var(--bg-black-card);
  border: 1px solid var(--border-glass-blue);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card-dark), 0 0 40px rgba(37, 99, 235, 0.15);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.hero-visual-card:hover {
  border-color: var(--blue-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-dark), 0 0 55px rgba(37, 99, 235, 0.25);
}

.visual-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--border-glass-dark);
}

.visual-dots {
  display: flex;
  gap: 8px;
}

.visual-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.visual-dot.blue { background: var(--blue-light); }

.visual-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue-cyan);
}

/* Dashboard Mockup Component inside Hero */
.dashboard-mockup {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.mockup-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass-dark);
  border-radius: var(--radius-md);
  padding: 16px;
}

.mockup-card-title {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-on-dark-dim);
  margin-bottom: 6px;
}

.mockup-card-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 2px;
}

.mockup-card-change {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--accent-emerald);
}

.mockup-chart-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass-dark);
  border-radius: var(--radius-md);
  padding: 20px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 12.5px;
  color: var(--text-on-dark-muted);
  margin-bottom: 16px;
}

.chart-header strong {
  flex-shrink: 0;
  font-size: 12px;
}

.chart-bars-wrap {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 72px;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(to top, rgba(37, 99, 235, 0.2), rgba(59, 130, 246, 0.5));
  border-radius: 4px 4px 0 0;
  transition: all 0.3s ease;
}

.chart-bar.active {
  background: linear-gradient(to top, var(--blue-primary), var(--blue-cyan));
  box-shadow: 0 0 18px rgba(6, 182, 212, 0.5);
}

.hero-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--border-glass-dark);
  border-bottom: 1px solid var(--border-glass-dark);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  flex-wrap: wrap;
}

.hero-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-strip-item svg {
  width: 20px;
  height: 20px;
  color: var(--blue-bright);
}

/* ---------- SECTION SYSTEM & BREATHABLE HEADINGS ---------- */
.section-pad {
  padding: 116px 0;
  position: relative;
}

.section-head {
  max-width: 680px;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-cyan);
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-head p {
  color: var(--text-on-dark-muted);
  font-size: 17.5px;
  line-height: 1.65;
}

/* ---------- SECTION 2: DIFFERENTIAL (WHITE BACKGROUND CONTRAST) ---------- */
.section-white {
  background: var(--bg-white);
  color: var(--text-on-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-white .section-tag {
  color: var(--blue-primary);
}

.section-white .section-head h2 {
  color: var(--text-on-light);
}

.section-white .section-head p {
  color: var(--text-on-light-muted);
}

.ledger-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.ledger-card-light {
  background: var(--bg-white-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-card-light);
  transition: all var(--transition-normal);
}

.ledger-card-light.is-them {
  background: #F8FAFC;
  border-color: rgba(239, 68, 68, 0.2);
}

.ledger-card-light.is-us {
  background: linear-gradient(160deg, #FFFFFF 0%, rgba(37, 99, 235, 0.04) 100%);
  border: 2px solid var(--blue-primary);
  box-shadow: 0 16px 40px -10px rgba(37, 99, 235, 0.15);
}

.ledger-badge-light {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.is-them .ledger-badge-light {
  background: rgba(239, 68, 68, 0.1);
  color: var(--accent-rose);
}

.is-us .ledger-badge-light {
  background: rgba(37, 99, 235, 0.12);
  color: var(--blue-primary);
}

.ledger-title-light {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--text-on-light);
}

.ledger-list-light {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ledger-list-light li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  color: var(--text-on-light-muted);
  line-height: 1.6;
}

.is-us .ledger-list-light li {
  color: var(--text-on-light);
  font-weight: 500;
}

.ledger-icon-light {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}

.is-them .ledger-icon-light {
  background: rgba(239, 68, 68, 0.1);
  color: var(--accent-rose);
}

.is-us .ledger-icon-light {
  background: var(--blue-primary);
  color: #FFFFFF;
}

/* ---------- SECTION 3: SERVICES (BLACK BACKGROUND WITH ELECTRIC BLUE CARDS) ---------- */
.section-black {
  background: var(--bg-black);
  color: var(--text-on-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card-black {
  background: var(--bg-black-card);
  border: 1px solid var(--border-glass-dark);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card-black::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-primary), var(--blue-cyan));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.service-card-black:hover {
  transform: translateY(-6px);
  border-color: var(--border-glass-blue);
  box-shadow: 0 20px 45px -10px rgba(37, 99, 235, 0.25);
}

.service-card-black:hover::before {
  opacity: 1;
}

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}

.service-icon-blue {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: var(--blue-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.service-card-black:hover .service-icon-blue {
  background: var(--blue-primary);
  color: #FFFFFF;
  box-shadow: 0 0 25px rgba(37, 99, 235, 0.5);
}

.service-num {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--text-on-dark-dim);
}

.service-card-black h3 {
  font-size: 23px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-card-black h3 a:hover {
  color: var(--blue-bright);
}

.service-card-black p {
  color: var(--text-on-dark-muted);
  font-size: 15.5px;
  margin-bottom: 28px;
  line-height: 1.65;
}

.service-feats-dark {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--border-glass-dark);
}

.service-feats-dark li {
  font-size: 14.5px;
  color: var(--text-on-dark-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-feats-dark li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-cyan);
  flex-shrink: 0;
}

.service-link-blue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--blue-bright);
}

.service-link-blue svg {
  transition: transform var(--transition-fast);
}

.service-card-black:hover .service-link-blue svg {
  transform: translateX(6px);
}

/* ---------- SECTION 4: PROCESS (WHITE / LIGHT SURFACE CONTRAST) ---------- */
.section-light-surface {
  background: var(--bg-white-subtle);
  color: var(--text-on-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step-light {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-card-light);
  transition: all var(--transition-normal);
}

.process-step-light:hover {
  border-color: var(--blue-primary);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -10px rgba(37, 99, 235, 0.15);
}

.step-num-blue {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--blue-primary);
  background: rgba(37, 99, 235, 0.1);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.process-step-light h3 {
  font-size: 20px;
  margin-bottom: 14px;
  color: var(--text-on-light);
}

.process-step-light p {
  font-size: 14.5px;
  color: var(--text-on-light-muted);
  line-height: 1.6;
}

/* ---------- SECTION 5: RESULTS (DARK DEEP BLUE LUXURY) ---------- */
.results-section-blue {
  background: linear-gradient(180deg, var(--bg-black) 0%, var(--bg-black-surface) 50%, var(--bg-black) 100%);
  border-top: 1px solid var(--border-glass-dark);
  border-bottom: 1px solid var(--border-glass-dark);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.stat-card-blue {
  background: var(--bg-black-card);
  border: 1px solid var(--border-glass-blue);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  backdrop-filter: blur(16px);
  text-align: center;
  transition: all var(--transition-normal);
}

.stat-card-blue:hover {
  border-color: var(--blue-light);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -10px rgba(37, 99, 235, 0.3);
}

.stat-num-blue {
  font-size: clamp(42px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #FFFFFF 30%, var(--blue-bright) 70%, var(--blue-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label-dark {
  font-size: 15px;
  color: var(--text-on-dark-muted);
  max-width: 28ch;
  margin: 0 auto;
  line-height: 1.5;
}

/* ---------- SECTION 6: BLOG (WHITE BACKGROUND) ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-thumb-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--border-light);
  background: var(--bg-white-subtle);
}

.section-black .blog-thumb-wrap {
  border-color: var(--border-glass-dark);
  background: var(--bg-black-surface);
}

.blog-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.blog-card-light:hover .blog-thumb-wrap img {
  transform: scale(1.06);
}

.blog-card-light {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
}

.blog-card-light:hover {
  border-color: var(--blue-primary);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -10px rgba(37, 99, 235, 0.15);
}

.blog-meta-light {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-on-light-dim);
  margin-bottom: 18px;
}

.blog-tag-blue {
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue-primary);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.blog-card-light h3 {
  font-size: 19.5px;
  line-height: 1.4;
  margin-bottom: 16px;
  color: var(--text-on-light);
}

.blog-card-light h3 a:hover {
  color: var(--blue-primary);
}

.blog-card-light p {
  font-size: 14.5px;
  color: var(--text-on-light-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ---------- ARTICLE PAGE (READABILITY & BREATHING ROOM) ---------- */
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 0 72px;
}

.article-body h2 {
  font-size: 28px;
  margin: 48px 0 20px;
  line-height: 1.3;
}

.article-body h3 {
  font-size: 21px;
  margin: 32px 0 16px;
}

.article-body p {
  font-size: 17px;
  color: var(--text-on-dark-muted);
  margin-bottom: 24px;
  line-height: 1.75;
}

.section-white .article-body p {
  color: var(--text-on-light-muted);
}

.article-body blockquote {
  border-left: 4px solid var(--blue-primary);
  background: rgba(37, 99, 235, 0.07);
  padding: 24px 30px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 36px 0;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.6;
}

/* ---------- FAQ ACCORDION STYLING & ELEGANT MICRO-INTERACTIONS ---------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 840px;
  margin-top: 32px;
}

.faq-item {
  background: var(--bg-black-card);
  border: 1px solid var(--border-glass-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--border-glass-blue);
}

.faq-item.active {
  border-color: var(--blue-primary);
  box-shadow: 0 12px 30px -10px rgba(37, 99, 235, 0.2);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-on-dark);
  font-family: inherit;
  font-size: 16.5px;
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--blue-bright);
}

.faq-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.faq-icon {
  width: 16px;
  height: 16px;
  max-width: 16px;
  max-height: 16px;
  flex-shrink: 0;
  color: var(--blue-bright);
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.faq-item.active .faq-icon-wrap {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.45);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 360px;
  padding: 0 24px 22px;
}

.faq-answer p {
  color: var(--text-on-dark-muted);
  font-size: 15px;
  line-height: 1.65;
  border-top: 1px solid var(--border-glass-dark);
  padding-top: 18px;
}

/* ---------- SECTION 7: CTA & DIAGNOSTIC FORM ---------- */
.cta-section {
  padding: 116px 0;
  position: relative;
  background: var(--bg-black);
}

.cta-box-blue {
  background: linear-gradient(135deg, rgba(14, 21, 38, 0.95) 0%, rgba(7, 10, 18, 0.98) 100%);
  border: 1px solid var(--border-glass-blue);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 55px -10px rgba(0, 0, 0, 0.75), 0 0 50px rgba(37, 99, 235, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.cta-text h2 {
  font-size: clamp(30px, 3.6vw, 42px);
  margin-bottom: 20px;
  line-height: 1.25;
}

.cta-text p {
  color: var(--text-on-dark-muted);
  font-size: 17px;
  margin-bottom: 36px;
  line-height: 1.65;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  color: var(--text-on-dark-muted);
}

.contact-info-item svg {
  width: 22px;
  height: 22px;
  color: var(--blue-bright);
}

/* Lead Diagnostic Form Spacing */
.lead-form-blue {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: rgba(7, 10, 18, 0.75);
  border: 1px solid var(--border-glass-dark);
  padding: 38px 32px;
  border-radius: var(--radius-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-on-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass-dark);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text-on-dark);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

select.form-control option {
  background: var(--bg-black-surface);
  color: var(--text-on-dark);
}

.form-submit-btn {
  width: 100%;
  margin-top: 10px;
  padding: 18px 28px;
}

.form-success-msg {
  display: none;
  padding: 18px 20px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-sm);
  color: var(--accent-emerald);
  font-size: 14.5px;
  text-align: center;
  font-weight: 600;
  line-height: 1.6;
}

/* ---------- FLOATING WHATSAPP BUTTON ---------- */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #FFFFFF;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  font-size: 14.5px;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.65);
}

.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* ---------- FOOTER ---------- */
footer {
  border-top: 1px solid var(--border-glass-dark);
  padding: 48px 0;
  background: var(--bg-black);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text-on-dark-dim);
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-links a:hover {
  color: var(--blue-bright);
}

/* ---------- RESPONSIVE BREAKPOINTS ---------- */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .ledger-grid, .services-grid, .cta-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .stat-grid, .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .cta-box-blue {
    padding: 44px 32px;
  }
}

@media (max-width: 768px) {
  .wrap {
    padding: 0 20px;
  }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.mobile-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    background: rgba(7, 10, 18, 0.98);
    backdrop-filter: blur(24px);
    padding: 28px 32px;
    border-bottom: 1px solid var(--border-glass-dark);
  }
  .process-grid { grid-template-columns: 1fr; }
  .cta-box-blue { padding: 36px 24px; }
  .lead-form-blue { padding: 28px 20px; }
  .floating-whatsapp span { display: none; }
  .floating-whatsapp { padding: 16px; border-radius: 50%; }
}
