/* ============================================================
   MAITRISAI — Light Premium Theme
   World-class presentation-quality design
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  background: var(--bg-body);
  color: var(--text-p);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
img { max-width: 100%; height: auto; display: block; }
em { font-style: normal; }

/* ---------- Icon System ---------- */
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  width: var(--icon-size, 1.05em);
  height: var(--icon-size, 1.05em);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: -0.125em;
}
.icon-xs { --icon-size: 12px; }
.icon-sm { --icon-size: 14px; }
.icon-md { --icon-size: 16px; }
.icon-lg { --icon-size: 20px; }
.icon-xl { --icon-size: 26px; }

.title-white{
  color: #ffffff !important;
}
/* ---------- Design Tokens ---------- */
:root {
  /* Palette */
  --white:       #FFFFFF;
  --off:         #F5F7FC;
  --off-2:       #EEF2FA;
  --navy:        #0C1A2E;
  --navy-2:      #1B2E4A;
  --navy-3:      #2A405F;
  --blue:        #2563EB;
  --blue-2:      #3B74FA;
  --blue-pale:   #EEF4FF;
  --blue-border: #BED0F9;
  --gold:        #D97706;
  --gold-2:      #F59E0B;
  --gold-pale:   #FFFBEB;
  --gold-border: #FDE68A;
  --green:       #059669;
  --green-pale:  #ECFDF5;
  --text-1:      #0C1A2E;
  --text-2:      #374461;
  --text-3:      #6B7898;
  --border:      #E4EAF4;
  --border-2:    #C8D5EE;

  /* Theme functional variables - Light (default) */
  --bg-body:     var(--white);
  --bg-off:      var(--off);
  --bg-off-2:    var(--off-2);
  --text-main:   var(--navy);
  --text-p:      var(--text-2);
  --text-mut:    var(--text-3);
  --border-c:    var(--border-c);
  --border-c-2:  var(--border-2);
  --navbar-bg:   rgba(255,255,255,.92);
  --card-bg:     var(--white);

  /* Shadows */
  --sh-xs:   0 1px 3px rgba(12,26,46,.05);
  --sh-sm:   0 2px 12px rgba(12,26,46,.06), 0 1px 3px rgba(12,26,46,.04);
  --sh-md:   0 6px 28px rgba(12,26,46,.08), 0 2px 6px rgba(12,26,46,.04);
  --sh-lg:   0 16px 56px rgba(12,26,46,.1),  0 4px 14px rgba(12,26,46,.05);
  --sh-xl:   0 28px 80px rgba(12,26,46,.13), 0 8px 22px rgba(12,26,46,.07);
  --sh-blue: 0 8px 36px rgba(37,99,235,.25), 0 2px 8px rgba(37,99,235,.15);
  --sh-gold: 0 8px 28px rgba(217,119,6,.2);

  /* Radius */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-2xl: 40px;

  /* Transitions */
  --t: .2s ease;
  --t-med: .35s cubic-bezier(.25,.46,.45,.94);
  --t-slow: .55s cubic-bezier(.25,.46,.45,.94);
}

[data-theme="dark"] {
  --bg-body:     #0C1A2E;
  --bg-off:      #16243A;
  --bg-off-2:    #1B2E4A;
  --text-main:   #FFFFFF;
  --text-p:      #E4EAF4;
  --text-mut:    #94A3B8;
  --border-c:    #2A405F;
  --border-c-2:  #374461;
  --navbar-bg:   rgba(12,26,46,.92);
  --card-bg:     #1B2E4A;
  
  /* Shadows — use pure black base so they look natural on dark surfaces */
  --sh-sm:   0 2px 12px rgba(0,0,0,.25), 0 1px 3px rgba(0,0,0,.18);
  --sh-md:   0 6px 28px rgba(0,0,0,.32), 0 2px 6px rgba(0,0,0,.22);
  --sh-lg:   0 16px 56px rgba(0,0,0,.38), 0 4px 14px rgba(0,0,0,.25);
  --sh-xl:   0 28px 80px rgba(0,0,0,.45), 0 8px 22px rgba(0,0,0,.28);

  /* Blue tints adapted for dark surfaces */
  --blue-pale:   rgba(37,99,235,.15);
  --blue-border: rgba(37,99,235,.35);

  /* Palette Overrides for legacy class logic */
  --white:       #0C1A2E;
  --off:         #16243A;
  --off-2:       #1B2E4A;
  --border:      #2A405F;
  --border-2:    #374461;
}

/* ---------- Fonts & Type ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  color: var(--text-main);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.8rem, 6.5vw, 5.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 700; }
p  { color: var(--text-p); line-height: 1.75; }

.hero-em {
  background: linear-gradient(135deg, var(--blue) 0%, #6D28D9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Layout ---------- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
.section  { padding: 112px 0; }
.bg-white { background: var(--white); }
.bg-off   { background: var(--off); }
.bg-navy  { background: var(--navy); }
.bg-gradient-blue {
  background: linear-gradient(135deg, #1740B0 0%, #2563EB 45%, #1E40AF 100%);
}

/* Grids */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ---------- Section Header ---------- */
.section-header { max-width: 640px; }
.section-header.center { margin: 0 auto 72px; text-align: center; }
.section-header h2 { margin: 14px 0 18px; }
.section-sub { font-size: 1.05rem; color: var(--text-mut); max-width: 560px; margin: 0 auto; }
.section-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 16px;
  border-radius: 100px;
  background: var(--blue-pale);
  border: 1.5px solid var(--blue-border);
  color: var(--blue);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.tag-light {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
}
.light-h { color: #ffffff !important; }
.light-p { color: rgba(255,255,255,.72) !important; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  font-size: .925rem;
  font-weight: 700;
  transition: all var(--t);
  white-space: nowrap;
  letter-spacing: -.01em;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--sh-blue);
}
.btn-primary:hover {
  background: #1D4ED8;
  transform: translateY(-2px);
  box-shadow: 0 12px 44px rgba(37,99,235,.35), 0 4px 12px rgba(37,99,235,.2);
}
.btn-ghost {
  background: transparent;
  color: var(--text-main);
  border: 1.5px solid var(--border-2);
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-pale);
}
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: rgba(255,255,255,.8);
  font-size: .875rem;
  font-weight: 600;
  padding: 0;
  transition: color var(--t);
}
.btn-ghost-light:hover { color: #fff; }
.btn-gold {
  background: var(--gold-2);
  color: #fff;
  box-shadow: var(--sh-gold);
}
.btn-gold:hover { background: var(--gold); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }
.btn-lg   { padding: 17px 34px; font-size: 1rem; }
.btn-xl   { padding: 20px 48px; font-size: 1.05rem; }

/* ============================================================
   PROGRESS BAR
   ============================================================ */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #7C3AED);
  z-index: 9999;
  width: 0%;
  transition: width .1s linear;
  pointer-events: none;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all var(--t-med);
}
.navbar.scrolled {
  background: var(--navbar-bg);
  backdrop-filter: blur(24px) saturate(1.8);
  box-shadow: 0 1px 0 var(--border-c), 0 4px 20px rgba(12,26,46,.06);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
}

