/* ============================================================
   DAWASOFT — Main Stylesheet
   Primary:   #1B3EA6 (I&M Deep Blue)
   Secondary: #00A89D (I&M Teal)
   Font: Inter (Google Fonts)
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  /* ── Primary Accent: I&M Deep Blue ── */
  --accent:         #1B3EA6;
  --accent-dark:    #132d7a;
  --accent-light:   #2f56c7;
  --accent-xlight:  #e8edf9;
  --accent-glow:    rgba(27, 62, 166, 0.25);

  /* ── Secondary Accent: I&M Teal ── */
  --teal:           #00A89D;
  --teal-dark:      #007d74;
  --teal-light:     #1ec4b9;
  --teal-xlight:    #e0f7f6;
  --teal-glow:      rgba(0, 168, 157, 0.25);

  /* ── Brand Gradient (Blue → Teal) ── */
  --brand-gradient: linear-gradient(135deg, #1B3EA6 0%, #00A89D 100%);
  --brand-gradient-r: linear-gradient(135deg, #00A89D 0%, #1B3EA6 100%);

  /* Neutrals */
  --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;

  /* Semantic */
  --success:        #10b981;
  --warning:        #f59e0b;
  --danger:         #ef4444;
  --info:           #00A89D;

  /* Typography */
  --font-sans:      'Inter', 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-display:   'Plus Jakarta Sans', 'Inter', sans-serif;

  /* Spacing */
  --section-py:     6rem;
  --container-max:  1280px;
  --container-px:   clamp(1.25rem, 5vw, 2.5rem);

  /* Borders */
  --radius-sm:      0.375rem;
  --radius-md:      0.75rem;
  --radius-lg:      1.25rem;
  --radius-xl:      2rem;
  --radius-full:    9999px;

  /* Shadows */
  --shadow-sm:      0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:      0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:      0 20px 40px rgba(0,0,0,0.10), 0 8px 16px rgba(0,0,0,0.06);
  --shadow-xl:      0 40px 80px rgba(0,0,0,0.12);
  --shadow-accent:  0 8px 32px rgba(27, 62, 166, 0.32);
  --shadow-teal:    0 8px 32px rgba(0, 168, 157, 0.32);
  --shadow-card:    0 2px 20px rgba(27, 62, 166, 0.08);

  /* Transitions */
  --transition:     all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Navbar */
  --nav-height:     70px;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul { list-style: none; }

/* ── Container ────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-px);
}

/* ── Utility Classes ──────────────────────────────────────── */
.text-accent    { color: var(--accent); }
.text-white     { color: var(--white); }
.text-muted     { color: var(--gray-500); }
.text-center    { text-align: center; }
.fw-600         { font-weight: 600; }
.fw-700         { font-weight: 700; }
.fw-800         { font-weight: 800; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.badge-accent {
  background: var(--accent-xlight);
  color: var(--accent);
  border: 1px solid rgba(0, 51, 161, 0.15);
}

.badge-white {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}

/* Section Label */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* Section Headings */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--gray-900);
}

.section-title span {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.7;
  margin-top: 0.75rem;
}

/* Section Header block */
.section-header {
  margin-bottom: 3.5rem;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  margin-inline: auto;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-spring);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--brand-gradient);
  color: var(--white);
  box-shadow: var(--shadow-accent);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #132d7a 0%, #007d74 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(27, 62, 166, 0.40);
}

.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: var(--brand-gradient);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.btn-white {
  background: var(--white);
  color: var(--accent);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--gray-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}

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

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-md);
}

/* ── Navigation ───────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: var(--transition);
  background: transparent;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), var(--shadow-sm);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--brand-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(27,62,166,0.35);
}

.nav-logo-icon svg { width: 22px; height: 22px; }

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  transition: var(--transition);
}

#navbar.scrolled .nav-logo-text { color: var(--gray-900); }

.nav-logo-text span { color: var(--teal-light); }
#navbar.scrolled .nav-logo-text span { color: var(--teal); }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--teal-light);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-link:hover::after { width: calc(100% - 1.75rem); }

/* Keep the Solutions button blue while the navbar is transparent. */
#navbar:not(.scrolled) #solutions-btn {
  color: var(--accent);
  font-weight: 700;
}
#navbar:not(.scrolled) #solutions-btn:hover {
  color: var(--accent-dark);
  background: var(--accent-xlight);
}

