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

:root {
  --primary: #1e3a5f;
  --primary-light: #2a5285;
  --accent: #4ECDC4;
  --accent-dark: #3db8b0;
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-alt: #f1f5f9;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════ ANIMATIONS ═══════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.feature-card, .step-card, .compliance-card, .stat {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.feature-card.visible, .step-card.visible, .compliance-card.visible, .stat.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════ NAVBAR ═══════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
}
.logo-icon {
  width: 36px;
  height: 36px;
  color: var(--primary);
}
.logo-img {
  height: 32px;
  width: auto;
}
.logo-icon-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.logo-title {
  font-size: 18px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 2px;
  line-height: 1.1;
}
.logo-tagline {
  font-size: 7.5px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 2.5px;
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-toggle {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s;
}
.lang-toggle:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ═══════════ NAV DROPDOWN ═══════════ */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-dropdown-trigger svg {
  transition: transform 0.2s;
}
.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  padding: 8px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s ease;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-dropdown-item {
  display: block;
  padding: 12px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}
.nav-dropdown-item:hover {
  background: var(--surface-alt);
}
.nav-dropdown-category {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-dark);
  margin-bottom: 4px;
}
.nav-dropdown-title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.nav-dropdown-all {
  display: block;
  text-align: center;
  padding: 10px 14px;
  margin-top: 4px;
  border-top: 1px solid var(--border-light);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s;
}
.nav-dropdown-all:hover {
  background: var(--surface-alt);
}

/* ═══════════ BUTTONS ═══════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.25);
}
.btn-primary:hover {
  background: var(--primary-light);
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.35);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--primary);
  background: rgba(30, 58, 95, 0.04);
}
.btn-white {
  background: white;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  padding: 140px 0 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e8f0fe 30%, #f0f7ff 60%, #f8fafc 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,58,95,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,58,95,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-orbs .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}
.orb-1 { width: 400px; height: 400px; background: var(--accent); top: -100px; right: -100px; animation: float 8s ease-in-out infinite; }
.orb-2 { width: 300px; height: 300px; background: var(--primary); bottom: 100px; left: -100px; animation: float 10s ease-in-out infinite 2s; }
.orb-3 { width: 200px; height: 200px; background: #818cf8; top: 200px; right: 200px; animation: float 6s ease-in-out infinite 4s; }

.hero-container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(30, 58, 95, 0.06);
  border: 1px solid rgba(30, 58, 95, 0.1);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.1s both;
}
.hero-highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  animation: fadeInUp 0.6s ease 0.3s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  animation: fadeInUp 0.6s ease 0.4s both;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ═══════════ HERO MOCKUP ═══════════ */
.hero-mockup-wrapper {
  position: relative;
  z-index: 1;
  margin-top: 48px;
  padding-bottom: 80px;
}
.hero-mockup {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  animation: fadeInUp 0.8s ease 0.5s both;
}
.mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
}
.mockup-dots { display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }
.mockup-url {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  background: white;
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
}
.mockup-body {
  display: flex;
  min-height: 320px;
}
.mockup-sidebar {
  width: 56px;
  background: var(--primary);
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.mockup-sidebar-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  margin-bottom: 4px;
}
.mockup-sidebar-item {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
}
.mockup-sidebar-item.active {
  background: rgba(255,255,255,0.25);
}
.mockup-content {
  flex: 1;
  padding: 0;
}
.mockup-topbar {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  padding: 0 16px;
}
.mockup-tab {
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
}
.mockup-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  font-weight: 600;
}
.mockup-cards {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mockup-inject-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.2s;
}
.mockup-inject-card:hover { transform: translateX(4px); }
.inject-urgent { border-left: 3px solid #f59e0b; }
.inject-normal { border-left: 3px solid #3b82f6; }
.inject-adhoc { border-left: 3px solid #ef4444; }
.inject-icon { font-size: 20px; }
.inject-info { flex: 1; }
.inject-title { display: block; font-size: 13px; font-weight: 600; color: var(--text); }
.inject-desc { display: block; font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.inject-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.inject-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
}
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-info { background: #dbeafe; color: #1e40af; }
.badge-danger { background: #fee2e2; color: #991b1b; }
.inject-sla {
  font-size: 11px;
  color: var(--accent-dark);
  font-weight: 600;
}

/* ═══════════ LOGOS ═══════════ */
.logos-section {
  padding: 40px 0 60px;
  border-bottom: 1px solid var(--border-light);
}
.logos-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-bottom: 24px;
}
.logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.logo-item {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-light);
  opacity: 0.5;
  transition: opacity 0.3s;
}
.logo-item:hover { opacity: 0.8; }

/* ═══════════ SECTION COMMON ═══════════ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-dark);
  background: rgba(78, 205, 196, 0.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════ FEATURES ═══════════ */
.features {
  padding: 100px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
}
.feature-card:hover {
  border-color: rgba(30, 58, 95, 0.15);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.feature-highlight {
  grid-column: span 3;
  background: linear-gradient(135deg, var(--primary) 0%, #2a5285 100%);
  color: white;
  border: none;
}
.feature-highlight .feature-icon { color: var(--accent); }
.feature-highlight h3 { color: white; }
.feature-highlight p { color: rgba(255,255,255,0.75); }
.feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 58, 95, 0.06);
  border-radius: 12px;
  margin-bottom: 20px;
  color: var(--primary);
}
.feature-highlight .feature-icon {
  background: rgba(78, 205, 196, 0.15);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.feature-tags span {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(78, 205, 196, 0.15);
  color: var(--accent);
}

/* ═══════════ FLOW EDITOR SHOWCASE ═══════════ */
.flow-showcase {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--bg) 0%, #ffffff 100%);
}
.flow-mockup-wrapper {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.flow-browser-frame {
  width: 100%;
  max-width: 920px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.02);
  overflow: hidden;
}
.browser-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }
.browser-url {
  margin-left: 12px;
  font-size: 12px;
  color: var(--text-muted);
  background: #ffffff;
  padding: 4px 16px;
  border-radius: 6px;
  border: 1px solid var(--border);
  flex: 1;
  max-width: 300px;
}
.flow-mockup-img {
  width: 100%;
  display: block;
}

/* ═══════════ HOW IT WORKS ═══════════ */
.how-it-works {
  padding: 100px 0;
  background: var(--surface);
}
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step-card {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}
.step-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}
.step-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.step-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
  color: var(--border);
  flex-shrink: 0;
}
.step-connector svg {
  width: 24px;
  height: 24px;
}

