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

:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --secondary: #06b6d4;
  --secondary-dark: #0891b2;
  --secondary-light: #22d3ee;
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  --accent-dark: #d97706;
  --emerald: #10b981;
  --emerald-dark: #059669;
  --emerald-light: #34d399;
  --rose: #f43f5e;
  --rose-light: #fb7185;
  --purple: #8b5cf6;
  --purple-light: #a78bfa;
  --orange: #f97316;
  --pink: #ec4899;
  --teal: #14b8a6;

  --navy: #0f172a;
  --navy-light: #1e293b;
  --navy-lighter: #334155;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-xl: 0 30px 80px rgba(0,0,0,0.18);
  --shadow-glow: 0 0 40px rgba(99,102,241,0.3);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif; color: var(--gray-800);
  line-height: 1.6; overflow-x: hidden;
  background: var(--gray-50);
}
h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; }
img { max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ════════════════════════════════════════
   NAVBAR -- Glass morphism
   ════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.8); backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.6);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; height: 76px;
}
.nav-logo img { height: 38px; width: auto; transition: transform 0.3s; }
.nav-logo:hover img { transform: scale(1.05); }
.nav-links { display: flex; gap: 1.8rem; align-items: center; list-style: none; }
.nav-links > li > a {
  color: var(--gray-600); font-size: 0.9rem; font-weight: 600;
  transition: all 0.25s; position: relative; padding: 0.4rem 0;
  letter-spacing: -0.01em;
}
.nav-links > li > a:hover { color: var(--primary); }
.nav-links > li > a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 3px; transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links > li > a:hover::after { width: 100%; }
.nav-cta {
  background: #6366f1;
  color: white !important; padding: 0.85rem 2.4rem; border-radius: var(--radius-full);
  font-weight: 700; font-size: 0.88rem; letter-spacing: 0.02em;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: none;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  white-space: nowrap;
}
.nav-cta:hover {
  background: #4f46e5;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99,102,241,0.35);
}
.nav-cta::after { display: none !important; }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.hamburger span { width: 26px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: 0.3s; }
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(10px);
  min-width: 220px; background: white; border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15); padding: 0.8rem 0; list-style: none;
  opacity: 0; visibility: hidden; transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--gray-100);
}
.nav-item:hover > .nav-dropdown, .nav-item:focus-within > .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block; padding: 0.7rem 1.4rem; font-size: 0.88rem;
  color: var(--gray-600); transition: all 0.2s; border-radius: var(--radius-sm); margin: 0 0.4rem;
}
.nav-dropdown a:hover {
  background: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(6,182,212,0.06));
  color: var(--primary); transform: translateX(4px);
}
.nav-dropdown a::after { display: none !important; }
.mobile-nav {
  position: fixed; top: 0; right: -100%; width: 320px; height: 100vh;
  background: white; z-index: 1100; padding: 2.5rem 2rem;
  box-shadow: -10px 0 40px rgba(0,0,0,0.15); transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.open { right: 0; }
.mobile-nav-close { float: right; font-size: 1.5rem; cursor: pointer; background: none; border: none; color: var(--navy); padding: 4px; }
.mobile-nav ul { list-style: none; margin-top: 3.5rem; }
.mobile-nav ul li { margin-bottom: 1rem; }
.mobile-nav ul a { color: var(--gray-800); font-size: 1.05rem; font-weight: 600; }
.mobile-nav-cta { display: inline-block !important; margin-top: 1rem; }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1050; display: none; backdrop-filter: blur(4px); }
.mobile-overlay.show { display: block; }
@media (max-width: 992px) { .nav-links { display: none; } .hamburger { display: flex; } }