#navbar.scrolled .nav-link { color: var(--gray-600); }
#navbar.scrolled .nav-link:hover { color: var(--accent); background: var(--accent-xlight); }
#navbar.scrolled .nav-link::after { background: var(--accent); }

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
}

.dropdown-item:hover {
  background: var(--accent-xlight);
  color: var(--accent);
}

.dropdown-icon {
  width: 32px;
  height: 32px;
  background: var(--accent-xlight);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.dropdown-icon svg { width: 16px; height: 16px; }

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-login {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
}

.nav-login:hover { color: var(--white); background: rgba(255,255,255,0.1); }
#navbar.scrolled .nav-login { color: var(--gray-600); }
#navbar.scrolled .nav-login:hover { color: var(--accent); background: var(--accent-xlight); }

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

#navbar.scrolled .nav-toggle span { background: var(--gray-800); }

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero Section ─────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gray-900);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 20, 70, 0.93) 0%,
    rgba(27, 62, 166, 0.78) 45%,
    rgba(0, 100, 95, 0.82) 100%
  );
}

/* Animated particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Hero Content */
.hero-container {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: calc(var(--nav-height) + 3rem) var(--container-px) 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content { max-width: 600px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.75rem;
  animation: fadeInDown 0.6s ease both;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3); }
  50%       { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.15); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #7eb8ff 0%, #00ddd1 60%, #a0f0eb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  align-self: stretch;
  margin: 0.25rem 0;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s ease 0.3s both;
}

.hero-dashboard {
  border-radius: 16px;
  overflow: hidden;
  /* Clean floating shadow for the mockup photo */
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.35),
    0 10px 30px rgba(27, 62, 166, 0.15);
  position: relative;
  transition: transform 0.4s ease;
  background: transparent;
}

.hero-visual:hover .hero-dashboard {
  transform: translateY(-8px) scale(1.02);
}

.hero-dashboard img { width: 100%; display: block; }

/* Floating cards on hero */
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 0.875rem 1.125rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float-card 4s ease-in-out infinite;
}

.hero-float-card:nth-child(2) { animation-delay: -2s; }
.hero-float-card:nth-child(3) { animation-delay: -1s; animation-duration: 5s; }

.float-card-1 { bottom: -1.5rem; left: -2.5rem; }
.float-card-2 { top: -1.5rem; right: -1rem; }
.float-card-3 { bottom: 40%; right: -2rem; }

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.float-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-card-icon.success  { background: rgba(16, 185, 129, 0.12); color: #059669; }
.float-card-icon.accent   { background: var(--accent-xlight); color: var(--accent); }
.float-card-icon.warning  { background: rgba(245, 158, 11, 0.12); color: #d97706; }

.float-card-icon svg { width: 20px; height: 20px; }

.float-card-text { display: flex; flex-direction: column; gap: 0.1rem; }
.float-card-label { font-size: 0.7rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.05em; }
.float-card-value { font-size: 0.95rem; font-weight: 700; color: var(--gray-900); }

/* ── Trusted By ────────────────────────────────────────────── */
#trusted {
  padding: 3.5rem 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.trusted-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  text-align: center;
  margin-bottom: 2rem;
}

.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.trusted-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trusted-logo:hover {
  color: var(--teal);
  transform: translateY(-2px);
}

.trusted-logo svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  opacity: 0.85;
}

/* ── Features Section ─────────────────────────────────────── */
#features {
  padding: var(--section-py) 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.feature-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  background: var(--white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.feature-card:hover {
  border-color: var(--accent-xlight);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card.featured {
  background: var(--brand-gradient);
  border-color: transparent;
  color: var(--white);
}

.feature-card.featured::before { display: none; }
.feature-card.featured:hover { box-shadow: var(--shadow-accent); }

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--accent-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
  color: var(--accent);
  flex-shrink: 0;
}

.feature-card:hover .feature-icon {
  background: var(--brand-gradient);
  color: var(--white);
  transform: scale(1.08);
}

.feature-card.featured .feature-icon {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.feature-card.featured:hover .feature-icon { background: rgba(255,255,255,0.25); }

.feature-icon svg { width: 26px; height: 26px; }

.feature-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--gray-900);
}

.feature-card.featured .feature-title { color: var(--white); }

.feature-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.feature-card.featured .feature-desc { color: rgba(255,255,255,0.75); }

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.2s;
}

