/* ============================================================
   EDUUIS — IT-Themed Design System
   Font: Poppins | Palette: Deep Navy + Electric Blue
============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --navy-950: #020B18;
  --navy-900: #050D1F;
  --navy-800: #0A1628;
  --navy-700: #0E2040;
  --navy-600: #112D5A;
  --blue-700: #0E3A7A;
  --blue-600: #1565C0;
  --blue-500: #1976D2;
  --blue-400: #42A5F5;
  --blue-300: #64B5F6;
  --cyan-400: #26C5F3;
  --cyan-300: #00E5FF;
  --coral:    #FF6B35;
  --coral-dk: #E55A25;
  --white:    #FFFFFF;
  --gray-100: #F0F4FF;
  --gray-200: #D8E2F3;
  --gray-400: #8FA3C0;
  --gray-600: #4B5F7C;
  --text-body:#1A2B45;

  --grad-hero: linear-gradient(135deg, #020B18 0%, #0A1628 50%, #0E2040 100%);
  --grad-btn:  linear-gradient(135deg, #1976D2, #26C5F3);
  --grad-btn2: linear-gradient(135deg, #FF6B35, #FF9A5C);
  --grad-card: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  --grad-section: linear-gradient(180deg, #F0F4FF 0%, #FFFFFF 100%);

  --shadow-card: 0 8px 32px rgba(2,11,24,0.18);
  --shadow-btn:  0 4px 20px rgba(25,118,210,0.4);
  --shadow-glow: 0 0 40px rgba(38,197,243,0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --transition: 0.3s ease;
  --font: 'Poppins', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text-body); background: #fff; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: var(--font); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
.tag { display: inline-block; padding: 6px 16px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; }
.tag-blue { background: rgba(25,118,210,0.12); color: var(--cyan-400); border: 1px solid rgba(38,197,243,0.25); }
.tag-white { background: rgba(255,255,255,0.12); color: var(--white); border: 1px solid rgba(255,255,255,0.25); }
.section-title { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; line-height: 1.2; }
.section-sub { font-size: 1.05rem; color: var(--gray-600); margin-top: 12px; max-width: 560px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 12px auto 0; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 100px; font-size: 0.9rem; font-weight: 600; cursor: pointer; border: none; transition: var(--transition); white-space: nowrap; }
.btn-primary { background: var(--grad-btn); color: var(--white); box-shadow: var(--shadow-btn); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(25,118,210,0.5); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-coral { background: var(--grad-btn2); color: var(--white); box-shadow: 0 4px 20px rgba(255,107,53,0.4); }
.btn-coral:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,107,53,0.55); }
.btn-ghost { background: rgba(25,118,210,0.08); color: var(--blue-600); border: 1.5px solid rgba(25,118,210,0.2); }
.btn-ghost:hover { background: rgba(25,118,210,0.15); }
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   NAVBAR
============================================================ */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 24px; transition: var(--transition); }
.navbar.scrolled { background: rgba(5,13,31,0.96); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.07); padding: 0 24px; }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; height: 72px; gap: 32px; }
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo-mark { width: 36px; height: 36px; border-radius: 10px; background: var(--grad-btn); display: flex; align-items: center; justify-content: center; }
.nav-logo-mark svg { width: 20px; height: 20px; fill: white; }
.nav-logo span { font-size: 1.3rem; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
.nav-logo span em { color: var(--cyan-400); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 5px; padding: 8px 14px; border-radius: var(--radius-sm); color: rgba(255,255,255,0.8); font-size: 0.88rem; font-weight: 500; transition: var(--transition); cursor: pointer; }
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-link svg { width: 14px; height: 14px; transition: transform 0.25s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }
.nav-cta { margin-left: 8px; }
/* Dropdown */
.nav-dropdown { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%); background: var(--navy-800); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); padding: 8px; min-width: 220px; opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(-8px); transition: 0.25s ease; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown a { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-radius: var(--radius-sm); color: rgba(255,255,255,0.8); font-size: 0.85rem; font-weight: 500; transition: var(--transition); }
.nav-dropdown a:hover { background: rgba(38,197,243,0.1); color: var(--cyan-400); }
.nav-dropdown a .dd-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(25,118,210,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-dropdown a .dd-icon svg { width: 15px; height: 15px; }
.dd-info { display: flex; flex-direction: column; }
.dd-info small { font-size: 0.72rem; color: var(--gray-400); font-weight: 400; }
/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Mobile nav */
.mobile-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--navy-900); overflow-y: auto; padding: 16px 24px 40px; z-index: 999; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: flex; align-items: center; gap: 10px; padding: 14px 0; color: rgba(255,255,255,0.85); font-size: 0.95rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-nav a:hover { color: var(--cyan-400); }
.mobile-nav .mob-sub { padding-left: 16px; }
.mobile-nav .mob-sub a { font-size: 0.88rem; color: var(--gray-400); }
.mobile-nav .nav-cta-mob { margin-top: 20px; }