/* Theme Toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: var(--bg-off);
  color: var(--text-p);
  border: 1.5px solid var(--border-c);
  transition: all var(--t);
  cursor: pointer;
}
.theme-toggle:hover {
  background: var(--bg-off-2);
  border-color: var(--border-c-2);
  color: var(--text-main);
}
.sun-icon { display: none; }
.moon-icon { display: block; }

[data-theme="dark"] .sun-icon { display: block; }
[data-theme="dark"] .moon-icon { display: none; }

.nav-actions-mobile {
  display: none;
  align-items: center;
  gap: 12px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo {
  display: inline-flex;
  align-items: center;
}

/* Lang Switcher */
.lang-switcher {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  background: var(--bg-off);
  color: var(--text-p);
  font-size: .85rem;
  font-weight: 700;
  transition: all var(--t);
  border: 1.5px solid var(--border-c);
}
.lang-btn:hover {
  background: var(--bg-off-2);
  border-color: var(--border-c-2);
  color: var(--text-main);
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px); /* Add spacing below the button */
  left: 0;
  background: var(--card-bg);
  border: 1px solid var(--border-c);
  border-radius: var(--r-md); /* Slightly larger radius */
  box-shadow: var(--sh-md); /* Enhanced shadow for depth */
  z-index: 1000;
  display: none;
  padding: 8px 0; /* Add padding for dropdown content */
  animation: fadeIn var(--t-med); /* Smooth fade-in effect */
}

.lang-dropdown.open {
  display: block;
}

.lang-dropdown button,
.lang-dropdown a {
  display: block;
  width: 100%;
  padding: 10px 16px;
  background: transparent;
  color: var(--text-p);
  font-size: .85rem;
  font-weight: 600;
  text-align: left;
  text-decoration: none;
  transition: background var(--t), color var(--t);
}

.lang-dropdown button:hover,
.lang-dropdown a:hover,
.lang-dropdown a.active {
  background: var(--blue-pale);
  color: var(--blue);
}


@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RTL Support */
[dir="rtl"] {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}
[dir="rtl"] .nav-right {
  flex-direction: row-reverse;
}
[dir="rtl"] .lang-dropdown {
  right: auto;
  left: 0;
}
[dir="rtl"] .lang-dropdown button,
[dir="rtl"] .lang-dropdown a {
  text-align: right;
}
[dir="rtl"] .hero-left {
  text-align: right;
}
[dir="rtl"] .hero-sub {
  margin-left: auto;
  margin-right: 0;
}
[dir="rtl"] .hero-actions {
  justify-content: flex-start;
}
[dir="rtl"] .btn svg {
  transform: scaleX(-1);
}
[dir="rtl"] .hero-trust {
  flex-direction: row-reverse;
}
[dir="rtl"] .trust-avatars {
  flex-direction: row-reverse;
}
[dir="rtl"] .ta {
  margin-right: 0;
  margin-left: -8px;
}
[dir="rtl"] .hc-label {
  margin-left: 0;
  margin-right: auto;
}
[dir="rtl"] .hc-badge svg {
  margin-left: 6px;
  margin-right: 0;
}
[dir="rtl"] .card-featured-badge {
  left: auto;
  right: 24px;
}
[dir="rtl"] .dark-list li::before {
  content: '←';
}
[dir="rtl"] .check-list li::before {
  margin-left: 10px;
  margin-right: 0;
}
[dir="rtl"] .quote-mark {
  right: auto;
  left: 24px;
}
[dir="rtl"] .testi-author {
  flex-direction: row-reverse;
  text-align: right;
}
[dir="rtl"] .prog-flag {
  margin: 24px 28px 0;
}
[dir="rtl"] .prog-promise {
  border-left: none;
  border-right: 3px solid var(--blue);
  border-radius: var(--r-sm) 0 0 var(--r-sm);
}
[dir="rtl"] .module-row {
  text-align: right;
}
[dir="rtl"] .price-includes li::before {
  margin-left: 8px;
  margin-right: 0;
}
[dir="rtl"] .faq-q {
  text-align: right;
}
[dir="rtl"] .footer-col h5 {
  text-align: right;
}
[dir="rtl"] .footer-col ul {
  text-align: right;
}

.logo-mark  { display: flex; }
.logo-accent { color: var(--blue); }

/* Logo image (navbar) */
.logo-img {
  max-width: 200px;
  height: auto;
  display: block;
  object-fit: contain;
}
.logo-dark-mode  { display: none; }
[data-theme="dark"] .logo-light-mode { display: none; }
[data-theme="dark"] .logo-dark-mode  { display: block; }