.feature-link:hover { gap: 0.55rem; }
.feature-card.featured .feature-link { color: rgba(255,255,255,0.9); }

.feature-link svg { width: 16px; height: 16px; }

/* ── How It Works ─────────────────────────────────────────── */
#how-it-works {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.how-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.how-step::before {
  content: '';
  position: absolute;
  left: 2.5rem;
  top: 4.5rem;
  bottom: -1.75rem;
  width: 2px;
  background: var(--gray-200);
}

.how-step:last-child::before { display: none; }

.how-step.active {
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.how-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.how-step.active .how-step-number {
  background: var(--brand-gradient);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 168, 157, 0.35);
}

.how-step-content { flex: 1; }

.how-step-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 0.35rem;
  transition: color 0.2s;
}

.how-step.active .how-step-title { color: var(--gray-900); }

.how-step-desc {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease;
  opacity: 0;
}

.how-step.active .how-step-desc {
  max-height: 100px;
  opacity: 1;
}

.how-visual {
  position: relative;
}

.how-image-wrap {
  border-radius: 12px;
  overflow: visible;
  /* Clean shadow — MacBook frame in image */
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.30),
    0 8px 24px rgba(27, 62, 166, 0.15);
  position: relative;
  background: transparent;
}

.how-image-wrap img { width: 100%; display: block; }

.how-image-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-md);
}

.progress-bar-wrap { flex: 1; }
.progress-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.progress-bar {
  height: 8px;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: var(--brand-gradient);
  width: 72%;
  transition: width 1s ease;
}

/* ── Metrics Section ──────────────────────────────────────── */
#metrics {
  padding: var(--section-py) 0;
  background: var(--brand-gradient);
  position: relative;
  overflow: hidden;
}

#metrics::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

#metrics::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.metric-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.metric-card:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-4px);
}

.metric-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.metric-value span { color: rgba(255,255,255,0.6); font-weight: 400; }

.metric-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.metric-trend {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--success);
  background: rgba(16, 185, 129, 0.15);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  margin-top: 0.75rem;
}

.metric-trend svg { width: 12px; height: 12px; }

/* ── Pricing Section ──────────────────────────────────────── */
#pricing {
  padding: var(--section-py) 0;
  background: var(--white);
}

.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.pricing-toggle-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
}

.pricing-toggle {
  position: relative;
  width: 52px;
  height: 28px;
}

.pricing-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.toggle-track {
  position: absolute;
  inset: 0;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.25s;
}

.pricing-toggle input:checked ~ .toggle-track { background: var(--teal); }

.toggle-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.pricing-toggle input:checked ~ .toggle-track::after { transform: translateX(24px); }

.pricing-save {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--success);
  background: rgba(16, 185, 129, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: start;
}

.pricing-card {
  border-radius: var(--radius-xl);
  border: 2px solid var(--gray-100);
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: var(--transition-spring);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.pricing-card.popular {
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
  transform: scale(1.03);
}

.pricing-card.popular:hover { transform: scale(1.03) translateY(-6px); }

.popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-gradient);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1.25rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-plan {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.pricing-currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-700);
  line-height: 2.5;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--gray-900);
  line-height: 1;
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
  line-height: 2;
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 1.75rem;
  min-height: 2.8em;
}

.pricing-divider {
  height: 1px;
  background: var(--gray-100);
  margin-bottom: 1.75rem;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2.25rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.pricing-feature.disabled {
  color: var(--gray-300);
  text-decoration: line-through;
}

.feature-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-check.ok { background: rgba(16, 185, 129, 0.12); color: var(--success); }
.feature-check.no { background: var(--gray-100); color: var(--gray-300); }
.feature-check svg { width: 12px; height: 12px; }

/* ── Testimonials ─────────────────────────────────────────── */
#testimonials {
  padding: var(--section-py) 0;
  background: var(--gray-50);
  overflow: hidden;
}

.testimonials-track-wrap {
  overflow: hidden;
  margin: 0 calc(-1 * var(--container-px));
  padding: 1.5rem var(--container-px);
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  animation: scroll-track 40s linear infinite;
  width: max-content;
}

.testimonials-track:hover { animation-play-state: paused; }

@keyframes scroll-track {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  min-width: 340px;
  max-width: 340px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  flex-shrink: 0;
}

.testimonial-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: var(--warning);
}

.testimonial-stars svg { width: 16px; height: 16px; }