/* ============================================================
   PAGE HERO (inner pages)
============================================================ */
.page-hero { background: var(--grad-hero); padding: 140px 0 80px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(38,197,243,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(38,197,243,0.05) 1px, transparent 1px); background-size: 50px 50px; }
.page-hero-content { position: relative; z-index: 1; max-width: 680px; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); line-height: 1.15; margin: 14px 0 16px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; line-height: 1.7; }
.page-hero-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; background: rgba(38,197,243,0.1); border: 1px solid rgba(38,197,243,0.3); border-radius: 100px; color: var(--cyan-400); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.page-hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan-400); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.4)} }

/* ============================================================
   HERO SECTION (Home)
============================================================ */
.hero { min-height: 100vh; background: var(--grad-hero); display: flex; align-items: center; position: relative; overflow: hidden; padding: 100px 0 60px; }
/* Grid overlay */
.hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(38,197,243,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(38,197,243,0.06) 1px, transparent 1px); background-size: 50px 50px; pointer-events: none; }
/* Orbs */
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hero-orb-1 { width: 500px; height: 500px; background: rgba(25,118,210,0.25); top: -100px; right: -100px; }
.hero-orb-2 { width: 350px; height: 350px; background: rgba(38,197,243,0.15); bottom: -50px; left: 30%; }
.hero-orb-3 { width: 200px; height: 200px; background: rgba(255,107,53,0.1); top: 40%; left: -50px; }

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-headline { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 900; color: var(--white); line-height: 1.12; margin: 16px 0; }
.hero-headline .hl-blue { color: var(--cyan-400); }
.hero-sub { color: rgba(255,255,255,0.68); font-size: 1.05rem; line-height: 1.75; margin-bottom: 32px; max-width: 500px; }
.hero-cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 8px; margin-top: 40px; }
.trust-avatars { display: flex; }
.trust-avatars span { width: 32px; height: 32px; border-radius: 50%; background: var(--grad-btn); border: 2px solid var(--navy-900); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; color: white; margin-left: -8px; }
.trust-avatars span:first-child { margin-left: 0; }
.trust-text { font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.trust-text strong { color: var(--white); }

/* Dashboard mockup */
.hero-visual { position: relative; }
.dashboard-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-xl); padding: 24px; backdrop-filter: blur(20px); box-shadow: var(--shadow-card), var(--shadow-glow); }
.db-topbar { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.db-dots { display: flex; gap: 5px; }
.db-dots span { width: 10px; height: 10px; border-radius: 50%; }
.db-dots span:nth-child(1) { background: #FF5F57; }
.db-dots span:nth-child(2) { background: #FEBC2E; }
.db-dots span:nth-child(3) { background: #28C840; }
.db-title { font-size: 0.8rem; color: rgba(255,255,255,0.5); font-weight: 500; margin-left: 8px; }
.db-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 16px; }
.db-stat { background: rgba(255,255,255,0.05); border-radius: var(--radius-sm); padding: 12px; text-align: center; border: 1px solid rgba(255,255,255,0.07); }
.db-stat .val { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.db-stat .lbl { font-size: 0.65rem; color: var(--gray-400); margin-top: 2px; }
.db-chart { background: rgba(255,255,255,0.03); border-radius: var(--radius-sm); padding: 14px; border: 1px solid rgba(255,255,255,0.06); }
.chart-bar-row { display: flex; align-items: flex-end; gap: 6px; height: 70px; }
.chart-bar { flex: 1; border-radius: 4px 4px 0 0; background: rgba(25,118,210,0.4); transition: 0.3s; }
.chart-bar.active { background: var(--grad-btn); }
.db-list { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.db-list-item { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.04); border-radius: var(--radius-sm); padding: 8px 12px; border: 1px solid rgba(255,255,255,0.06); }
.db-list-item .avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--grad-btn); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; color: white; flex-shrink: 0; }
.db-list-item .info { flex: 1; }
.db-list-item .info p { font-size: 0.72rem; color: rgba(255,255,255,0.8); font-weight: 500; }
.db-list-item .info span { font-size: 0.65rem; color: var(--gray-400); }
.db-badge { padding: 2px 8px; border-radius: 100px; font-size: 0.6rem; font-weight: 600; }
.db-badge.green { background: rgba(40,200,100,0.2); color: #4ADE80; }
.db-badge.blue { background: rgba(25,118,210,0.2); color: var(--blue-400); }
/* floating chips */
.float-chip { position: absolute; background: rgba(5,13,31,0.9); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 10px 14px; backdrop-filter: blur(12px); display: flex; align-items: center; gap: 8px; font-size: 0.75rem; font-weight: 600; color: var(--white); box-shadow: 0 8px 24px rgba(0,0,0,0.3); animation: float-y 4s ease-in-out infinite; }
.float-chip-1 { top: -20px; left: -30px; animation-delay: 0s; }
.float-chip-2 { bottom: 30px; right: -20px; animation-delay: 1.5s; }
.float-chip .chip-icon { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.9rem; }
.chip-icon-blue { background: rgba(25,118,210,0.25); }
.chip-icon-green { background: rgba(40,200,100,0.2); }
@keyframes float-y { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ============================================================
   LOGOS BAR
============================================================ */
.logos-bar { background: var(--navy-800); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 28px 0; }
.logos-bar-inner { display: flex; align-items: center; gap: 12px; overflow: hidden; }
.logos-bar p { color: var(--gray-400); font-size: 0.8rem; font-weight: 500; white-space: nowrap; flex-shrink: 0; }
.logos-track { display: flex; align-items: center; gap: 40px; flex: 1; overflow: hidden; }
.logo-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.35); font-size: 0.82rem; font-weight: 600; white-space: nowrap; flex-shrink: 0; }
.logo-item svg { width: 20px; height: 20px; opacity: 0.4; }

/* ============================================================
   SECTION WRAPPERS
============================================================ */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--navy-900); }
.section-navy { background: var(--navy-800); }
.section-light { background: var(--gray-100); }
.section-header { margin-bottom: 56px; }