/* dark-hero page (home): white nav links on hero, dark after scrolling — light mode only */
[data-theme="light"] body.dark-hero .nav-links a:not(.nav-cta),
body.dark-hero[data-theme="light"] .nav-links a:not(.nav-cta) { color: #ffffff; background: transparent; }
[data-theme="light"] body.dark-hero .nav-links a:not(.nav-cta):hover,
body.dark-hero[data-theme="light"] .nav-links a:not(.nav-cta):hover { color: #ffffff; background: rgba(255,255,255,.12); }
[data-theme="light"] body.dark-hero .nav-links a.active:not(.nav-cta),
body.dark-hero[data-theme="light"] .nav-links a.active:not(.nav-cta) { color: #ffffff !important; background: rgba(255,255,255,.15) !important; }

[data-theme="light"] body.dark-hero .navbar.scrolled .nav-links a:not(.nav-cta),
body.dark-hero[data-theme="light"] .navbar.scrolled .nav-links a:not(.nav-cta) { color: var(--text-p); background: transparent; }
[data-theme="light"] body.dark-hero .navbar.scrolled .nav-links a:not(.nav-cta):hover,
body.dark-hero[data-theme="light"] .navbar.scrolled .nav-links a:not(.nav-cta):hover { color: var(--text-main); background: var(--off); }
[data-theme="light"] body.dark-hero .navbar.scrolled .nav-links a.active:not(.nav-cta),
body.dark-hero[data-theme="light"] .navbar.scrolled .nav-links a.active:not(.nav-cta) { color: var(--blue) !important; background: var(--blue-light) !important; }

/* dark-hero page (home): dark logo on hero, white logo after scrolling — light mode only */
[data-theme="light"] body.dark-hero .logo-light-mode,
body.dark-hero[data-theme="light"] .logo-light-mode { display: none; }
[data-theme="light"] body.dark-hero .logo-dark-mode,
body.dark-hero[data-theme="light"] .logo-dark-mode  { display: block; }
[data-theme="light"] body.dark-hero .navbar.scrolled .logo-light-mode,
body.dark-hero[data-theme="light"] .navbar.scrolled .logo-light-mode { display: block; }
[data-theme="light"] body.dark-hero .navbar.scrolled .logo-dark-mode,
body.dark-hero[data-theme="light"] .navbar.scrolled .logo-dark-mode  { display: none; }

/* Footer logo — white pill so dark-navy image reads on dark background..... */
.logo-footer-link {
  display: inline-flex;
  padding: 0;
}
.logo-img-footer {
  height: 70px;
  padding: 6px 0px;
  border-radius: var(--r-sm);
  box-shadow: var(--sh-sm);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: var(--r-sm);
  color: var(--text-p);
  font-size: .9rem;
  font-weight: 600;
  transition: all var(--t);
}
.nav-links a:hover {
  color: var(--text-main);
  background: var(--off);
}
.nav-links a.active {
  color: var(--blue);
  background: var(--blue-light);
  position: relative;
}
.nav-links .nav-cta {
  background: var(--blue);
  color: #fff;
  padding: 9px 20px;
  box-shadow: var(--sh-blue);
}
.nav-links .nav-cta:hover { background: #1D4ED8; transform: translateY(-1px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   PAGE ROUTING
   ============================================================ */
.page { display: none; }
.page.active { display: block; }

/* Page transition */
.page.entering {
  animation: pageEnter .45s cubic-bezier(.25,.46,.45,.94) both;
}
@keyframes pageEnter {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
  background: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% -10%, rgba(37,99,235,.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(109,40,217,.05) 0%, transparent 55%);
  pointer-events: none;
}
.hero-deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(37,99,235,.08);
}
.ring-1 { width: 700px; height: 700px; top: -200px; right: -200px; }
.ring-2 { width: 500px; height: 500px; top: -100px; right: -50px; }
.deco-dots {
  position: absolute;
  top: 60px;
  right: 60px;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle, rgba(37,99,235,.12) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 80px 0 100px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  border-radius: 100px;
  background: var(--blue-pale);
  border: 1.5px solid var(--blue-border);
  color: var(--blue);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(37,99,235,.4); }
  50%       { opacity: .7; box-shadow: 0 0 0 6px rgba(37,99,235,0); }
}
.hero-title {
  font-size: clamp(1.6rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.035em;
  margin-bottom: 24px;
  color: var(--text-main);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-mut);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.hero-sub strong { color: var(--text-p); }
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .875rem;
  color: var(--text-mut);
}
.hero-trust strong { color: var(--text-p); }
.trust-avatars { display: flex; }
.ta {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #7C3AED);
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  color: white;
  margin-right: -8px;
}

/* Hero Right — Dashboard Card */
.hero-right { position: relative; display: flex; justify-content: center; }
.hero-card-main {
  background: var(--white);
  border: 1.5px solid var(--border-c);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  position: relative;
  z-index: 2;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.hc-header {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 20px;
  background: var(--off);
  border-bottom: 1px solid var(--border-c);
}
.hc-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hc-dot.green  { background: #10B981; }
.hc-dot.amber  { background: #F59E0B; }
.hc-dot.red    { background: #EF4444; }
.hc-label { margin-left: auto; font-size: .75rem; color: var(--text-mut); font-weight: 500; }
.hc-body { padding: 24px; }
.hc-stat { margin-bottom: 20px; }
.hc-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-main);
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.hc-desc { font-size: .78rem; color: var(--text-mut); margin-bottom: 8px; display: block; }
.hc-bar { height: 6px; background: var(--off-2); border-radius: 100px; overflow: hidden; }
.hc-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), #7C3AED);
  border-radius: 100px;
  animation: barGrow 1.4s ease both;
}
.hc-fill.accent2 { background: linear-gradient(90deg, #059669, #10B981); animation-delay: .2s; }
.hc-fill.accent3 { background: linear-gradient(90deg, var(--gold), var(--gold-2)); animation-delay: .4s; }
@keyframes barGrow { from { width: 0 !important; } }
.hc-cta-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 6px; }
.hc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 600;
  background: var(--green-pale);
  color: var(--green);
  border: 1px solid rgba(5,150,105,.15);
}
.hc-badge.amber-badge {
  background: var(--gold-pale);
  color: var(--gold);
  border-color: rgba(217,119,6,.15);
}
.hero-card-float {
  position: absolute;
  background: var(--white);
  border: 1.5px solid var(--border-c);
  border-radius: var(--r-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--sh-lg);
  z-index: 3;
  white-space: nowrap;
  animation: float 5s ease-in-out infinite;
}
.hero-card-float strong { display: block; font-size: .85rem; color: var(--text-main); }
.hero-card-float span  { font-size: .75rem; color: var(--text-mut); }
.float-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-float-1 { top: 20px; left: -40px; animation-delay: .8s; }
.card-float-2 { bottom: 40px; right: -40px; animation-delay: 1.5s; }

/* Hero scroll */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-mut);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: .4; transform: scaleY(.6); }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
/* ── Clients carousel strip ── */
.clients-strip {
  background: #f8f9fc;
  border-top: 1px solid #e8eaf0;
  border-bottom: 1px solid #e8eaf0;
  padding: 40px 0;
}
.clients-label {
  display: block;
  text-align: center;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #9ca3b0;
  margin-bottom: 32px;
}
.clients-viewport {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.clients-track {
  display: flex;
  align-items: center;
  will-change: transform;
}
.clients-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 56px;
  border-right: 1px solid #e2e6ee;
  flex-shrink: 0;
  background: transparent;
}
.client-logo img {
  height: 52px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  border-radius: 10px;
  background: #ffffff;
  padding: 8px 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
  transition: transform .3s ease, opacity .3s ease;
}
.client-logo:hover img {
  transform: scale(1.06);
  opacity: .85;
}

/* ============================================================
   CARDS — LIGHT
   ============================================================ */
.card {
  padding: 36px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1.5px solid var(--border-c);
  transition: all var(--t-med);
  position: relative;
}
.card-lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--blue-border);
}
.card-featured {
  border-color: var(--blue);
  background: linear-gradient(160deg, #f0f6ff 0%, var(--white) 60%);
  box-shadow: var(--sh-md), 0 0 0 1px rgba(37,99,235,.15);
}
.card-featured-badge {
  position: absolute;
  top: -13px;
  left: 24px;
  padding: 4px 14px;
  background: var(--blue);
  color: white;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  box-shadow: var(--sh-blue);
}
.card-icon-wrap {
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card-icon-wrap.blue {
  background: var(--blue-pale);
  color: var(--blue);
  border: 1.5px solid var(--blue-border);
}
.card h3 { margin-bottom: 12px; }
.card p  { font-size: .92rem; color: var(--text-mut); }
.card-footer-tag {
  display: inline-block;
  margin-top: 20px;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--off);
  border: 1px solid var(--border-c);
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-mut);
  text-transform: uppercase;
  letter-spacing: .07em;
}
.card-footer-tag.blue-tag {
  background: var(--blue-pale);
  border-color: var(--blue-border);
  color: var(--blue);
}

/* ============================================================
   CARDS — DARK
   ============================================================ */