.testimonial-text {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray-800);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 0.1rem;
}

/* ── Integration Section ──────────────────────────────────── */
#integrations {
  padding: var(--section-py) 0;
  background: var(--white);
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.integration-tile {
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition);
  cursor: default;
}

.integration-tile:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.integration-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.integration-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  text-align: center;
}

/* ── CTA Section ──────────────────────────────────────────── */
#cta {
  padding: var(--section-py) 0;
  background: var(--gray-900);
  position: relative;
  overflow: hidden;
}

.cta-bg-circle-1 {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,51,161,0.35) 0%, transparent 70%);
  pointer-events: none;
}

.cta-bg-circle-2 {
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,51,161,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
}

.cta-title .highlight {
  background: linear-gradient(135deg, #7eb8ff 0%, #00ddd1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-form {
  display: flex;
  gap: 0.875rem;
  max-width: 480px;
  margin: 0 auto 1.5rem;
}

.cta-input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  backdrop-filter: blur(8px);
  transition: border-color 0.25s;
  outline: none;
}

.cta-input::placeholder { color: rgba(255,255,255,0.35); }
.cta-input:focus { border-color: rgba(255,255,255,0.35); }

.cta-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ── FAQ Section ──────────────────────────────────────────── */
#faq {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.25s;
}

.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.375rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
  text-align: left;
  gap: 1rem;
  transition: color 0.2s;
}

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

.faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
  transition: transform 0.3s, background 0.2s;
}

.faq-chevron svg { width: 14px; height: 14px; }
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--teal); color: var(--white); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.375rem;
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.75;
  border-top: 1px solid var(--gray-100);
  padding-top: 1rem;
}

/* ── Footer ───────────────────────────────────────────────── */
#footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.65);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.25fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.footer-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--brand-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon svg { width: 22px; height: 22px; }

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
}

.footer-logo-text span { color: var(--teal-light); }

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.75rem;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--brand-gradient);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-3px);
}

.social-btn svg { width: 18px; height: 18px; }

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.footer-link:hover { color: var(--white); }

/* Newsletter */
.footer-newsletter-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-input {
  padding: 0.7rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-size: 0.875rem;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.2s;
}

.footer-input::placeholder { color: rgba(255,255,255,0.25); }
.footer-input:focus { border-color: rgba(255,255,255,0.25); }

.footer-bottom {
  padding: 1.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

.footer-copy a { color: rgba(255,255,255,0.5); }
.footer-copy a:hover { color: var(--white); }

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}

.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ── Scroll-Reveal Animations ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.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; }
.reveal-delay-5 { transition-delay: 0.5s; }

@keyframes fadeInUp    { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInDown  { from { opacity:0; transform:translateY(-24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInRight { from { opacity:0; transform:translateX(32px); } to { opacity:1; transform:translateX(0); } }

/* ── Back to Top ──────────────────────────────────────────── */
#back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-accent);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition-spring);
  z-index: 999;
}

#back-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#back-top:hover { background: linear-gradient(135deg, #132d7a 0%, #007d74 100%); transform: translateY(-3px); }
#back-top svg { width: 20px; height: 20px; }

/* ── Mobile Nav Drawer ────────────────────────────────────── */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 90vw);
  background: var(--white);
  z-index: 999;
  padding: 5rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -20px 0 60px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
}

.nav-drawer.open { transform: translateX(0); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}

.nav-overlay.open { opacity: 1; visibility: visible; }

.drawer-link {
  display: block;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: var(--transition);
}

.drawer-link:hover { background: var(--accent-xlight); color: var(--accent); }

.drawer-divider {
  height: 1px;
  background: var(--gray-100);
  margin: 0.5rem 0;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-py: 4rem; --nav-height: 64px; }

  .nav-links, .nav-actions .btn-primary { display: none; }
  .nav-login { display: none; }
  .nav-toggle { display: flex; }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    padding-top: calc(var(--nav-height) + 2rem);
  }

  .hero-actions { justify-content: center; }
  .hero-stats   { justify-content: center; }

  .hero-dashboard { transform: none !important; }
  .hero-float-card { display: none; }

  .how-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .how-visual { order: -1; }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }

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

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

  .cta-form { flex-direction: column; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.25rem; }
  .hero-stats { gap: 1.5rem; }
  .metrics-grid { grid-template-columns: 1fr; }
  .trusted-logos { gap: 1.5rem; }
}