/* ═══════════ COMPLIANCE ═══════════ */
.compliance {
  padding: 100px 0;
}
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.compliance-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s ease;
}
.compliance-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.compliance-logo {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  background: rgba(30, 58, 95, 0.06);
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.compliance-card h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.compliance-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════ MSSP ═══════════ */
.mssp-section {
  padding: 100px 0;
  background: var(--surface);
}
.mssp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.mssp-content .section-badge { display: inline-block; }
.mssp-content .section-title {
  text-align: left;
  margin-bottom: 16px;
}
.mssp-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.mssp-features {
  list-style: none;
  margin-bottom: 28px;
}
.mssp-features li {
  padding: 8px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.mssp-features li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: rgba(78, 205, 196, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%234ECDC4' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.mssp-visual {
  display: flex;
  justify-content: center;
}
.mssp-brand-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 380px;
}
.mssp-brand-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.mssp-brand-logo {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 14px;
}
.mssp-brand-header span {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.mssp-brand-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mssp-brand-item {
  font-size: 14px;
  color: var(--text-muted);
  padding: 8px 12px;
  background: var(--surface-alt);
  border-radius: 8px;
}

/* ═══════════ CTA ═══════════ */
.cta-section {
  padding: 100px 0;
}
.cta-card {
  background: linear-gradient(135deg, var(--primary) 0%, #2a5285 50%, var(--primary) 100%);
  border-radius: var(--radius-xl);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.08;
  filter: blur(60px);
}
.cta-card h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: white;
  letter-spacing: -1px;
  margin-bottom: 16px;
  position: relative;
}
.cta-card p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto 32px;
  position: relative;
}
.cta-actions {
  position: relative;
  margin-bottom: 24px;
}
.cta-email {
  margin-top: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
}
.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  position: relative;
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-light);
}