.card-dark {
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 36px;
  transition: all var(--t-med);
}
.card-dark:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.15);
  transform: translateY(-4px);
}
.card-dark-featured {
  background: rgba(37,99,235,.12);
  border-color: rgba(37,99,235,.3);
}
.card-dark-featured:hover {
  background: rgba(37,99,235,.18);
  border-color: rgba(37,99,235,.45);
}
.card-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255,255,255,.08);
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: -12px;
}
.gold-num { color: rgba(245,158,11,.15); }
.card-icon-wrap.icon-dark {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
}
.card-icon-wrap.icon-gold {
  background: rgba(245,158,11,.1);
  border: 1px solid rgba(245,158,11,.2);
  color: var(--gold-2);
}
.feature-list { margin-top: 6px; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.dark-list li {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.dark-list li::before {
  content: '→';
  color: var(--blue-2);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.industry-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 100px;
  background: var(--white);
  border: 1.5px solid var(--border-c);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-p);
  box-shadow: var(--sh-xs);
  transition: all var(--t);
  cursor: default;
}
.industry-pill .icon { color: var(--blue); }
.industry-pill:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-pale);
  transform: translateY(-2px);
  box-shadow: var(--sh-sm);
}

/* ── Feature cards (What we build) ── */
.feat-card {
  background: var(--white);
  border: 1.5px solid var(--border-c);
  border-radius: 18px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--sh-xs);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, #7C3AED 100%);
  opacity: 0;
  transition: opacity var(--t);
}
.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: rgba(37,99,235,.25);
}
.feat-card:hover::before { opacity: 1; }

.feat-card-featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.08), var(--sh-sm);
}
.feat-card-featured::before { opacity: 1; }

.feat-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.feat-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feat-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.feat-badge-blue   { background: rgba(37,99,235,.1);  color: var(--blue); }
.feat-badge-gold   { background: rgba(217,119,6,.12); color: #b45309; }
.feat-badge-purple { background: rgba(124,58,237,.1); color: #7C3AED; }
.feat-icon-blue   { background: rgba(37,99,235,.1);  color: var(--blue); }
.feat-icon-gold   { background: rgba(217,119,6,.12); color: #b45309; }
.feat-icon-purple { background: rgba(124,58,237,.1); color: #7C3AED; }
.feat-icon-green  { background: rgba(34,197,94,.1);  color: #15803d; }
.feat-badge-green  { background: rgba(34,197,94,.1);  color: #15803d; }

.feat-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.feat-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.feat-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.feat-list li {
  font-size: .83rem;
  color: var(--text-p);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.feat-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
  font-size: .8rem;
}
.feat-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .83rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  margin-top: auto;
  transition: gap var(--t);
}
.feat-link:hover { gap: 8px; }

/* ============================================================
   LEAD MAGNET
   ============================================================ */
.lead-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: start;
}
.lead-text .section-tag { margin-bottom: 20px; }
.lead-text h2 { margin-bottom: 18px; }
.lead-text p  { margin-bottom: 28px; font-size: 1rem; }
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
}
.check-list li::before {
  content: '✓';
  background: rgba(255,255,255,.15);
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--sh-xl);
}
.form-card h3 { margin-bottom: 26px; font-size: 1.25rem; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  margin-bottom: 7px;
  font-size: .825rem;
  font-weight: 700;
  color: var(--text-p);
  letter-spacing: .01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--off);
  border: 1.5px solid var(--border-c);
  border-radius: var(--r-sm);
  color: var(--text-main);
  font-family: inherit;
  font-size: .925rem;
  transition: all var(--t);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-mut); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7898' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: var(--off);
  cursor: pointer;
}
.form-group select option { background: white; color: var(--text-main); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note {
  text-align: center;
  font-size: .78rem;
  color: var(--text-mut);
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  width: 100%;
}
.checks { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  color: var(--text-p);
  cursor: pointer;
}
.check-item input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--blue); cursor: pointer; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border-c);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all var(--t-med);
  box-shadow: var(--sh-sm);
  position: relative;
  overflow: hidden;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: var(--blue-border); }
.testi-featured {
  border-color: var(--blue);
  background: linear-gradient(160deg, #f0f6ff 0%, var(--white) 60%);
  box-shadow: var(--sh-md), 0 0 0 1px rgba(37,99,235,.1);
}
.quote-mark {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--blue-pale);
  line-height: 1;
  pointer-events: none;
}
.testi-featured .quote-mark { color: rgba(37,99,235,.12); }
.testimonial-card > p { font-size: .925rem; color: var(--text-p); line-height: 1.7; position: relative; z-index: 1; flex: 1; }
.testi-stars { color: var(--gold-2); letter-spacing: 2px; font-size: .9rem; }
.testi-author { display: flex; align-items: center; gap: 13px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #7C3AED);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .9rem; color: var(--text-main); }
.testi-author span  { font-size: .78rem; color: var(--text-mut); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-deco { position: absolute; inset: 0; pointer-events: none; }
.cta-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
}
.cta-ring.r1 { width: 700px; height: 700px; top: -250px; left: 50%; transform: translateX(-50%); }
.cta-ring.r2 { width: 400px; height: 400px; top: -100px; left: 50%; transform: translateX(-50%); }
.cta-center { text-align: center; position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-h { font-size: clamp(1.8rem, 3.5vw, 2.9rem); margin: 14px 0 20px; }
.cta-sub { font-size: 1rem; margin-bottom: 40px; }
.cta-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.cta-badges span { font-size: .82rem; color: rgba(255,255,255,.55); font-weight: 500; }

/* ============================================================
   INNER PAGES HERO
   ============================================================ */
.inner-hero {
  padding: 140px 0 80px;
}
.inner-hero .section-tag { margin-bottom: 18px; }
.inner-hero h1 { margin-bottom: 22px; }
.inner-hero-sub {
  font-size: 1.1rem;
  color: var(--text-mut);
  max-width: 640px;
  line-height: 1.75;
}

/* ── B2B / B2C tabs ── */
.prog-tabs {
  display: inline-flex;
  gap: 0;
  margin-top: 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 5px;
  box-shadow: var(--sh-sm);
}
.prog-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 28px;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
  white-space: nowrap;
}
.prog-tab:hover { color: var(--text); }
.prog-tab.active {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 2px 8px rgba(12,26,46,.18);
}

/* ── B2C section ── */
.b2c-soon-banner {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  background: linear-gradient(135deg, rgba(37,99,235,.06) 0%, rgba(124,58,237,.06) 100%);
  border: 1px solid rgba(37,99,235,.15);
  border-radius: 20px;
  padding: 36px 40px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.b2c-soon-icon { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; background: var(--blue); border-radius: 14px; color: #fff; }
.b2c-soon-banner > div:nth-child(2) { flex: 1; min-width: 200px; }
.b2c-soon-banner h2 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); margin-bottom: 10px; }
.b2c-soon-banner > div:nth-child(2) > p { color: var(--muted); line-height: 1.65; margin-bottom: 0; }
.b2c-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  margin-top: 20px;
}
.b2c-topic-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(37,99,235,.07);
  border: 1px solid rgba(37,99,235,.15);
  border-radius: 30px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--blue);
}