/* ════════════════════════════════════════
   HERO -- Rich animated gradient + particles
   ════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(-45deg, #0f172a, #1e1b4b, #312e81, #1e3a5f, #064e3b, #134e4a);
  background-size: 600% 600%; animation: heroGrad 16s ease infinite;
  color: white; padding: 8rem 2rem 5rem; position: relative; overflow: hidden;
}
@keyframes heroGrad {
  0% { background-position: 0% 50%; }
  25% { background-position: 50% 100%; }
  50% { background-position: 100% 50%; }
  75% { background-position: 50% 0%; }
  100% { background-position: 0% 50%; }
}
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-shapes .shape { position: absolute; border-radius: 50%; }
.hero-shapes .s1 {
  width: 700px; height: 700px; top: -25%; right: -15%;
  background: radial-gradient(circle, rgba(99,102,241,0.2), transparent 70%);
  animation: float1 18s ease-in-out infinite;
}
.hero-shapes .s2 {
  width: 500px; height: 500px; bottom: -20%; left: -10%;
  background: radial-gradient(circle, rgba(6,182,212,0.15), transparent 70%);
  animation: float2 20s ease-in-out infinite;
}
.hero-shapes .s3 {
  width: 350px; height: 350px; top: 20%; left: 40%;
  background: radial-gradient(circle, rgba(245,158,11,0.12), transparent 70%);
  animation: float1 22s ease-in-out infinite reverse;
}
.hero-shapes .s4 {
  width: 250px; height: 250px; top: 60%; right: 30%;
  background: radial-gradient(circle, rgba(236,72,153,0.12), transparent 70%);
  animation: float2 15s ease-in-out infinite;
}
@keyframes float1 { 0%,100% { transform: translateY(0) scale(1) rotate(0deg); } 50% { transform: translateY(-50px) scale(1.1) rotate(5deg); } }
@keyframes float2 { 0%,100% { transform: translateX(0) scale(1) rotate(0deg); } 50% { transform: translateX(40px) scale(1.08) rotate(-3deg); } }
.hero-inner {
  max-width: 1300px; margin: 0 auto; width: 100%; position: relative; z-index: 1;
  display: flex; align-items: center; gap: 4rem;
}
.hero-text { flex: 1; }
.hero-text h1 { font-size: 4rem; font-weight: 900; line-height: 1.08; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.hero-text h1 .highlight {
  background: linear-gradient(135deg, #22d3ee, #a78bfa, #fbbf24, #fb7185);
  background-size: 200% 200%; animation: textShimmer 4s ease infinite;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
@keyframes textShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-text p { font-size: 1.2rem; opacity: 0.85; margin-bottom: 2.5rem; max-width: 560px; line-height: 1.8; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--purple));
  color: white; padding: 1rem 2.5rem; border-radius: var(--radius-full);
  font-weight: 700; font-size: 1rem; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 0.6rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(99,102,241,0.4);
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(99,102,241,0.5);
}
.btn-emerald { background: linear-gradient(135deg, var(--emerald), var(--teal)); box-shadow: 0 8px 30px rgba(16,185,129,0.4); }
.btn-emerald:hover { box-shadow: 0 15px 40px rgba(16,185,129,0.5); }
.btn-coral { background: linear-gradient(135deg, var(--orange), var(--rose)); box-shadow: 0 8px 30px rgba(249,115,22,0.4); }
.btn-coral:hover { box-shadow: 0 15px 40px rgba(249,115,22,0.5); }
.btn-purple { background: linear-gradient(135deg, var(--purple), var(--pink)); box-shadow: 0 8px 30px rgba(139,92,246,0.4); }
.btn-sky { background: linear-gradient(135deg, var(--secondary), var(--primary)); box-shadow: 0 8px 30px rgba(6,182,212,0.4); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.5); color: white; padding: 0.95rem 2.5rem;
  border-radius: var(--radius-full); font-weight: 700; font-size: 1rem;
  transition: all 0.3s; display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(255,255,255,0.05); backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15); border-color: white;
  transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,255,255,0.1);
}
.hero-right { flex: 0 0 460px; position: relative; }
.hero-right img {
  width: 100%; border-radius: var(--radius-xl);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  border: 2px solid rgba(255,255,255,0.1);
}
.hero-right::before {
  content: ''; position: absolute; inset: -20px; border-radius: 36px;
  background: conic-gradient(from 0deg, var(--primary), var(--secondary), var(--emerald), var(--accent), var(--pink), var(--primary));
  z-index: -1; opacity: 0.5; filter: blur(30px); animation: glowRotate 8s linear infinite;
}
@keyframes glowRotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.countdown-bar {
  background: rgba(255,255,255,0.06); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-xl);
  padding: 1.4rem 2.5rem; margin-top: 3rem; display: inline-flex; align-items: center; gap: 2.5rem;
}
.countdown-bar .label { font-size: 0.85rem; opacity: 0.8; font-weight: 600; }
.countdown-item { text-align: center; }
.countdown-item .num {
  font-size: 2.4rem; font-weight: 900; font-family: 'Poppins';
  background: linear-gradient(135deg, #22d3ee, #a78bfa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.countdown-item .unit { font-size: 0.7rem; text-transform: uppercase; opacity: 0.6; letter-spacing: 2px; }
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 7rem 1.5rem 3rem; }
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-text h1 { font-size: 2.6rem; }
  .hero-right { flex: none; width: 100%; max-width: 360px; }
  .hero-btns { justify-content: center; }
  .countdown-bar { flex-wrap: wrap; justify-content: center; gap: 1.2rem; padding: 1rem 1.5rem; }
}

/* ════════════════════════════════════════
   WAVE DIVIDERS
   ════════════════════════════════════════ */