/* ═══════════ MOBILE MENU ═══════════ */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu-btn span {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-highlight { grid-column: span 2; }
  .compliance-grid { grid-template-columns: repeat(2, 1fr); }
  .mssp-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .mobile-menu-btn { display: flex; }
  .btn-sm.btn-primary { display: none; }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    border: 1px solid var(--border-light);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin-top: 8px;
  }
  .nav-dropdown-trigger svg { display: none; }

  .hero { padding: 120px 0 0; }
  .hero-title { font-size: 32px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-highlight { grid-column: span 1; }

  .steps-grid {
    flex-direction: column;
    gap: 32px;
  }
  .step-connector { transform: rotate(90deg); padding: 0; }

  .compliance-grid { grid-template-columns: 1fr; }

  .mssp-content .section-title { text-align: center; }
  .mssp-content { text-align: center; }
  .mssp-features { align-items: center; }

  .cta-card { padding: 48px 24px; }
  .cta-trust { flex-direction: column; gap: 8px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-brand p { max-width: 100%; }
  .footer-logo { justify-content: center; }

  .blog-grid { grid-template-columns: 1fr; }
  .blog-article-title { font-size: 28px; }
  .blog-article-content { padding: 0; }
}

/* ═══════════ BLOG ═══════════ */
.blog-hero {
  padding: 140px 0 40px;
  background: linear-gradient(135deg, #f8fafc 0%, #e8f0fe 30%, #f0f7ff 60%, #f8fafc 100%);
}

.blog-listing {
  padding: 40px 0 80px;
}

.blog-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
  background: var(--surface-alt);
  border-radius: 12px;
  padding: 4px;
  width: fit-content;
}
.blog-tab {
  padding: 10px 24px;
  border: none;
  background: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-tab:hover {
  color: var(--text);
}
.blog-tab.active {
  background: var(--surface);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.blog-tab-count {
  font-size: 11px;
  font-weight: 700;
  background: rgba(30, 58, 95, 0.08);
  color: var(--text-muted);
  padding: 2px 8px;
  border-radius: 100px;
}
.blog-tab.active .blog-tab-count {
  background: rgba(78, 205, 196, 0.15);
  color: var(--accent-dark);
}
.blog-grid.blog-tab-content {
  display: none;
}
.blog-grid.blog-tab-content.active {
  display: grid;
}

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

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: rgba(30, 58, 95, 0.15);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.blog-card-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-dark);
  background: rgba(78, 205, 196, 0.1);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  width: fit-content;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.3px;
  color: var(--text);
  margin-bottom: 12px;
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

/* ═══════════ BLOG ARTICLE ═══════════ */
.blog-article {
  padding: 140px 0 80px;
}

.blog-article-header {
  max-width: 720px;
  margin: 0 auto 48px;
}

.blog-back-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.2s;
}
.blog-back-link:hover { color: var(--primary); }

.blog-article-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--text);
  margin-top: 16px;
  margin-bottom: 16px;
}

.blog-article-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}

.blog-article-content {
  max-width: 720px;
  margin: 0 auto;
}

.blog-article-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
}

.blog-lead {
  font-size: 18px !important;
  color: var(--text-muted) !important;
  line-height: 1.8;
  margin-bottom: 32px !important;
}

.blog-article-content h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-top: 48px;
  margin-bottom: 16px;
}

.blog-article-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-top: 32px;
  margin-bottom: 12px;
}

.blog-article-content ul {
  margin-bottom: 20px;
  padding-left: 24px;
}

.blog-article-content li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 6px;
}

.blog-article-content strong {
  font-weight: 700;
  color: var(--text);
}

.blog-article-content em {
  font-style: italic;
}

.blog-cta-inline {
  margin-top: 48px;
  padding: 32px;
  background: linear-gradient(135deg, var(--primary) 0%, #2a5285 100%);
  border-radius: var(--radius-lg);
  text-align: center;
}

.blog-cta-inline h3 {
  color: white !important;
  margin-top: 0 !important;
  margin-bottom: 8px !important;
}

.blog-cta-inline p {
  color: rgba(255,255,255,0.75) !important;
  margin-bottom: 24px !important;
}

/* ═══════════ BLOG RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-article-title { font-size: 28px; }
  .blog-article-content { padding: 0; }
  .blog-hero { padding: 120px 0 40px; }
}