/* Form card */
.b2c-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--sh-md);
}
.b2c-form-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.b2c-form-icon { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: var(--blue); border-radius: 12px; color: #fff; margin-top: 2px; }
.b2c-form-header h3 { font-size: 1.3rem; margin-bottom: 6px; }
.b2c-form-header p  { color: var(--muted); font-size: .92rem; line-height: 1.6; margin: 0; }
.b2c-form { display: flex; flex-direction: column; gap: 0; }

/* Steps */
.b2c-step {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.b2c-step:last-of-type { border-bottom: none; }
.b2c-step-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.b2c-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* Topic cards */
.b2c-topic-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.topic-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 12px;
  border: 2px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  transition: all .18s;
  text-align: center;
  background: var(--off);
}
.topic-card input { display: none; }
.topic-card:hover { border-color: var(--blue); background: rgba(37,99,235,.04); }
.topic-card.selected {
  border-color: var(--blue);
  background: rgba(37,99,235,.08);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.topic-card-icon { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: var(--bg-subtle, rgba(37,99,235,.08)); border-radius: 10px; color: var(--blue); flex-shrink: 0; transition: background .2s; }
.topic-card.selected .topic-card-icon { background: rgba(255,255,255,.25); color: #fff; }
.topic-card-label { font-size: .8rem; font-weight: 600; color: var(--text); line-height: 1.3; }

/* Budget pills */
.b2c-budget-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.budget-pill {
  padding: 10px 20px;
  border: 2px solid var(--border);
  border-radius: 40px;
  cursor: pointer;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  transition: all .18s;
}
.budget-pill input { display: none; }
.budget-pill:hover { border-color: var(--blue); color: var(--blue); }
.budget-pill.selected {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

/* Subscription cards */
.b2c-sub-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.sub-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 12px;
  border: 2px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  transition: all .18s;
  text-align: center;
  background: var(--off);
  font-size: .85rem;
  font-weight: 500;
}
.sub-card input { display: none; }
.sub-card:hover { border-color: var(--blue); background: rgba(37,99,235,.04); }
.sub-card.selected { border-color: var(--blue); background: rgba(37,99,235,.08); box-shadow: 0 0 0 3px rgba(37,99,235,.12); }
.sub-card-icon { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: var(--bg-subtle, rgba(37,99,235,.08)); border-radius: 9px; color: var(--blue); flex-shrink: 0; transition: background .2s; }
.sub-card.selected .sub-card-icon { background: rgba(255,255,255,.25); color: #fff; }

/* ── B2C Textarea ── */
.b2c-textarea-wrap {
  position: relative;
  margin-top: 10px;
  border: 1.5px solid var(--border-c);
  border-radius: 14px;
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  overflow: hidden;
}
.b2c-textarea-wrap:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.b2c-textarea-icon {
  position: absolute;
  top: 14px;
  left: 14px;
  color: var(--muted);
  pointer-events: none;
  transition: color .2s;
}
.b2c-textarea-wrap:focus-within .b2c-textarea-icon { color: var(--blue); }
.b2c-textarea {
  width: 100%;
  padding: 12px 16px 12px 40px;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text-main);
  font-family: inherit;
  font-size: .925rem;
  line-height: 1.6;
  resize: none;
  display: block;
}
.b2c-textarea::placeholder { color: var(--muted); }
.b2c-textarea-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 14px 9px 40px;
  border-top: 1px solid var(--border-c);
  background: var(--off);
}
.b2c-char-hint {
  font-size: .75rem;
  color: var(--muted);
  font-style: italic;
}
.b2c-char-count {
  font-size: .75rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  transition: color .2s;
}
.b2c-char-count.b2c-char-warn { color: #e97316; font-weight: 600; }

/* Misc */
.alert-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.25);
  border-radius: 10px;
  padding: 16px 20px;
  color: #15803d;
  font-weight: 500;
}
.field-error { font-size: .8rem; color: var(--red); margin-top: 4px; display: block; }
.row-unread { background: rgba(37,99,235,.04); font-weight: 500; }
.td-message { max-width: 220px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ============================================================
   PROGRAMMES
   ============================================================ */
.prog-card {
  background: var(--white);
  border: 1.5px solid var(--border-c);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--t-med);
}
.prog-card:hover { box-shadow: var(--sh-lg); }
.prog-card-featured { border-color: var(--blue); box-shadow: var(--sh-md), 0 0 0 1px rgba(37,99,235,.12); }
.prog-best-badge {
  background: var(--blue);
  color: white;
  text-align: center;
  padding: 10px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.prog-flag {
  display: inline-flex;
  margin: 24px 28px 0;
  padding: 5px 16px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.flag-blue  { background: var(--blue-pale); color: var(--blue); border: 1.5px solid var(--blue-border); }
.flag-gold  { background: var(--gold-pale); color: var(--gold); border: 1.5px solid var(--gold-border); }
.flag-green { background: var(--green-pale); color: var(--green); border: 1.5px solid rgba(5,150,105,.2); }
.prog-meta {
  display: flex;
  gap: 24px;
  padding: 14px 28px 20px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border-c);
}
.prog-meta > span {
  font-size: .825rem;
  color: var(--text-mut);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.prog-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding: 40px 40px 40px 40px;
}
.prog-info h2 { font-size: 2rem; margin-bottom: 20px; }
.prog-promise {
  padding: 16px 20px;
  background: var(--blue-pale);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: .92rem;
  color: var(--text-p);
  margin-bottom: 28px;
  line-height: 1.65;
}
.modules-title {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-mut);
  margin-bottom: 18px;
}
.module-row {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-c);
}
.module-row:last-child { border-bottom: none; }
.mod-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--blue-pale);
  border: 1.5px solid var(--blue-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 800;
  color: var(--blue);
}
.mod-green {
  background: var(--green-pale);
  border-color: rgba(5,150,105,.2);
  color: var(--green);
}
.module-row strong { display: block; font-size: .9rem; color: var(--text-main); margin-bottom: 4px; }
.module-row p { font-size: .83rem; color: var(--text-mut); }

/* Price Box */
.price-box {
  background: var(--off);
  border: 1.5px solid var(--border-c);
  border-radius: var(--r-lg);
  padding: 28px;
  position: sticky;
  top: 100px;
}
.price-box-featured {
  background: linear-gradient(160deg, #EEF4FF 0%, var(--white) 100%);
  border-color: var(--blue);
  box-shadow: var(--sh-md);
}
.price-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-mut);
  margin-bottom: 6px;
}
.price-amount {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-main);
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -.02em;
  margin-bottom: 6px;
}
.price-note {
  display: block;
  font-size: .78rem;
  color: var(--text-mut);
  margin-bottom: 22px;
}
.price-includes { margin-bottom: 22px; }
.pi-title {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-mut);
  margin-bottom: 10px;
}
.price-includes ul { display: flex; flex-direction: column; gap: 8px; }
.price-includes li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .83rem;
  color: var(--text-p);
}
.price-includes li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }

/* GIAC */
.giac-band {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 32px 36px;
  background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
  border: 1.5px solid var(--gold-border);
  border-radius: var(--r-xl);
}
.giac-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(217,119,6,.2);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.giac-text { flex: 1; }
.giac-text h3 { margin-bottom: 6px; color: var(--text-main); }
.giac-text p  { font-size: .9rem; color: var(--text-mut); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.founder-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}
.founder-visual { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.founder-circle {
  width: 180px; height: 180px;
  border-radius: 50%;
  position: relative;
  margin-bottom: 8px;
}
.founder-initials {
  width: 180px; height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #7C3AED);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  letter-spacing: -.04em;
}
.founder-orbit {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1.5px dashed rgba(37,99,235,.25);
  animation: orbit 15s linear infinite;
}
@keyframes orbit { to { transform: rotate(360deg); } }
.cred-stack { width: 100%; display: flex; flex-direction: column; gap: 10px; }
.cred-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  background: var(--white);
  border: 1.5px solid var(--border-c);
  border-radius: var(--r-sm);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-p);
  box-shadow: var(--sh-xs);
}
.ci {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-content .section-tag { margin-bottom: 16px; }
.founder-content h2 { margin-bottom: 22px; }
.founder-content p  { margin-bottom: 16px; font-size: .975rem; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.exp-tag {
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--blue-pale);
  border: 1px solid var(--blue-border);
  color: var(--blue);
  font-size: .75rem;
  font-weight: 600;
}

/* KPI Cards */
.kpi-card {
  padding: 44px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
}
.kpi-card:last-child { border-right: none; }
.kpi-num {
  display: block;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 900;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -.04em;
  margin-bottom: 12px;
}
.kpi-num sup { font-size: 55%; color: var(--blue-2); vertical-align: super; }
.kpi-label { font-size: .82rem; color: #ffffff; line-height: 1.4; }

/* Vision */
.vision-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.vision-text h2 { margin-bottom: 20px; }
.vision-text p  { margin-bottom: 14px; font-size: .975rem; }
.vision-regions h4 {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-mut);
  margin-bottom: 22px;
}
.region-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-c);
}
.region-item:last-child { border-bottom: none; }
.ri-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--off);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.region-item strong { display: block; margin-bottom: 4px; font-size: .9rem; }
.region-item p { font-size: .83rem; color: var(--text-mut); }