.wave-divider { line-height: 0; overflow: hidden; }
.wave-divider svg { display: block; width: 100%; height: 70px; }
.wave-divider.flip { transform: rotate(180deg); }

/* ════════════════════════════════════════
   SECTION BASE
   ════════════════════════════════════════ */
.section { padding: 7rem 2rem; position: relative; }
.section-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.section-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 3px; padding: 0.5rem 1.4rem; border-radius: var(--radius-full); margin-bottom: 1rem;
}
.tag-emerald { background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(20,184,166,0.08)); color: var(--emerald-dark); }
.tag-purple { background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(99,102,241,0.06)); color: var(--purple); }
.tag-sky { background: linear-gradient(135deg, rgba(6,182,212,0.1), rgba(99,102,241,0.06)); color: var(--secondary-dark); }
.tag-amber { background: linear-gradient(135deg, rgba(245,158,11,0.12), rgba(249,115,22,0.06)); color: var(--accent-dark); }
.tag-white { background: rgba(255,255,255,0.15); color: white; backdrop-filter: blur(4px); }
.section-title {
  font-size: 3rem; font-weight: 900; text-align: center; margin-bottom: 0.8rem;
  color: var(--navy); letter-spacing: -0.02em;
}
.section-title.white { color: white; }
.section-subtitle {
  text-align: center; color: var(--gray-500); font-size: 1.15rem; margin-bottom: 4rem;
  max-width: 650px; margin-left: auto; margin-right: auto; line-height: 1.8;
}
.section-subtitle.white { color: rgba(255,255,255,0.8); }
.text-center { text-align: center; }