/* ============================================================
   FEATURES GRID
============================================================ */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: var(--white); border: 1px solid rgba(25,118,210,0.1); border-radius: var(--radius-md); padding: 32px 28px; transition: var(--transition); position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-btn); opacity: 0; transition: var(--transition); }
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(25,118,210,0.12); border-color: rgba(25,118,210,0.25); }
.feature-card:hover::before { opacity: 1; }
.feat-icon { width: 52px; height: 52px; border-radius: var(--radius-sm); background: rgba(25,118,210,0.08); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feat-icon svg { width: 26px; height: 26px; color: var(--blue-500); }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--navy-900); }
.feature-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.65; }

/* ============================================================
   MODULES / SERVICES GRID
============================================================ */
.modules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.module-card { background: var(--grad-card); border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius-md); padding: 28px 24px; transition: var(--transition); cursor: default; }
.module-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(38,197,243,0.25); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.module-card .mod-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: rgba(38,197,243,0.12); border: 1px solid rgba(38,197,243,0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.module-card .mod-icon svg { width: 22px; height: 22px; color: var(--cyan-400); }
.module-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.module-card p { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.module-card .mod-badge { display: inline-block; margin-top: 12px; padding: 3px 10px; border-radius: 100px; font-size: 0.68rem; font-weight: 600; background: rgba(38,197,243,0.1); color: var(--cyan-400); border: 1px solid rgba(38,197,243,0.2); }

/* ============================================================
   SERA+ SECTION
============================================================ */
.sera-plus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.sera-plus-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.sp-feat { display: flex; align-items: flex-start; gap: 16px; }
.sp-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: rgba(255,107,53,0.12); border: 1px solid rgba(255,107,53,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sp-icon svg { width: 20px; height: 20px; color: var(--coral); }
.sp-info h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.sp-info p { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.phone-mockup { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 40px; padding: 20px 14px; max-width: 260px; margin: 0 auto; box-shadow: 0 30px 80px rgba(0,0,0,0.4); }
.phone-notch { width: 100px; height: 28px; background: var(--navy-900); border-radius: 14px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.phone-notch span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.phone-screen { background: var(--navy-800); border-radius: 28px; overflow: hidden; }
.phone-app-header { background: var(--grad-btn); padding: 16px; text-align: center; color: white; font-size: 0.78rem; font-weight: 700; }
.phone-app-body { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.phone-app-item { background: rgba(255,255,255,0.05); border-radius: 10px; padding: 10px 12px; display: flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,0.06); }
.phone-app-item .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.phone-app-item p { font-size: 0.7rem; color: rgba(255,255,255,0.7); font-weight: 500; }
.phone-app-item span { font-size: 0.65rem; color: var(--gray-400); }

/* ============================================================
   STATS BAND
============================================================ */
.stats-band { background: var(--grad-btn); padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item h3 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; color: var(--white); line-height: 1; }
.stat-item p { font-size: 0.88rem; color: rgba(255,255,255,0.75); margin-top: 6px; font-weight: 500; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: var(--white); border: 1px solid rgba(25,118,210,0.1); border-radius: var(--radius-md); padding: 32px 28px; position: relative; transition: var(--transition); }
.testi-card:hover { box-shadow: 0 20px 50px rgba(25,118,210,0.1); transform: translateY(-4px); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testi-stars svg { width: 15px; height: 15px; fill: #FBBF24; color: #FBBF24; }
.testi-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--grad-btn); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; color: white; }
.testi-name { font-size: 0.88rem; font-weight: 700; color: var(--navy-900); }
.testi-role { font-size: 0.78rem; color: var(--gray-400); }
.testi-quote { position: absolute; top: 24px; right: 28px; font-size: 3rem; color: rgba(25,118,210,0.08); line-height: 1; font-family: Georgia, serif; }

/* ============================================================
   PRICING
============================================================ */
.pricing-toggle { display: flex; align-items: center; gap: 14px; justify-content: center; margin-bottom: 48px; }
.pricing-toggle span { font-size: 0.9rem; font-weight: 600; color: var(--gray-600); }
.toggle-switch { width: 52px; height: 28px; background: var(--grad-btn); border-radius: 100px; position: relative; cursor: pointer; }
.toggle-switch::after { content: ''; position: absolute; width: 22px; height: 22px; border-radius: 50%; background: white; top: 3px; left: 3px; transition: 0.3s; }
.toggle-switch.annual::after { left: calc(100% - 25px); }
.pricing-save { font-size: 0.72rem; font-weight: 700; color: var(--coral); background: rgba(255,107,53,0.1); padding: 2px 8px; border-radius: 100px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card { background: var(--white); border: 1px solid rgba(25,118,210,0.12); border-radius: var(--radius-lg); padding: 36px 32px; position: relative; transition: var(--transition); }
.pricing-card.popular { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(25,118,210,0.08), var(--shadow-card); transform: scale(1.02); }
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.pricing-card.popular:hover { transform: scale(1.02) translateY(-6px); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--grad-btn); color: white; font-size: 0.72rem; font-weight: 700; padding: 4px 16px; border-radius: 100px; white-space: nowrap; box-shadow: var(--shadow-btn); }
.plan-name { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--blue-500); }
.plan-price { font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 900; color: var(--navy-900); line-height: 1; margin: 12px 0 4px; }
.plan-price sup { font-size: 1.2rem; vertical-align: super; }
.plan-price sub { font-size: 0.85rem; color: var(--gray-400); font-weight: 400; }
.plan-desc { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(25,118,210,0.08); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 0.87rem; color: var(--text-body); }
.plan-features li svg { width: 16px; height: 16px; color: var(--blue-500); flex-shrink: 0; }
.plan-features li.disabled { color: var(--gray-400); }
.plan-features li.disabled svg { color: var(--gray-200); }
.pricing-faq { max-width: 720px; margin: 64px auto 0; }
.faq-item { border: 1px solid rgba(25,118,210,0.1); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; font-size: 0.95rem; font-weight: 600; color: var(--navy-900); transition: var(--transition); }
.faq-q:hover { background: var(--gray-100); }
.faq-q svg { width: 20px; height: 20px; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 24px 20px; font-size: 0.88rem; color: var(--gray-600); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner { background: var(--grad-hero); position: relative; overflow: hidden; padding: 80px 0; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(38,197,243,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(38,197,243,0.04) 1px, transparent 1px); background-size: 40px 40px; }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.cta-orb-1 { width: 400px; height: 400px; background: rgba(25,118,210,0.2); top: -100px; right: -80px; }
.cta-orb-2 { width: 300px; height: 300px; background: rgba(38,197,243,0.12); bottom: -80px; left: 10%; }
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 640px; margin: 0 auto; }
.cta-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--white); margin: 14px 0 16px; }
.cta-content p { color: rgba(255,255,255,0.68); font-size: 1rem; margin-bottom: 32px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--navy-950); color: rgba(255,255,255,0.6); padding: 64px 0 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand p { font-size: 0.87rem; line-height: 1.7; margin: 14px 0 20px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: var(--transition); color: rgba(255,255,255,0.5); }
.social-btn:hover { background: rgba(25,118,210,0.2); border-color: rgba(25,118,210,0.4); color: var(--white); }
.social-btn svg { width: 15px; height: 15px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--cyan-400); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item svg { width: 15px; height: 15px; color: var(--blue-400); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item p { font-size: 0.83rem; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; font-size: 0.8rem; gap: 16px; flex-wrap: wrap; }
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--white); }
.footer-legal { display: flex; gap: 20px; }

/* ============================================================
   ABOUT
============================================================ */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.mission-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mission-stat-card { background: white; border: 1px solid rgba(25,118,210,0.12); border-radius: var(--radius-md); padding: 24px 20px; text-align: center; transition: var(--transition); }
.mission-stat-card:hover { box-shadow: 0 12px 40px rgba(25,118,210,0.1); transform: translateY(-3px); }
.mission-stat-card h3 { font-size: 2rem; font-weight: 800; color: var(--blue-600); }
.mission-stat-card p { font-size: 0.82rem; color: var(--gray-600); margin-top: 4px; }
.mission-stat-card.highlight { background: var(--grad-btn); border-color: transparent; }
.mission-stat-card.highlight h3, .mission-stat-card.highlight p { color: white; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { background: white; border: 1px solid rgba(25,118,210,0.1); border-radius: var(--radius-md); padding: 28px 24px; text-align: center; transition: var(--transition); }
.value-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(25,118,210,0.1); }
.value-card .v-icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(25,118,210,0.08); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.value-card .v-icon svg { width: 24px; height: 24px; color: var(--blue-500); }
.value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: 0.84rem; color: var(--gray-600); line-height: 1.6; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { background: white; border: 1px solid rgba(25,118,210,0.1); border-radius: var(--radius-md); padding: 28px 20px; text-align: center; transition: var(--transition); }
.team-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(25,118,210,0.1); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--grad-btn); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; color: white; margin: 0 auto 14px; }
.team-card h3 { font-size: 0.95rem; font-weight: 700; }
.team-card span { font-size: 0.8rem; color: var(--blue-500); font-weight: 500; }
.team-card p { font-size: 0.8rem; color: var(--gray-600); margin-top: 8px; line-height: 1.5; }
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--blue-500), var(--cyan-400)); border-radius: 2px; }
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-item::before { content: ''; position: absolute; left: -39px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--blue-500); border: 3px solid white; box-shadow: 0 0 0 3px rgba(25,118,210,0.2); }
.timeline-item .year { font-size: 0.78rem; font-weight: 700; color: var(--blue-500); text-transform: uppercase; letter-spacing: 1px; }
.timeline-item h4 { font-size: 1rem; font-weight: 700; color: var(--navy-900); margin: 4px 0; }
.timeline-item p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }

/* ============================================================
   CAREER
============================================================ */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-card { background: white; border: 1px solid rgba(25,118,210,0.1); border-radius: var(--radius-md); padding: 28px 24px; transition: var(--transition); }
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(25,118,210,0.1); }
.benefit-card .b-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: rgba(25,118,210,0.08); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.benefit-card .b-icon svg { width: 22px; height: 22px; color: var(--blue-500); }
.benefit-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.benefit-card p { font-size: 0.83rem; color: var(--gray-600); line-height: 1.6; }
.jobs-list { display: flex; flex-direction: column; gap: 14px; margin-top: 40px; }
.job-card { background: white; border: 1px solid rgba(25,118,210,0.1); border-radius: var(--radius-md); padding: 24px 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; transition: var(--transition); }
.job-card:hover { border-color: var(--blue-500); box-shadow: 0 8px 30px rgba(25,118,210,0.1); transform: translateX(4px); }
.job-info h3 { font-size: 1rem; font-weight: 700; color: var(--navy-900); margin-bottom: 6px; }
.job-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.job-meta span { display: flex; align-items: center; gap: 5px; font-size: 0.8rem; color: var(--gray-600); }
.job-meta svg { width: 14px; height: 14px; }
.job-tag { padding: 4px 12px; border-radius: 100px; font-size: 0.72rem; font-weight: 700; }
.job-tag.full { background: rgba(25,118,210,0.08); color: var(--blue-600); }
.job-tag.remote { background: rgba(40,200,100,0.08); color: #16A34A; }
.job-tag.part { background: rgba(255,107,53,0.08); color: var(--coral-dk); }

/* ============================================================
   CONTACT
============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-card { display: flex; align-items: flex-start; gap: 16px; background: white; border: 1px solid rgba(25,118,210,0.1); border-radius: var(--radius-md); padding: 20px 22px; transition: var(--transition); }
.contact-card:hover { border-color: rgba(25,118,210,0.3); box-shadow: 0 8px 24px rgba(25,118,210,0.08); }
.c-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: rgba(25,118,210,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-icon svg { width: 20px; height: 20px; color: var(--blue-500); }
.c-text h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 3px; }
.c-text p { font-size: 0.85rem; color: var(--gray-600); }
.contact-form-wrap { background: white; border: 1px solid rgba(25,118,210,0.1); border-radius: var(--radius-lg); padding: 40px 36px; box-shadow: 0 16px 60px rgba(25,118,210,0.07); }
.contact-form-wrap h2 { font-size: 1.5rem; font-weight: 800; color: var(--navy-900); margin-bottom: 6px; }
.contact-form-wrap p { font-size: 0.88rem; color: var(--gray-600); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--navy-900); }
.form-group input, .form-group textarea, .form-group select { padding: 12px 16px; border: 1.5px solid rgba(25,118,210,0.15); border-radius: var(--radius-sm); font-size: 0.88rem; color: var(--text-body); background: var(--gray-100); transition: var(--transition); outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--blue-500); background: white; box-shadow: 0 0 0 3px rgba(25,118,210,0.08); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success { text-align: center; padding: 40px 20px; display: none; }
.form-success svg { width: 56px; height: 56px; color: #16A34A; margin: 0 auto 16px; }
.form-success h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.form-success p { font-size: 0.88rem; color: var(--gray-600); }

/* ============================================================
   BLOG
============================================================ */
.blog-controls { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.blog-search { position: relative; }
.blog-search input { padding: 11px 16px 11px 42px; border: 1.5px solid rgba(25,118,210,0.15); border-radius: 100px; font-size: 0.88rem; color: var(--text-body); background: white; outline: none; width: 240px; transition: var(--transition); }
.blog-search input:focus { border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(25,118,210,0.08); width: 280px; }
.blog-search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--gray-400); }
.blog-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn { padding: 8px 18px; border-radius: 100px; font-size: 0.8rem; font-weight: 600; border: 1.5px solid rgba(25,118,210,0.15); color: var(--gray-600); background: white; cursor: pointer; transition: var(--transition); }
.filter-btn:hover, .filter-btn.active { background: var(--blue-500); border-color: var(--blue-500); color: white; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: white; border: 1px solid rgba(25,118,210,0.1); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 50px rgba(25,118,210,0.12); border-color: rgba(25,118,210,0.2); }
.blog-card-img { height: 180px; overflow: hidden; background: var(--grad-hero); position: relative; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-img .img-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; }
.blog-card-img .img-placeholder svg { width: 40px; height: 40px; color: rgba(255,255,255,0.3); }
.blog-card-body { padding: 22px 22px 20px; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.blog-cat { display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: 0.7rem; font-weight: 700; background: rgba(25,118,210,0.08); color: var(--blue-600); }
.blog-date { font-size: 0.75rem; color: var(--gray-400); display: flex; align-items: center; gap: 4px; }
.blog-date svg { width: 12px; height: 12px; }
.blog-card h3 { font-size: 0.97rem; font-weight: 700; color: var(--navy-900); line-height: 1.4; margin-bottom: 8px; }
.blog-card p { font-size: 0.83rem; color: var(--gray-600); line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-footer { padding: 0 22px 20px; display: flex; align-items: center; justify-content: space-between; }
.read-link { font-size: 0.82rem; font-weight: 600; color: var(--blue-500); display: flex; align-items: center; gap: 5px; transition: var(--transition); }
.read-link:hover { gap: 8px; color: var(--blue-600); }
.read-link svg { width: 14px; height: 14px; }
.read-time { font-size: 0.75rem; color: var(--gray-400); display: flex; align-items: center; gap: 4px; }
.blog-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.page-btn { width: 38px; height: 38px; border-radius: var(--radius-sm); border: 1.5px solid rgba(25,118,210,0.15); background: white; color: var(--gray-600); font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.page-btn:hover, .page-btn.active { background: var(--blue-500); border-color: var(--blue-500); color: white; }
/* Blog detail */
.blog-post-wrap { max-width: 840px; margin: 0 auto; }
.post-meta-bar { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 24px; }
.post-featured-img { border-radius: var(--radius-md); overflow: hidden; margin-bottom: 32px; max-height: 420px; }
.post-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.post-content h2 { font-size: 1.4rem; font-weight: 700; margin: 28px 0 12px; color: var(--navy-900); }
.post-content h3 { font-size: 1.15rem; font-weight: 700; margin: 24px 0 10px; color: var(--navy-900); }
.post-content p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }
.post-content ul, .post-content ol { margin: 0 0 16px 20px; }
.post-content ul li, .post-content ol li { font-size: 0.93rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 6px; }
.post-content ul li { list-style: disc; }
.post-content ol li { list-style: decimal; }
.post-content blockquote { border-left: 4px solid var(--blue-500); background: var(--gray-100); padding: 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 24px 0; font-style: italic; color: var(--gray-600); font-size: 0.95rem; }
.share-bar { display: flex; align-items: center; gap: 14px; padding: 20px 0; border-top: 1px solid rgba(25,118,210,0.1); border-bottom: 1px solid rgba(25,118,210,0.1); margin: 32px 0; }
.share-bar span { font-size: 0.85rem; font-weight: 600; color: var(--navy-900); }
.share-btn { display: flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 100px; border: 1.5px solid rgba(25,118,210,0.15); font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: var(--transition); background: white; color: var(--gray-600); }
.share-btn:hover { background: var(--blue-500); border-color: var(--blue-500); color: white; }
.share-btn svg { width: 14px; height: 14px; }
.newsletter-cta { background: var(--grad-hero); border-radius: var(--radius-md); padding: 40px 36px; text-align: center; position: relative; overflow: hidden; }
.newsletter-cta::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(38,197,243,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(38,197,243,0.06) 1px, transparent 1px); background-size: 30px 30px; }
.newsletter-cta * { position: relative; z-index: 1; }
.newsletter-cta h3 { font-size: 1.4rem; font-weight: 800; color: white; margin-bottom: 8px; }
.newsletter-cta p { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin-bottom: 20px; }
.newsletter-form { display: flex; gap: 10px; max-width: 420px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 12px 16px; border-radius: 100px; border: none; font-size: 0.88rem; outline: none; }

/* ============================================================
   LEGAL (Privacy / Terms)
============================================================ */
.legal-wrap { max-width: 800px; margin: 0 auto; }
.legal-toc { background: var(--gray-100); border-radius: var(--radius-md); padding: 24px 28px; margin-bottom: 40px; }
.legal-toc h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 12px; }
.legal-toc ol { padding-left: 16px; }
.legal-toc ol li { font-size: 0.85rem; color: var(--blue-600); margin-bottom: 6px; cursor: pointer; }
.legal-toc ol li:hover { text-decoration: underline; }
.legal-section { margin-bottom: 36px; }
.legal-section h2 { font-size: 1.15rem; font-weight: 700; color: var(--navy-900); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid rgba(25,118,210,0.1); }
.legal-section p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 10px; }
.legal-section ul { padding-left: 18px; margin-bottom: 10px; }
.legal-section ul li { font-size: 0.87rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 5px; list-style: disc; }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   TOAST
============================================================ */
.toast { position: fixed; bottom: 24px; right: 24px; z-index: 9999; background: var(--navy-800); color: white; padding: 14px 20px; border-radius: var(--radius-md); font-size: 0.88rem; font-weight: 500; box-shadow: 0 12px 40px rgba(0,0,0,0.3); display: flex; align-items: center; gap: 10px; transform: translateY(100px); opacity: 0; transition: 0.4s cubic-bezier(0.34,1.56,0.64,1); pointer-events: none; border: 1px solid rgba(255,255,255,0.1); }
.toast.show { transform: translateY(0); opacity: 1; }
.toast svg { width: 16px; height: 16px; }
.toast.success { border-color: rgba(40,200,100,0.3); }
.toast.success svg { color: #4ADE80; }
.toast.error { border-color: rgba(239,68,68,0.3); }
.toast.error svg { color: #F87171; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card.popular { transform: scale(1); }
  .pricing-card.popular:hover { transform: translateY(-6px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-grid { grid-template-columns: 1fr; }
  .sera-plus-grid { grid-template-columns: 1fr; }
  .phone-mockup { max-width: 220px; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .blog-controls { flex-direction: column; align-items: flex-start; }
  .newsletter-form { flex-direction: column; }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  .section { padding: 64px 0; }
}