/* Values */
.val-card {
  background: var(--white);
  border: 1.5px solid var(--border-c);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--t-med);
  box-shadow: var(--sh-xs);
}
.val-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: var(--blue-border); }
.val-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  border-radius: 10px;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.val-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.val-card p { font-size: .875rem; color: var(--text-mut); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: start;
}
.contact-form-side h2 { margin-bottom: 10px; }
.contact-form-el { display: flex; flex-direction: column; }
.contact-info-side { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  background: var(--off);
  border: 1.5px solid var(--border-c);
  border-radius: var(--r-lg);
  padding: 28px;
}
.info-card h3 { font-size: 1.05rem; margin-bottom: 20px; }
.audit-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.audit-point:last-child { margin-bottom: 0; }
.ap-icon {
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  background: var(--blue-pale);
  border: 1px solid var(--blue-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.audit-point strong { display: block; font-size: .875rem; color: var(--text-main); margin-bottom: 3px; }
.audit-point p { font-size: .8rem; color: var(--text-mut); }
.contact-line {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px solid var(--border-c);
}
.contact-line:last-child { border-bottom: none; }
.contact-line > span {
  width: 34px; height: 34px;
  border-radius: var(--r-sm);
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-line strong { display: block; font-size: .75rem; color: var(--text-mut); margin-bottom: 2px; font-weight: 700; }
.contact-line a { font-size: .875rem; color: var(--blue); font-weight: 500; }
.contact-line span:not(:first-child) { font-size: .875rem; color: var(--text-p); line-height: 1.5; }
.trust-row { display: flex; gap: 8px; flex-wrap: wrap; }
.trust-badge {
  flex: 1;
  min-width: 100px;
  text-align: center;
  padding: 10px 12px;
  background: var(--green-pale);
  border: 1px solid rgba(5,150,105,.15);
  border-radius: var(--r-sm);
  font-size: .78rem;
  font-weight: 700;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-c); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  text-align: left;
  font-size: .975rem;
  font-weight: 700;
  color: var(--text-main);
  gap: 16px;
}
.faq-ico {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--off);
  border: 1.5px solid var(--border-c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  transition: all var(--t);
}
.faq-q.open .faq-ico {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
  transform: rotate(45deg);
}
.faq-a { display: none; padding: 0 0 22px; }
.faq-a.open { display: block; }
.faq-a p { font-size: .925rem; color: var(--text-mut); line-height: 1.75; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); padding: 80px 0 0; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.soc-btn {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  font-weight: 700;
  transition: all var(--t);
}
.soc-btn .icon { --icon-size: 16px; }
.soc-btn:hover { background: var(--blue); border-color: var(--blue); color: white; transform: translateY(-2px); }
.footer-col h5 {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.35);
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col span {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: color var(--t);
}
.footer-col a:hover { color: white; }
.footer-bottom {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; align-items: center; gap: 10px; }
.footer-legal a { font-size: .78rem; color: rgba(255,255,255,.3); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.7); }
.footer-legal span { font-size: .78rem; color: rgba(255,255,255,.2); }

/* Legal pages */
.legal-body { line-height: 1.85; color: var(--text); }
.legal-body h2 { font-size: 1.15rem; font-weight: 700; margin: 2.5rem 0 .75rem; color: var(--heading); }
.legal-body p, .legal-body li { font-size: .97rem; margin-bottom: .6rem; }
.legal-body ul, .legal-body ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.legal-body a { color: var(--blue); text-decoration: underline; }

/* ============================================================
   SUCCESS OVERLAY
   ============================================================ */
.success-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(12,26,46,.5);
  backdrop-filter: blur(16px);
  display: none;
  align-items: center;
  justify-content: center;
}
.success-overlay.show { display: flex; }
.success-box {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 56px 48px;
  text-align: center;
  max-width: 420px;
  box-shadow: var(--sh-xl);
  animation: popIn .4s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes popIn {
  from { opacity: 0; transform: scale(.85) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.success-ring {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--green-pale);
  border: 2px solid rgba(5,150,105,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin: 0 auto 24px;
}
.success-box h3 { margin-bottom: 10px; }
.success-box p  { color: var(--text-mut); margin-bottom: 30px; font-size: .925rem; }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.25,.46,.45,.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-layout  { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-left    { display: flex; flex-direction: column; align-items: center; }
  .hero-sub     { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-right   { max-width: 450px; margin: 0 auto; width: 100%; }
  .card-float-1, .card-float-2 { display: none; }
  .founder-layout { grid-template-columns: 1fr; }
  .founder-visual { flex-direction: row; align-items: center; justify-content: center; }
  .vision-layout { grid-template-columns: 1fr; }
  .lead-layout  { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .lead-text .check-list { align-items: center; }
  .grid-4       { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .nav-container { padding: 16px 22px; }
  .logo-img { max-width: 170px; }
  .hero { min-height: auto; }
  .hero-layout { padding: 60px 0 80px; }
  .hero-title { font-size: clamp(2rem, 6vw, 3.2rem); }
  .hero-sub { font-size: 1rem; }
  .section-header.center { margin: 0 auto 48px; }
  .section-header h2 { margin: 12px 0 14px; }
  .lead-layout { gap: 32px; }
  .form-card { padding: 32px; }
  .prog-meta { gap: 16px; }
  .giac-band { gap: 20px; }
  .grid-3        { grid-template-columns: repeat(2,1fr); }
  .client-logo { padding: 0 36px; }
  .client-logo img { height: 42px; }
  .prog-body     { grid-template-columns: 1fr; }
  .price-box     { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top    { grid-template-columns: 1fr 1fr; }
  .giac-band     { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .inner-hero { padding: 120px 0 60px; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    padding: 80px 40px 40px;
    gap: 20px;
    z-index: 150;
  }
  .nav-links.open { display: flex; }
  
  .logo { z-index: 201; position: relative; }
  .nav-actions-mobile { display: flex; z-index: 201; position: relative; }
  .nav-toggle { display: flex; z-index: 201; position: relative; }
  
  .nav-links a { font-size: 1.25rem; text-align: center; font-weight: 700; color: var(--text-main); }
  .lang-switcher { margin: 10px 0; width: 100%; display: flex; flex-direction: column; align-items: center; }
  .lang-btn { width: auto; min-width: 120px; justify-content: center; }
  .lang-dropdown { 
    position: static; 
    box-shadow: none; 
    border: none; 
    background: var(--off); 
    width: 100%; 
    text-align: center;
    margin-top: 8px;
    border-radius: var(--r-sm);
  }
  .lang-dropdown button, .lang-dropdown a { text-align: center; padding: 12px; }
  
  .nav-cta-item { width: 100%; display: flex; justify-content: center; margin-top: 10px; }
  .nav-links .nav-cta { width: 100%; max-width: 280px; text-align: center; padding: 15px; font-size: 1.1rem; }
}

@media (max-width: 640px) {
  .prog-tabs { flex-direction: column; width: 100%; border-radius: 14px; }
  .prog-tab  { border-radius: 10px; }
  .b2c-topic-cards { grid-template-columns: repeat(2, 1fr); }
  .b2c-sub-cards   { grid-template-columns: 1fr; }
  .b2c-form-card   { padding: 24px 20px; }
  .b2c-soon-banner { padding: 24px 20px; }
  .section { padding: 64px 0; }
  .inner-hero { padding: 100px 0 48px; }
  .container { padding: 0 20px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero { padding-top: 80px; }
  .hero-layout  { padding: 32px 0 48px; }
  .hero-eyebrow { font-size: .7rem; letter-spacing: .05em; }
  .hero-title { font-size: clamp(1.8rem, 10vw, 2.8rem); }
  .hero-sub { font-size: .95rem; margin-bottom: 24px; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; gap: 8px; }
  .section-header.center { margin: 0 auto 32px; }
  .client-logo { padding: 0 24px; }
  .client-logo img { height: 32px; max-width: 120px; }
  .form-row     { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }
  .industry-pill { width: 100%; justify-content: center; }
  .prog-meta { flex-direction: column; align-items: flex-start; }
  .prog-body { padding: 24px 18px; }
  .giac-band { padding: 24px 20px; }
  .contact-line { flex-direction: column; align-items: flex-start; }
  .trust-badge { width: 100%; }
  .footer-top   { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 16px; }
  .hero-right { display: none; }
  .hero-scroll { display: none; }
  .hero-title br { display: none; }
}

@media (max-width: 480px) {
  .success-box { width: 92%; padding: 40px 24px; }
  .hero-title { font-size: 2rem; }
  .section { padding: 48px 0; }
  .footer { padding-top: 48px; }
  .hero-actions .btn { font-size: 0.9rem; padding: 12px 20px; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 1.7rem; }
  .btn { padding: 12px 18px; font-size: 0.82rem; }
  .section-tag { font-size: 0.62rem; padding: 4px 10px; }
  .container { padding: 0 16px; }
}

/* ---------- Dark Mode — Programme Cards ---------- */
[data-theme="dark"] .prog-promise {
  background: rgba(37,99,235,.12);
  border-left-color: var(--blue-2);
  color: var(--text-p);
}
[data-theme="dark"] .flag-blue {
  background: rgba(37,99,235,.15);
  border-color: rgba(37,99,235,.35);
  color: #93B4FF;
}
[data-theme="dark"] .flag-gold {
  background: rgba(217,119,6,.15);
  border-color: rgba(217,119,6,.35);
  color: #FCD34D;
}
[data-theme="dark"] .flag-green {
  background: rgba(5,150,105,.15);
  border-color: rgba(5,150,105,.35);
  color: #6EE7B7;
}
[data-theme="dark"] .mod-num {
  background: rgba(37,99,235,.15);
  border-color: rgba(37,99,235,.3);
  color: #93B4FF;
}
[data-theme="dark"] .mod-green {
  background: rgba(5,150,105,.15);
  border-color: rgba(5,150,105,.3);
  color: #6EE7B7;
}
[data-theme="dark"] .price-box-featured {
  background: linear-gradient(160deg, rgba(37,99,235,.12) 0%, var(--card-bg) 100%);
  border-color: var(--blue);
}

/* ============================================================
   ARIA — AI AGENT WIDGET
   ============================================================ */

/* FAB */
.ag-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1200;
}
.ag-fab-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB 0%, #6D28D9 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,99,235,.45), 0 2px 8px rgba(37,99,235,.2);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}
.ag-fab-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 32px rgba(37,99,235,.55), 0 2px 10px rgba(37,99,235,.3);
}
.ag-fab-btn::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37,99,235,.25) 0%, rgba(109,40,217,.25) 100%);
  animation: ag-pulse 2.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ag-pulse {
  0%, 100% { transform: scale(1);    opacity: .7; }
  50%       { transform: scale(1.3); opacity: 0;  }
}
.ag-fab-icon { position: relative; z-index: 1; }
.ag-notif {
  position: absolute;
  top: -2px; right: -2px;
  width: 18px; height: 18px;
  background: #EF4444;
  border-radius: 50%;
  font-size: .58rem; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
  z-index: 2;
}
.ag-fab-label {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: #fff;
  font-size: .78rem; font-weight: 600;
  padding: 7px 12px 7px 14px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: var(--sh-md);
  animation: ag-label-in .35s ease forwards;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.ag-fab-label svg { opacity: .85; flex-shrink: 0; }
.ag-fab-label::after {
  content: '';
  position: absolute;
  right: -5px; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--navy);
  border-right: none;
}
@keyframes ag-label-in {
  from { opacity: 0; transform: translateY(-50%) translateX(8px); }
  to   { opacity: 1; transform: translateY(-50%) translateX(0);   }
}

/* Chat window */
.ag-win {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 370px;
  max-height: 570px;
  border-radius: var(--r-xl);
  background: var(--bg-body);
  border: 1.5px solid var(--border-c);
  box-shadow: var(--sh-xl);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1199;
  transform-origin: bottom right;
  animation: ag-win-in .3s cubic-bezier(.34,1.56,.64,1) forwards;
}
.ag-win.ag-closing { animation: ag-win-out .22s ease forwards; }
@keyframes ag-win-in {
  from { opacity: 0; transform: scale(.82) translateY(18px); }
  to   { opacity: 1; transform: scale(1)   translateY(0);    }
}
@keyframes ag-win-out {
  from { opacity: 1; transform: scale(1)   translateY(0);    }
  to   { opacity: 0; transform: scale(.82) translateY(18px); }
}

/* Header */
.ag-header {
  background: linear-gradient(135deg, #1740B0 0%, #2563EB 55%, #5B21B6 100%);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.ag-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 2px solid rgba(255,255,255,.35);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ag-header-info { flex: 1; min-width: 0; }
.ag-name {
  display: block;
  font-size: .88rem; font-weight: 700;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.ag-powered {
  font-size: .7rem; font-weight: 500;
  color: rgba(255,255,255,.65);
}
.ag-status {
  display: flex; align-items: center; gap: 5px;
  font-size: .7rem; color: rgba(255,255,255,.75);
  margin-top: 2px;
}
.ag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 6px rgba(74,222,128,.8);
  animation: ag-blink 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes ag-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}
.ag-close-btn {
  background: rgba(255,255,255,.14);
  border: none; border-radius: 50%;
  width: 30px; height: 30px;
  cursor: pointer; color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
  flex-shrink: 0;
}
.ag-close-btn:hover { background: rgba(255,255,255,.28); }

/* Messages */
.ag-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--border-2) transparent;
}
.ag-msg {
  display: flex;
  gap: 7px;
  max-width: 86%;
  animation: ag-msg-in .22s ease forwards;
}
@keyframes ag-msg-in {
  from { opacity: 0; transform: translateY(7px); }
  to   { opacity: 1; transform: translateY(0);   }
}
.ag-bot  { align-self: flex-start; }
.ag-user { align-self: flex-end; flex-direction: row-reverse; }
.ag-msg-av {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB, #6D28D9);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.ag-bubble {
  padding: 9px 13px;
  border-radius: 16px;
  font-size: .84rem;
  line-height: 1.55;
}
.ag-bot .ag-bubble {
  background: var(--bg-off);
  color: var(--text-main);
  border-bottom-left-radius: 4px;
  border: 1px solid var(--border-c);
}
.ag-user .ag-bubble {
  background: linear-gradient(135deg, #2563EB, #1E40AF);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.ag-bubble strong { font-weight: 700; }

/* Typing indicator */
.ag-typing {
  display: flex; align-items: center; gap: 4px;
  padding: 9px 13px;
  background: var(--bg-off);
  border: 1px solid var(--border-c);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  width: fit-content;
}
.ag-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-mut);
  animation: ag-dot-bounce .9s ease-in-out infinite;
}
.ag-typing span:nth-child(2) { animation-delay: .15s; }
.ag-typing span:nth-child(3) { animation-delay: .3s;  }
@keyframes ag-dot-bounce {
  0%, 60%, 100% { transform: translateY(0);   opacity: .4; }
  30%            { transform: translateY(-4px); opacity: 1;  }
}

/* Quick replies */
.ag-qr {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 2px 14px 12px;
  flex-shrink: 0;
}
.ag-qr-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  border: 1.5px solid var(--blue);
  background: transparent;
  color: var(--blue);
  font-size: .77rem; font-weight: 600;
  cursor: pointer;
  transition: background .15s, color .15s, transform .1s;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  white-space: nowrap;
}
.ag-qr-btn svg { flex-shrink: 0; }
.ag-qr-btn:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-1px);
}

/* Input area */
.ag-input-wrap {
  display: flex;
  gap: 9px;
  padding: 11px 14px;
  border-top: 1px solid var(--border-c);
  flex-shrink: 0;
  background: var(--bg-body);
}
.ag-input {
  flex: 1;
  padding: 8px 13px;
  border-radius: 100px;
  border: 1.5px solid var(--border-c);
  background: var(--bg-off);
  color: var(--text-main);
  font-size: .84rem;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  outline: none;
  transition: border-color .15s;
}
.ag-input:focus        { border-color: var(--blue); }
.ag-input::placeholder { color: var(--text-mut); }
.ag-input.ag-shake {
  border-color: #EF4444 !important;
  animation: ag-shake .35s ease;
}
@keyframes ag-shake {
  0%, 100% { transform: translateX(0);  }
  25%       { transform: translateX(-5px); }
  75%       { transform: translateX(5px);  }
}
.ag-send {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue);
  border: none; cursor: pointer; color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .15s, transform .15s;
}
.ag-send:hover { background: var(--blue-2); transform: scale(1.07); }

/* System message */
.ag-sys {
  text-align: center;
  font-size: .7rem;
  color: var(--text-mut);
  padding: 6px 0 2px;
}

/* Dark mode tweaks */
[data-theme="dark"] .ag-bot .ag-bubble {
  background: var(--bg-off-2);
  border-color: var(--border-c-2);
}
[data-theme="dark"] .ag-qr-btn {
  color: #93B4FF;
  border-color: #93B4FF;
}
[data-theme="dark"] .ag-qr-btn:hover {
  background: rgba(37,99,235,.3);
  color: #fff;
}
[data-theme="dark"] .ag-fab-label { background: var(--bg-off-2); }
[data-theme="dark"] .ag-fab-label::after { border-left-color: var(--bg-off-2); }

/* Responsive */
@media (max-width: 480px) {
  .ag-win { right: 10px; left: 10px; width: auto; bottom: 86px; }
  .ag-fab { bottom: 18px; right: 18px; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off); }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* ---------- Button text — white in both light & dark mode ---------- */
.btn-primary,
.btn-primary:hover,
.btn-primary:visited,
.btn-gold,
.btn-gold:hover,
.btn-gold:visited,
.btn-ghost-light:hover {
  color: #ffffff !important;
}
[data-theme="dark"] .btn-primary,
[data-theme="dark"] .btn-primary:hover,
[data-theme="dark"] .btn-primary:visited,
[data-theme="dark"] .btn-gold,
[data-theme="dark"] .btn-gold:hover,
[data-theme="dark"] .btn-ghost-light:hover {
  color: #ffffff !important;
}

/* ── CARDS — dark mode ── */
[data-theme="dark"] .card-featured,
[data-theme="dark"] .testi-featured {
  background: linear-gradient(160deg, rgba(37,99,235,.18) 0%, var(--bg-off-2) 60%);
  border-color: rgba(37,99,235,.4);
}

/* ── CLIENTS CAROUSEL — dark mode ── */
[data-theme="dark"] .clients-strip {
  background: var(--bg-off);
  border-top-color: var(--border-c);
  border-bottom-color: var(--border-c);
}
[data-theme="dark"] .client-logo {
  border-right-color: var(--border-c);
}