.bg-white { background: white; }
.bg-gray { background: var(--gray-50); }
.bg-navy {
  background: linear-gradient(135deg, #0f172a, #1e1b4b, #312e81);
  color: white; position: relative; overflow: hidden;
}
.bg-navy::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(ellipse at 30% 50%, rgba(99,102,241,0.08) 0%, transparent 50%),
                    radial-gradient(ellipse at 70% 80%, rgba(6,182,212,0.06) 0%, transparent 50%);
}
.bg-emerald-grad {
  background: linear-gradient(135deg, #059669, #0d9488, #0891b2) !important;
  color: white !important; position: relative; overflow: hidden;
}
.bg-emerald-grad h2, .bg-emerald-grad h3, .bg-emerald-grad h4,
.bg-emerald-grad p, .bg-emerald-grad .section-title, .bg-emerald-grad .section-subtitle {
  color: white !important;
}
.bg-purple-grad {
  background: linear-gradient(135deg, #4f46e5, #7c3aed, #a855f7);
  color: white; position: relative; overflow: hidden;
}
.bg-warm { background: linear-gradient(135deg, #fffbeb, #fef3c7, #fff7ed); }
.bg-cool { background: linear-gradient(135deg, #eff6ff, #f0f9ff, #ecfdf5); }
.bg-pattern { position: relative; }
.bg-pattern::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 2px 2px, rgba(0,0,0,0.04) 1px, transparent 0);
  background-size: 28px 28px;
  z-index: 0;
}
.bg-navy.bg-pattern::after,
.bg-emerald-grad.bg-pattern::after,
.bg-purple-grad.bg-pattern::after {
  background-image:
    radial-gradient(circle at 2px 2px, rgba(255,255,255,0.05) 1px, transparent 0);
}
.bg-mesh {
  background:
    radial-gradient(at 40% 20%, rgba(99,102,241,0.06) 0px, transparent 50%),
    radial-gradient(at 80% 60%, rgba(6,182,212,0.04) 0px, transparent 50%),
    radial-gradient(at 20% 80%, rgba(236,72,153,0.03) 0px, transparent 50%),
    white;
}

/* ════════════════════════════════════════
   TRUST BAR -- Bold stats
   ════════════════════════════════════════ */
.trust-bar {
  background: linear-gradient(135deg, #0f172a, #1e1b4b, #312e81);
  color: white; padding: 4rem 2rem; position: relative; overflow: hidden;
}
.trust-bar::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(99,102,241,0.12), transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(6,182,212,0.08), transparent 50%);
}
.trust-bar::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 32px 32px; pointer-events: none;
}
.trust-bar .section-inner { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2.5rem; position: relative; z-index: 1; }
.stat-item { text-align: center; min-width: 150px; }
.stat-item .stat-icon {
  width: 64px; height: 64px; border-radius: var(--radius-lg); display: flex;
  align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(6,182,212,0.15));
  color: var(--secondary-light); border: 1px solid rgba(255,255,255,0.1);
}
.stat-item .stat-num {
  font-size: 3.5rem; font-weight: 900; font-family: 'Poppins';
  background: linear-gradient(135deg, white, var(--secondary-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-item .stat-label { font-size: 0.9rem; opacity: 0.6; margin-top: 0.3rem; letter-spacing: 0.5px; }

/* ════════════════════════════════════════
   SERVICE CARDS -- Hover glow effects
   ════════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
.service-card {
  background: white; border-radius: var(--radius-xl); padding: 2.8rem 1.8rem; text-align: center;
  box-shadow: var(--shadow-sm); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--gray-100); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0); transition: transform 0.4s; transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(99,102,241,0.15);
  border-color: rgba(99,102,241,0.1);
}
.service-card .icon-circle {
  width: 110px; height: 110px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; margin: 0 auto 1.8rem;
  font-size: 2.8rem; color: white; position: relative;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.service-card .icon-circle::after {
  content: ''; position: absolute; inset: -8px; border-radius: 50%;
  background: inherit; opacity: 0.25; filter: blur(15px); z-index: -1;
}
.ic-emerald { background: linear-gradient(135deg, #10b981, #06b6d4); }
.ic-navy { background: linear-gradient(135deg, #6366f1, #3b82f6); }
.ic-amber { background: linear-gradient(135deg, #f59e0b, #f97316); }
.ic-purple { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.ic-sky { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.ic-coral { background: linear-gradient(135deg, #f97316, #ef4444); }
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.8rem; color: var(--navy); font-weight: 800; }
.service-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.75; }
.service-card .card-link {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.4rem;
  font-weight: 700; font-size: 0.9rem; transition: all 0.25s;
}
.card-link-emerald { color: var(--emerald); }
.card-link-navy { color: var(--primary); }
.card-link-amber { color: var(--accent); }
.card-link-purple { color: var(--purple); }
.card-link-sky { color: var(--secondary); }
.service-card .card-link:hover { gap: 0.9rem; }

/* ════════════════════════════════════════
   HOW IT WORKS -- Connected steps
   ════════════════════════════════════════ */
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.steps-row::before {
  content: ''; position: absolute; top: 52px; left: 12%; right: 12%; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--emerald), var(--accent));
  border-radius: 2px; z-index: 0;
}
.step-card { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 85px; height: 85px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  box-shadow: 0 12px 35px rgba(99,102,241,0.4);
  color: white; font-weight: 900; font-size: 1.7rem; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 1.4rem; font-family: 'Poppins';
  border: 5px solid white;
}
.step-card h4 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.6rem; font-weight: 700; }
.step-card p, .step-list { font-size: 0.88rem; color: var(--gray-500); }
.step-list { text-align: left; padding-left: 1.15rem; margin: 0 auto; max-width: 240px; line-height: 1.7; list-style: disc; }
.step-list li { margin-bottom: 0.35rem; }
@media (max-width: 768px) { .steps-row { grid-template-columns: repeat(2, 1fr); } .steps-row::before { display: none; } }
@media (max-width: 480px) { .steps-row { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════
   PRICING CARDS -- Gradient headers
   ════════════════════════════════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.price-card {
  border-radius: var(--radius-xl); overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; background: white; box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}
.price-card:hover { transform: translateY(-10px); }
.price-card-header { padding: 2.2rem 1.8rem 1.5rem; text-align: center; color: white; position: relative; overflow: hidden; }
.price-card-header::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.15), transparent 50%);
}
.grad-emerald { background: linear-gradient(135deg, #10b981, #06b6d4); }
.grad-purple { background: linear-gradient(135deg, #8b5cf6, #6366f1); }
.grad-coral { background: linear-gradient(135deg, #f97316, #ef4444); }
.grad-sky { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.grad-navy { background: linear-gradient(135deg, #1e293b, #4f46e5); }
.grad-amber { background: linear-gradient(135deg, #f59e0b, #f97316); }
.price-card-header .plan-name { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 3px; opacity: 0.85; font-weight: 700; position: relative; z-index: 1; }
.price-card-header h3 { font-size: 1.2rem; margin: 0.5rem 0; font-weight: 700; position: relative; z-index: 1; }
.price-card-header .price { font-size: 2.8rem; font-weight: 900; font-family: 'Poppins'; position: relative; z-index: 1; }
.price-card-header .price small { font-size: 0.85rem; font-weight: 400; opacity: 0.8; }
.price-card-body { padding: 1.8rem 2rem 2.2rem; }
.price-card-body ul { list-style: none; margin: 0 0 1.8rem; }
.price-card-body ul li {
  padding: 0.6rem 0; font-size: 0.9rem; color: var(--gray-600);
  display: flex; align-items: flex-start; gap: 0.7rem; border-bottom: 1px solid var(--gray-100);
}
.price-card-body ul li:last-child { border-bottom: none; }
.price-card-body ul li .check { color: var(--emerald); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }
.price-card .btn-primary { width: 100%; justify-content: center; }
.price-card:hover.glow-emerald { box-shadow: 0 20px 50px rgba(16,185,129,0.25); }
.price-card:hover.glow-purple { box-shadow: 0 20px 50px rgba(139,92,246,0.25); }
.price-card:hover.glow-coral { box-shadow: 0 20px 50px rgba(249,115,22,0.25); }
.price-card:hover.glow-sky { box-shadow: 0 20px 50px rgba(6,182,212,0.25); }
.price-card:hover.glow-navy { box-shadow: 0 20px 50px rgba(30,58,95,0.25); }
.badge-popular {
  position: absolute; top: 14px; right: -28px;
  background: linear-gradient(135deg, var(--accent), var(--orange));
  color: white; padding: 5px 40px; font-size: 0.68rem; font-weight: 800;
  transform: rotate(45deg); text-transform: uppercase; letter-spacing: 1.5px;
  box-shadow: 0 4px 12px rgba(245,158,11,0.4);
}
.all-plans-box {
  background: linear-gradient(135deg, rgba(99,102,241,0.04), rgba(6,182,212,0.04));
  border: 2px solid var(--primary); border-radius: var(--radius-xl); padding: 2.2rem;
  text-align: center; margin-top: 3rem;
}
.all-plans-box h4 { color: var(--primary-dark); margin-bottom: 0.8rem; font-size: 1.15rem; }
.all-plans-box ul { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem 2.5rem; }
.all-plans-box ul li { font-size: 0.9rem; color: var(--gray-700); display: flex; align-items: center; gap: 0.5rem; }
.all-plans-box ul li .check { color: var(--primary); }

/* ════════════════════════════════════════
   BENEFITS -- Glass cards
   ════════════════════════════════════════ */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.benefit-card {
  text-align: center; padding: 2.8rem 1.8rem; border-radius: var(--radius-xl);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative;
}
.benefit-card:hover { transform: translateY(-10px); }
.benefit-card-white {
  background: white; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
}
.benefit-card-white:hover { box-shadow: var(--shadow-lg); }
.benefit-card-glass {
  background: rgba(255,255,255,0.18); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.benefit-card-glass:hover { background: rgba(255,255,255,0.28); box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.benefit-card-glass h4 { color: white; }
.benefit-card-glass p { color: rgba(255,255,255,0.9); }
.benefit-card .b-icon {
  width: 95px; height: 95px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.4rem; font-size: 2.4rem; color: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.benefit-card h4 { font-size: 1.2rem; margin-bottom: 0.6rem; font-weight: 800; }
.benefit-card p { font-size: 0.9rem; line-height: 1.75; opacity: 0.85; }

/* ════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════ */
.testimonial-card {
  background: white; border-radius: var(--radius-xl); padding: 2.5rem;
  box-shadow: var(--shadow-sm); text-align: center; margin: 0 0.5rem;
  border: 1px solid var(--gray-100); transition: all 0.35s;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.testimonial-card .stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 3px; }
.testimonial-card .quote-icon { font-size: 2.5rem; color: var(--primary-light); opacity: 0.4; margin-bottom: 0.4rem; }
.testimonial-card .quote { font-size: 0.95rem; color: var(--gray-600); line-height: 1.85; font-style: italic; margin-bottom: 1.8rem; }
.testimonial-card .author-img {
  width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 0.7rem; object-fit: cover;
  border: 3px solid var(--primary-light); box-shadow: 0 4px 15px rgba(99,102,241,0.2);
}
.testimonial-card .author-name { font-weight: 700; color: var(--navy); font-size: 1.05rem; }
.testimonial-card .author-title { font-size: 0.82rem; color: var(--gray-400); }

/* ════════════════════════════════════════
   PARTNERS -- Smooth marquee
   ════════════════════════════════════════ */
.partners-wrap { overflow: hidden; padding: 1rem 0; }
.partners-track {
  display: flex; gap: 4rem; animation: marquee 25s linear infinite;
  width: max-content; align-items: center;
}
.partners-track img { height: 55px; transition: all 0.3s; filter: grayscale(0.3); opacity: 0.8; }
.partners-track img:hover { transform: scale(1.15); filter: grayscale(0); opacity: 1; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ════════════════════════════════════════
   NEWSLETTER / CTA
   ════════════════════════════════════════ */
.newsletter-section { position: relative; overflow: hidden; }
.newsletter-section .newsletter-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.newsletter-section .newsletter-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.92), rgba(79,70,229,0.85), rgba(6,182,212,0.8));
}
.newsletter {
  position: relative; z-index: 1; color: white; text-align: center; padding: 6rem 2rem;
}
.newsletter h2 { color: white; margin-bottom: 0.6rem; font-size: 2.6rem; font-weight: 900; }
.newsletter p { opacity: 0.9; margin-bottom: 2.5rem; font-size: 1.15rem; }
.newsletter-form { display: flex; max-width: 520px; margin: 0 auto; gap: 0.8rem; }
.newsletter-form input {
  flex: 1; padding: 1.1rem 1.5rem; border-radius: var(--radius-full); border: none;
  font-size: 1rem; box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.newsletter-form button { white-space: nowrap; }

/* ════════════════════════════════════════
   FOOTER -- Dark rich
   ════════════════════════════════════════ */
.footer {
  background: linear-gradient(180deg, #0f172a, #020617);
  color: rgba(255,255,255,0.7); padding: 5rem 2rem 2rem;
  position: relative; overflow: hidden;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
}
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 3rem; }
.footer h4 { color: white; margin-bottom: 1.2rem; font-size: 1.05rem; font-weight: 700; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.6rem; }
.footer ul a { color: rgba(255,255,255,0.5); font-size: 0.9rem; transition: all 0.25s; }
.footer ul a:hover { color: var(--secondary-light); padding-left: 6px; }
.footer-about img { height: 38px; width: auto; }
.footer-about p { font-size: 0.9rem; line-height: 1.75; margin-bottom: 1.5rem; }
.footer-about .social-links { display: flex; gap: 0.8rem; }
.footer-about .social-links a {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center;
  color: white; transition: all 0.3s; font-size: 1.05rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.footer-about .social-links a:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: translateY(-3px); box-shadow: 0 8px 25px rgba(99,102,241,0.3);
  border-color: transparent;
}
.footer-bottom {
  max-width: 1200px; margin: 3rem auto 0; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05); text-align: center; font-size: 0.85rem;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════
   FAQ ACCORDION
   ════════════════════════════════════════ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg); margin-bottom: 0.8rem;
  overflow: hidden; transition: all 0.3s;
  background: white;
}
.faq-item.open { border-color: var(--primary); box-shadow: 0 8px 30px rgba(99,102,241,0.1); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; padding: 1.3rem 1.6rem;
  cursor: pointer; font-weight: 600; color: var(--navy); background: white; transition: all 0.2s;
  width: 100%; border: none; font: inherit; text-align: left; gap: 1rem; font-family: 'Poppins', sans-serif;
}
button.faq-q { font-family: inherit; }
.faq-q:hover { background: var(--gray-50); }
.faq-q .faq-icon { color: var(--primary); margin-right: 0.5rem; font-size: 1rem; flex-shrink: 0; }
.faq-q .arrow { transition: transform 0.3s; font-size: 0.85rem; color: var(--gray-400); flex-shrink: 0; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); color: var(--primary); }
.faq-item.open .faq-q { color: var(--primary-dark); background: linear-gradient(90deg, rgba(99,102,241,0.04), transparent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-a { max-height: 8000px; padding: 0 1.6rem 1.6rem; overflow: auto; }
.faq-a p, .faq-a ul, .faq-a ol, .faq-a table { font-size: 0.9rem; color: var(--gray-600); line-height: 1.85; }
.faq-a ul, .faq-a ol { padding-left: 1.2rem; }
.faq-a table { width: 100%; border-collapse: collapse; margin: 0.8rem 0; font-size: 0.82rem; }
.faq-a th, .faq-a td { border: 1px solid var(--gray-200); padding: 0.65rem 0.9rem; text-align: left; }
.faq-a th { background: linear-gradient(135deg, var(--navy), var(--primary-dark)); color: white; font-weight: 600; }

/* ════════════════════════════════════════
   WHATSAPP WIDGET
   ════════════════════════════════════════ */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 900; }
.wa-btn {
  width: 66px; height: 66px; border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex; align-items: center; justify-content: center; color: white;
  font-size: 1.9rem; cursor: pointer; box-shadow: 0 8px 30px rgba(37,211,102,0.45);
  transition: all 0.3s; border: none; animation: waFloat 3s ease-in-out infinite;
}
@keyframes waFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 12px 35px rgba(37,211,102,0.55); animation: none; }
.wa-popup {
  position: absolute; bottom: 84px; right: 0; width: 330px; background: white;
  border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); overflow: hidden;
  display: none; animation: waPop 0.3s ease;
}
.wa-popup.show { display: block; }
@keyframes waPop { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.wa-popup-header { background: linear-gradient(135deg, #25d366, #128c7e); color: white; padding: 1.3rem; }
.wa-popup-header h4 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.wa-popup-header p { font-size: 0.78rem; opacity: 0.9; }
.wa-popup-body { padding: 1.3rem; }
.wa-popup-body p { font-size: 0.88rem; color: var(--gray-600); background: var(--gray-50); padding: 0.9rem; border-radius: var(--radius-md); margin-bottom: 1rem; }
.wa-popup-body a {
  display: block; background: linear-gradient(135deg, #25d366, #128c7e); color: white;
  text-align: center; padding: 0.8rem; border-radius: var(--radius-md);
  font-weight: 700; transition: all 0.25s;
}
.wa-popup-body a:hover { box-shadow: 0 8px 25px rgba(37,211,102,0.4); transform: translateY(-2px); }

/* ════════════════════════════════════════
   BACK TO TOP
   ════════════════════════════════════════ */
.back-top {
  position: fixed; bottom: 100px; right: 28px; width: 50px; height: 50px;
  border-radius: var(--radius-md); background: linear-gradient(135deg, var(--primary), var(--purple));
  color: white; display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; transition: all 0.3s; z-index: 800; border: none; font-size: 1rem;
  box-shadow: 0 6px 20px rgba(99,102,241,0.3);
}
.back-top.show { opacity: 1; }
.back-top:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(99,102,241,0.45); }

/* ════════════════════════════════════════
   CTA BAND
   ════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(-45deg, #0f172a, #1e1b4b, #312e81, #4f46e5, #0891b2);
  background-size: 400% 400%; animation: heroGrad 12s ease infinite;
  color: white; text-align: center; padding: 4.5rem 2rem; border-radius: var(--radius-xl); margin: 0 2rem;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 60%); border-radius: 50%;
}
.cta-band::after {
  content: ''; position: absolute; bottom: -30%; left: -10%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(6,182,212,0.1), transparent 60%); border-radius: 50%;
}
.cta-band h2 { color: white; margin-bottom: 0.6rem; font-size: 2.2rem; font-weight: 900; position: relative; z-index: 1; }
.cta-band p { opacity: 0.9; margin-bottom: 2rem; font-size: 1.1rem; position: relative; z-index: 1; }
.cta-band .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ════════════════════════════════════════
   PAGE HERO (inner pages)
   ════════════════════════════════════════ */
.page-hero {
  color: white; padding: 10rem 2rem 5.5rem; text-align: center;
  position: relative; overflow: hidden; background-size: cover; background-position: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.92), rgba(30,27,75,0.85), rgba(6,182,212,0.75));
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 30px 30px;
}
.page-hero * { position: relative; z-index: 1; }
.page-hero h1 { font-size: 3.2rem; font-weight: 900; margin-bottom: 1rem; letter-spacing: -0.02em; }
.page-hero p { font-size: 1.2rem; opacity: 0.9; max-width: 640px; margin: 0 auto 1.8rem; line-height: 1.8; }
.page-hero .hero-bullets {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem 1.8rem;
  margin-bottom: 2rem; font-size: 0.92rem;
}
.page-hero .hero-bullets li::before {
  content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  color: var(--secondary-light); margin-right: 0.6rem;
}
@media (max-width: 768px) { .page-hero h1 { font-size: 2.2rem; } .page-hero { padding: 8rem 1.5rem 3.5rem; } }

/* ════════════════════════════════════════
   DOCUMENT CARDS
   ════════════════════════════════════════ */
.docs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.doc-card {
  background: white; border-radius: var(--radius-lg); padding: 2rem;
  border-left: 5px solid; box-shadow: var(--shadow-sm);
  transition: all 0.35s; border-image: linear-gradient(180deg, var(--primary), var(--secondary)) 1;
}
.doc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.doc-card h4 { color: var(--navy); margin-bottom: 0.5rem; font-size: 1.08rem; font-weight: 700; }
.doc-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.75; }

/* ════════════════════════════════════════
   TIMELINE
   ════════════════════════════════════════ */
.timeline { position: relative; padding-left: 3.5rem; }
.timeline::before {
  content: ''; position: absolute; left: 14px; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--secondary), var(--emerald));
  border-radius: 2px;
}
.timeline-item { position: relative; margin-bottom: 2.8rem; }
.timeline-item::before {
  content: ''; position: absolute; left: -3.5rem; top: 4px; width: 26px; height: 26px;
  border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: 4px solid white; box-shadow: 0 0 0 4px var(--primary), 0 4px 15px rgba(99,102,241,0.3);
}
.timeline-item h4 { color: var(--navy); margin-bottom: 0.3rem; font-weight: 700; font-size: 1.1rem; }
.timeline-item .time-badge { font-size: 0.78rem; color: var(--primary); font-weight: 700; margin-bottom: 0.5rem; }
.timeline-item p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.75; }

/* ════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════ */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 900px) { .contact-split { grid-template-columns: 1fr; } }
.contact-form-fields { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-form-fields label { font-size: 0.85rem; font-weight: 700; color: var(--navy); }
.contact-form-fields input, .contact-form-fields select, .contact-form-fields textarea {
  width: 100%; padding: 0.95rem 1.2rem; border: 2px solid var(--gray-200); border-radius: var(--radius-md);
  font-family: inherit; font-size: 0.95rem; transition: all 0.25s; background: white;
}
.contact-form-fields input:focus, .contact-form-fields select:focus, .contact-form-fields textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(99,102,241,0.1);
}
.contact-form-fields textarea { min-height: 150px; resize: vertical; }
.info-cards { display: flex; flex-direction: column; gap: 1.2rem; }
.info-card {
  background: white; border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 1.3rem; transition: all 0.35s;
  border: 1px solid var(--gray-100);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.info-card .info-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md); display: flex;
  align-items: center; justify-content: center; font-size: 1.3rem; color: white; flex-shrink: 0;
}
.info-card h4 { color: var(--navy); margin-bottom: 0.2rem; font-size: 1rem; font-weight: 700; }
.info-card p { font-size: 0.88rem; color: var(--gray-500); }

/* ════════════════════════════════════════
   TEAM + PLACEHOLDER
   ════════════════════════════════════════ */
.team-row { display: flex; justify-content: center; gap: 3.5rem; flex-wrap: wrap; }
.team-card-page { text-align: center; max-width: 300px; }
.team-card-page .team-photo {
  width: 190px; height: 190px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 1.2rem; border: 5px solid transparent; display: block;
  background-image: linear-gradient(white, white), linear-gradient(135deg, var(--primary), var(--secondary));
  background-origin: border-box; background-clip: content-box, border-box;
  box-shadow: 0 12px 35px rgba(99,102,241,0.2);
}
.team-card-page h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.4rem; }
.placeholder-card {
  max-width: 580px; margin: 0 auto; text-align: center; padding: 4rem 2.5rem;
  background: white; border-radius: var(--radius-xl); box-shadow: var(--shadow-md);
  border: 2px dashed var(--gray-300);
}

/* ════════════════════════════════════════
   UTILITIES
   ════════════════════════════════════════ */
.mb-0 { margin-bottom: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.section-hidden { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.section-visible { opacity: 1 !important; transform: translateY(0) !important; }
.swiper-pagination-bullet-active { background: var(--primary) !important; }

/* ════════════════════════════════════════
   PARTICLE CANVAS (added for hero wow)
   ════════════════════════════════════════ */
#hero-particles {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}

/* ════════════════════════════════════════
   FEATURE HIGHLIGHTS -- Animated borders
   ════════════════════════════════════════ */
.feature-highlight {
  position: relative; padding: 3px; border-radius: var(--radius-xl); overflow: hidden;
}
.feature-highlight::before {
  content: ''; position: absolute; inset: 0;
  background: conic-gradient(from 0deg, var(--primary), var(--secondary), var(--emerald), var(--accent), var(--pink), var(--primary));
  animation: borderRotate 4s linear infinite;
}
@keyframes borderRotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.feature-highlight-inner {
  background: white; border-radius: calc(var(--radius-xl) - 3px);
  padding: 2.5rem; position: relative; z-index: 1;
}

/* Page Disclaimer */
.page-disclaimer-section{max-width:900px;margin:0 auto;padding:0 1.5rem 3rem}
.page-disclaimer{padding:1.5rem 1.8rem;background:#fff9f0;border:1px solid #f0d9b5;border-radius:var(--radius-md);position:relative}
.page-disclaimer .disclaimer-icon{position:absolute;top:-14px;left:24px;width:28px;height:28px;background:#f59e0b;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-size:.75rem}
.page-disclaimer h4{font-size:.95rem;font-weight:700;color:#92400e;margin-bottom:.6rem}
.page-disclaimer p{font-size:.85rem;color:#78350f;line-height:1.7;margin-bottom:.5rem}
.page-disclaimer p:last-child{margin-bottom:0}
