/* ============================================================
   TripZaar — Premium Landing Page Styles v2.0
   Light SaaS theme · Stripe/Linear/Vercel inspired
   ============================================================ */

/* ── 1. CSS Variables ─────────────────────────────────────── */
:root {
  /* Brand */
  --brand:        #6366f1;
  --brand-dark:   #4f46e5;
  --brand-light:  #818cf8;
  --brand-50:     #eef2ff;
  --brand-100:    #e0e7ff;
  --pink:         #ec4899;
  --teal:         #14b8a6;
  --sky:          #0ea5e9;
  --green:        #10b981;
  --amber:        #f59e0b;
  --red:          #ef4444;

  /* Text */
  --t1:     #0f172a;
  --t2:     #1e293b;
  --t3:     #334155;
  --tmuted: #64748b;
  --tsub:   #94a3b8;

  /* Surface */
  --bg:   #ffffff;
  --bg2:  #f8fafc;
  --bg3:  #f1f5f9;
  --bg4:  #e2e8f0;

  /* Border */
  --border:  #e2e8f0;
  --border2: #f1f5f9;

  /* Shadow */
  --sh-xs: 0 1px 2px 0 rgb(0 0 0/0.05);
  --sh-sm: 0 1px 3px 0 rgb(0 0 0/0.1),0 1px 2px -1px rgb(0 0 0/0.1);
  --sh:    0 4px 6px -1px rgb(0 0 0/0.1),0 2px 4px -2px rgb(0 0 0/0.1);
  --sh-md: 0 10px 15px -3px rgb(0 0 0/0.1),0 4px 6px -4px rgb(0 0 0/0.1);
  --sh-lg: 0 20px 25px -5px rgb(0 0 0/0.1),0 8px 10px -6px rgb(0 0 0/0.1);
  --sh-xl: 0 25px 50px -12px rgb(0 0 0/0.25);
  --sh-brand: 0 8px 24px rgb(99 102 241/0.28);

  /* Radius */
  --r-xs: 4px;
  --r-sm: 8px;
  --r:    12px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-f:  9999px;

  /* Transition */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 150ms;
  --t:      220ms;
  --t-slow: 400ms;

  /* Section spacing */
  --sec-py: clamp(64px, 8vw, 112px);
}

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

html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 72px; overflow-x: hidden; max-width: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--t1);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.2; color: var(--t1); }
p { color: var(--tmuted); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ── 3. Typography ────────────────────────────────────────── */
.text-gradient {
  background: linear-gradient(135deg, var(--brand) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  padding: 4px 12px;
  border-radius: var(--r-f);
  margin-bottom: 16px;
}

.section-head { text-align: center; margin-bottom: clamp(40px, 6vw, 64px); }

.section-head h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-head p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--tmuted);
  max-width: 560px;
  margin-inline: auto;
}

/* ── 4. Buttons ───────────────────────────────────────────── */
.btn-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: #fff;
  padding: 11px 24px;
  border-radius: var(--r-f);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  transition: all var(--t) var(--ease);
  box-shadow: var(--sh-brand);
  white-space: nowrap;
  cursor: pointer;
}
.btn-brand:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgb(99 102 241/0.4);
  color: #fff;
}
.btn-brand:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--t1);
  padding: 10px 22px;
  border-radius: var(--r-f);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  transition: all var(--t) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-50);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--tmuted);
  padding: 10px 18px;
  border-radius: var(--r-f);
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  transition: all var(--t) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-ghost:hover { color: var(--t1); background: var(--bg3); }

.btn-lg { padding: 13px 30px; font-size: 1rem; }
.btn-sm { padding: 7px 16px; font-size: 0.8rem; }

/* Login button – always clearly visible in hero */
.btn-login-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg3);
  color: var(--t1);
  padding: 10px 22px;
  border-radius: var(--r-f);
  font-size: 0.9rem;
  font-weight: 700;
  border: 1.5px solid var(--bg4);
  transition: all var(--t) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn-login-hero:hover {
  background: var(--t1);
  color: #fff;
  border-color: var(--t1);
}

/* ── 5. Form Controls ─────────────────────────────────────── */
.form-field {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--t1);
  width: 100%;
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
  appearance: none;
}
.form-field::placeholder { color: var(--tsub); }
.form-field:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgb(99 102 241/0.12);
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--t2);
  margin-bottom: 6px;
}

/* ── 6. Navbar ────────────────────────────────────────────── */
.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease), padding var(--t) var(--ease);
}

.lp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 24px;
  transition: padding var(--t) var(--ease);
}

.lp-nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), var(--sh-sm);
}
.lp-nav.scrolled .lp-nav-inner { padding-top: 12px; padding-bottom: 12px; }

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 1;
}
.nav-logo img {
  height: 42px;
  width: auto;
  display: block;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 6px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--tmuted);
  border-radius: var(--r-sm);
  transition: color var(--t) var(--ease), background var(--t) var(--ease);
}
.nav-links a:hover { color: var(--t1); background: var(--bg3); }

/* Nav CTAs */
.nav-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--bg);
  gap: 5px;
  cursor: pointer;
  transition: border-color var(--t) var(--ease);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--t1);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: 65px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 24px;
  z-index: 999;
  overflow-y: auto;
  animation: slideDown 0.2s var(--ease);
}
.nav-mobile.open { display: block; }
.nav-mobile-links {
  list-style: none;
  margin-bottom: 24px;
}
.nav-mobile-links li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--t1);
  border-bottom: 1px solid var(--border2);
  transition: color var(--t) var(--ease);
}
.nav-mobile-links li a:hover { color: var(--brand); }
.nav-mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav-mobile-ctas .btn-brand,
.nav-mobile-ctas .btn-outline { justify-content: center; padding: 13px; font-size: 0.95rem; }

/* ── 7. Hero Section ──────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% -10%, rgb(99 102 241/0.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 85% 60%, rgb(236 72 153/0.07) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #e2e8f0 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.55;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border-radius: var(--r-f);
  margin-bottom: 20px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgb(16 185 129/0.2);
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title .line-accent {
  background: linear-gradient(135deg, var(--brand) 0%, var(--pink) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--tmuted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-avatars {
  display: flex;
}
.hero-avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: linear-gradient(135deg, var(--brand), var(--pink));
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
}
.hero-avatars span:first-child { margin-left: 0; }
.hero-social-text {
  font-size: 0.8rem;
  color: var(--tmuted);
}
.hero-social-text strong { color: var(--t1); }
.hero-stars { color: var(--amber); font-size: 0.75rem; }

/* Dashboard Mockup */
.hero-visual { position: relative; overflow: hidden; }

.hero-mockup-wrap {
  position: relative;
  margin-left: auto;
  max-width: 100%;
}

.hero-mockup {
  background: var(--bg);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--sh-xl), 0 0 0 1px rgb(0 0 0/0.05);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.mockup-dots { display: flex; gap: 5px; }
.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup-dots span:nth-child(1) { background: #ff5f56; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #27c93f; }
.mockup-url {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 4px 10px;
  font-size: 0.7rem;
  color: var(--tsub);
  text-align: center;
}

.mockup-body { padding: 16px; }

.mockup-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.mockup-header-row .title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--t1);
  font-family: 'Poppins', sans-serif;
}
.mockup-live-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgb(16 185 129/0.1);
  color: var(--green);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--r-f);
}
.mockup-live-dot {
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.mockup-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.mockup-stat-card {
  background: var(--bg2);
  border-radius: var(--r-sm);
  padding: 8px;
  text-align: center;
  border: 1px solid var(--border2);
}
.mockup-stat-val {
  font-size: 1.05rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  display: block;
  line-height: 1;
  margin-bottom: 2px;
}
.mockup-stat-lbl {
  font-size: 0.58rem;
  color: var(--tsub);
  font-weight: 500;
  display: block;
}
.stat-c1 { color: var(--brand); }
.stat-c2 { color: var(--green); }
.stat-c3 { color: var(--amber); }
.stat-c4 { color: var(--sky); }

.mockup-chart-section { margin-bottom: 14px; }
.mockup-chart-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.mockup-chart-title { font-size: 0.7rem; font-weight: 600; color: var(--t2); }
.mockup-chart-badge {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--green);
  background: rgb(16 185 129/0.1);
  padding: 1px 7px;
  border-radius: var(--r-f);
}
.mockup-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 52px;
}
.mockup-bar-item { flex: 1; border-radius: 3px 3px 0 0; }
.mockup-bar-item.b1 { height: 60%; background: linear-gradient(to top, var(--brand), var(--brand-light)); }
.mockup-bar-item.b2 { height: 75%; background: linear-gradient(to top, var(--brand), var(--brand-light)); }
.mockup-bar-item.b3 { height: 55%; background: linear-gradient(to top, var(--brand), var(--brand-light)); }
.mockup-bar-item.b4 { height: 90%; background: linear-gradient(to top, var(--brand-dark), var(--pink)); }
.mockup-bar-item.b5 { height: 70%; background: linear-gradient(to top, var(--brand), var(--brand-light)); }
.mockup-bar-item.b6 { height: 80%; background: linear-gradient(to top, var(--brand), var(--brand-light)); }
.mockup-bar-item.b7 { height: 65%; background: linear-gradient(to top, var(--brand), var(--brand-light)); }
.mockup-day-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
}
.mockup-day-labels span { font-size: 0.55rem; color: var(--tsub); }

.mockup-bookings { }
.mockup-bookings-title { font-size: 0.7rem; font-weight: 600; color: var(--t2); margin-bottom: 6px; }
.mockup-booking-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid var(--border2);
  gap: 6px;
}
.mockup-booking-row:last-child { border-bottom: none; }
.mockup-booking-name { font-size: 0.65rem; font-weight: 600; color: var(--t1); min-width: 60px; }
.mockup-booking-route { font-size: 0.6rem; color: var(--tsub); flex: 1; }
.mockup-booking-amt { font-size: 0.65rem; font-weight: 700; color: var(--t2); }
.mockup-booking-status {
  font-size: 0.55rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 999px;
}
.status-confirmed { background: rgb(16 185 129/0.12); color: var(--green); }
.status-pending   { background: rgb(245 158 11/0.12); color: var(--amber); }
.status-active    { background: rgb(99 102 241/0.12); color: var(--brand); }

/* Floating cards */
.hero-float {
  position: absolute;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 10px 14px;
  box-shadow: var(--sh-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--t1);
  white-space: nowrap;
  z-index: 2;
}
.hero-float i { font-size: 1rem; }
.hero-float-1 { top: 12%; right: 0; animation: floatA 4s ease-in-out infinite; }
.hero-float-2 { bottom: 20%; left: 0; animation: floatB 5s ease-in-out infinite 1s; }
.hero-float-3 { bottom: 4%; right: 10%; animation: floatA 4.5s ease-in-out infinite 0.5s; }
.hero-float-1 i { color: var(--green); }
.hero-float-2 i { color: var(--brand); }
.hero-float-3 i { color: var(--amber); }

/* ── 8. Trusted By ────────────────────────────────────────── */
.trusted-section {
  padding: 40px 0;
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  background: var(--bg2);
}
.trusted-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tsub);
  margin-bottom: 20px;
}
.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
}
.trusted-logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 8px 16px;
  transition: all var(--t) var(--ease);
}
.trusted-logo-item:hover { border-color: var(--brand-light); box-shadow: var(--sh-sm); }
.trusted-logo-item i { color: var(--brand); font-size: 1rem; }
.trusted-logo-item span { font-size: 0.8rem; font-weight: 600; color: var(--tmuted); }

/* ── 9. Stats ─────────────────────────────────────────────── */
.stats-section {
  padding: var(--sec-py) 0;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 50%, #7c3aed 100%);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.stat-item {
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.75); font-weight: 500; }

/* ── 10. Features ─────────────────────────────────────────── */
.features-section { padding: var(--sec-py) 0; background: var(--bg); }

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

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: clamp(20px, 3vw, 28px);
  transition: all var(--t-slow) var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-50), transparent);
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.feature-card:hover {
  border-color: var(--brand-light);
  box-shadow: var(--sh-md), 0 0 0 1px var(--brand-50);
  transform: translateY(-3px);
}
.feature-card:hover::after { opacity: 1; }

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.fi-brand  { background: var(--brand-50); color: var(--brand); }
.fi-pink   { background: rgb(236 72 153/0.1); color: var(--pink); }
.fi-teal   { background: rgb(20 184 166/0.1); color: var(--teal); }
.fi-sky    { background: rgb(14 165 233/0.1); color: var(--sky); }
.fi-amber  { background: rgb(245 158 11/0.1); color: var(--amber); }
.fi-green  { background: rgb(16 185 129/0.1); color: var(--green); }
.fi-purple { background: rgb(124 58 237/0.1); color: #7c3aed; }
.fi-red    { background: rgb(239 68 68/0.1); color: var(--red); }
.fi-slate  { background: var(--bg3); color: var(--tmuted); }

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.feature-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--tmuted);
  position: relative;
  z-index: 1;
}

/* ── 11. Modules ──────────────────────────────────────────── */
.modules-section { padding: var(--sec-py) 0; background: var(--bg2); }

.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.module-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 16px;
  text-align: center;
  transition: all var(--t) var(--ease);
  cursor: default;
}
.module-card:hover {
  border-color: var(--brand-light);
  box-shadow: var(--sh);
  transform: translateY(-2px);
  background: var(--brand-50);
}
.module-card i {
  font-size: 1.5rem;
  color: var(--brand);
  margin-bottom: 10px;
  display: block;
}
.module-card:hover i { color: var(--brand-dark); }
.module-card h4 { font-size: 0.85rem; font-weight: 700; color: var(--t1); margin-bottom: 4px; }
.module-card p  { font-size: 0.75rem; color: var(--tmuted); line-height: 1.4; }

/* ── 12. How It Works ─────────────────────────────────────── */
.hiw-section { padding: var(--sec-py) 0; background: var(--bg); }

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.hiw-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--pink));
  z-index: 0;
}

.hiw-step { text-align: center; position: relative; z-index: 1; }

.hiw-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--sh-brand);
  border: 4px solid var(--bg);
}

.hiw-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.hiw-step p  { font-size: 0.85rem; color: var(--tmuted); line-height: 1.6; }

/* ── 13. Dashboard Preview ────────────────────────────────── */
.preview-section { padding: var(--sec-py) 0; background: var(--bg2); overflow: hidden; }

.preview-screen {
  background: var(--bg);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--sh-xl);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.preview-topbar {
  background: var(--t1);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.preview-topbar-dots { display: flex; gap: 5px; }
.preview-topbar-dots span { width: 10px; height: 10px; border-radius: 50%; }
.preview-topbar-dots span:nth-child(1) { background: #ff5f56; }
.preview-topbar-dots span:nth-child(2) { background: #ffbd2e; }
.preview-topbar-dots span:nth-child(3) { background: #27c93f; }
.preview-topbar-title {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  flex: 1;
  text-align: center;
}

.preview-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 340px;
}

.preview-sidebar {
  background: var(--bg2);
  border-right: 1px solid var(--border);
  padding: 16px;
}
.preview-sidebar-logo {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--brand);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
  padding: 0 4px;
}
.preview-sidebar-nav { list-style: none; }
.preview-sidebar-nav li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: var(--r-sm);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--tmuted);
  margin-bottom: 2px;
  cursor: pointer;
}
.preview-sidebar-nav li.active {
  background: var(--brand-50);
  color: var(--brand);
  font-weight: 600;
}
.preview-sidebar-nav li i { font-size: 0.85rem; width: 16px; }

.preview-main { padding: 16px; }
.preview-main-title { font-size: 0.85rem; font-weight: 700; color: var(--t1); margin-bottom: 14px; }

.preview-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.preview-kpi {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 10px;
}
.preview-kpi-label { font-size: 0.62rem; color: var(--tsub); font-weight: 500; margin-bottom: 4px; }
.preview-kpi-val {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--t1);
  font-family: 'Poppins', sans-serif;
}
.preview-kpi-trend { font-size: 0.6rem; color: var(--green); font-weight: 600; margin-top: 2px; }

.preview-row-2 { display: grid; grid-template-columns: 1fr 120px; gap: 10px; }

.preview-recent { background: var(--bg2); border-radius: var(--r-sm); border: 1px solid var(--border); padding: 10px; }
.preview-recent-title { font-size: 0.68rem; font-weight: 700; color: var(--t1); margin-bottom: 8px; }

.preview-table-row {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid var(--border2);
  font-size: 0.62rem;
}
.preview-table-row:last-child { border-bottom: none; }
.ptr-name { font-weight: 600; color: var(--t1); min-width: 65px; }
.ptr-type { color: var(--tsub); flex: 1; }
.ptr-amt  { font-weight: 700; color: var(--t2); }
.ptr-status {
  padding: 1px 6px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.55rem;
}

.preview-mini-chart { background: var(--bg2); border-radius: var(--r-sm); border: 1px solid var(--border); padding: 10px; }
.preview-mini-title { font-size: 0.68rem; font-weight: 700; color: var(--t1); margin-bottom: 8px; }
.preview-mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
}
.pmb { flex: 1; border-radius: 2px 2px 0 0; background: linear-gradient(to top, var(--brand), var(--brand-light)); }

/* ── 14. Testimonials ─────────────────────────────────────── */
.testimonials-section { padding: var(--sec-py) 0; background: var(--bg); }

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

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: clamp(20px, 3vw, 28px);
  transition: all var(--t-slow) var(--ease);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  box-shadow: var(--sh-lg);
  border-color: var(--brand-light);
  transform: translateY(-4px);
}

.testimonial-stars { color: var(--amber); font-size: 0.85rem; margin-bottom: 14px; }
.testimonial-text {
  font-size: 0.9rem;
  color: var(--t3);
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
  font-style: italic;
}
.testimonial-text::before { content: '\201C'; font-size: 2rem; color: var(--brand-light); line-height: 0; vertical-align: -0.5rem; margin-right: 2px; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.9rem; font-weight: 700; color: var(--t1); }
.testimonial-role { font-size: 0.78rem; color: var(--tmuted); }

/* ── 15. Pricing ──────────────────────────────────────────── */
.pricing-section { padding: var(--sec-py) 0; background: var(--bg2); }

.pricing-card-wrap { max-width: 720px; margin: 0 auto; }

.pricing-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  border: 2px solid var(--brand-100);
  overflow: hidden;
  box-shadow: var(--sh-lg), 0 0 0 4px var(--brand-50);
}

.pricing-card-header {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand), #7c3aed);
  padding: 36px 40px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-card-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}
.pricing-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--r-f);
  margin-bottom: 12px;
}
.pricing-plan-name {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  margin-bottom: 6px;
}
.pricing-price {
  font-size: 3rem;
  font-weight: 900;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-period { font-size: 0.9rem; color: rgba(255,255,255,0.75); }

.pricing-card-body { padding: 32px 40px; }

.pricing-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--t2);
}
.pricing-feature i { color: var(--green); font-size: 1rem; flex-shrink: 0; }
.pricing-ctas { display: flex; gap: 12px; }
.pricing-ctas .btn-brand, .pricing-ctas .btn-outline { flex: 1; justify-content: center; }

/* ── 16. FAQ ──────────────────────────────────────────────── */
.faq-section { padding: var(--sec-py) 0; background: var(--bg); }

.faq-wrap { max-width: 720px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow var(--t) var(--ease);
}
.faq-item:hover { box-shadow: var(--sh-sm); }

.faq-question {
  width: 100%;
  background: var(--bg);
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--t1);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background var(--t) var(--ease);
}
.faq-question:hover { background: var(--bg2); }
.faq-question.open { background: var(--brand-50); color: var(--brand); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--t) var(--ease);
  font-size: 0.75rem;
  color: var(--tmuted);
}
.faq-question.open .faq-icon {
  background: var(--brand);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 20px 18px;
  background: var(--brand-50);
}
.faq-answer p { font-size: 0.9rem; color: var(--tmuted); line-height: 1.75; }

/* ── 17. Demo + Contact Sections ──────────────────────────── */
.demo-section    { padding: var(--sec-py) 0; background: var(--bg2); }
.contact-section { padding: var(--sec-py) 0; background: var(--bg); }

.form-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--sh-md);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row.single { grid-template-columns: 1fr; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.contact-info-col { display: flex; flex-direction: column; gap: 14px; }

.contact-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all var(--t) var(--ease);
}
.contact-card:hover { border-color: var(--brand-light); box-shadow: var(--sh); }

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--brand-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--brand);
  flex-shrink: 0;
}
.contact-card-info h4 { font-size: 0.9rem; font-weight: 700; color: var(--t1); margin-bottom: 3px; }
.contact-card-info p  { font-size: 0.85rem; color: var(--tmuted); line-height: 1.5; }
.contact-card-info a  { color: var(--brand); }
.contact-card-info a:hover { text-decoration: underline; }

/* ── 18. CTA Banner ───────────────────────────────────────── */
.cta-section {
  padding: var(--sec-py) 0;
  background: linear-gradient(135deg, var(--t1) 0%, var(--t2) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgb(99 102 241/0.25), transparent),
    radial-gradient(ellipse 50% 70% at 80% 50%, rgb(236 72 153/0.2), transparent);
}
.cta-inner {
  position: relative;
  text-align: center;
}
.cta-inner h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.cta-inner p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 32px; max-width: 500px; margin-inline: auto; margin-bottom: 32px; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cta-buttons .btn-brand  { background: #fff; color: var(--brand); box-shadow: var(--sh-md); }
.cta-buttons .btn-brand:hover { background: var(--brand-50); color: var(--brand-dark); }
.cta-buttons .btn-outline { border-color: rgba(255,255,255,0.35); color: #fff; }
.cta-buttons .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); color: #fff; }

/* ── 19. Footer ───────────────────────────────────────────── */
.lp-footer {
  background: var(--t1);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  align-items: start;
}
.footer-brand-col { }  /* logo uses filter:invert on dark bg via inline style */
.footer-desc { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.5); margin-bottom: 20px; }

/* Contact list in brand column */
.footer-contact-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.footer-contact-list li i {
  margin-top: 2px;
  color: var(--brand);
  width: 14px;
  flex-shrink: 0;
}
.footer-contact-list a {
  color: rgba(255,255,255,0.5);
  transition: color var(--t) var(--ease);
}
.footer-contact-list a:hover { color: #fff; }

.footer-logo-link { display: inline-block; margin-bottom: 16px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: all var(--t) var(--ease);
  border: 1px solid rgba(255,255,255,0.08);
}
.footer-social a:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: 'Poppins', sans-serif;
  text-align: left;
}
.footer-links { list-style: none; text-align: left; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--t) var(--ease);
}
.footer-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color var(--t) var(--ease); }
.footer-bottom a:hover { color: #fff; }

/* ── 20. Scroll Top ───────────────────────────────────────── */
.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: var(--sh-brand);
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--t) var(--ease);
}
.scroll-top-btn.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--brand-dark); transform: translateY(-3px); }

/* ── 21. Alerts ───────────────────────────────────────────── */
.alert-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgb(16 185 129/0.08);
  border: 1px solid rgb(16 185 129/0.25);
  border-radius: var(--r);
  padding: 14px 18px;
  color: #065f46;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 24px;
}
.alert-error {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgb(239 68 68/0.08);
  border: 1px solid rgb(239 68 68/0.25);
  border-radius: var(--r);
  padding: 14px 18px;
  color: #991b1b;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 24px;
}

/* ── 22. Reveal Animations ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.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; }
.reveal-delay-6 { transition-delay: 0.6s; }

.reveal-left {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateY(0); }

.reveal-right {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateY(0); }

/* ── 23. Keyframes ────────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.3); opacity: 0.7; }
}
@keyframes floatA {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-10px) rotate(1deg); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-8px) rotate(-1deg); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spinOnce {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── 23b. Legal / Prose Pages (.pp, .tos) ────────────────── */
.prose h2 { font-size: 1.25rem; font-weight: 700; margin: 32px 0 10px; color: var(--t1); }
.prose p  { font-size: 0.95rem; color: var(--tmuted); line-height: 1.8; margin-bottom: 14px; }
.prose ul { padding-left: 20px; margin-bottom: 14px; }
.prose ul li { font-size: 0.95rem; color: var(--tmuted); line-height: 1.8; margin-bottom: 6px; }
.prose a  { color: var(--brand); }
.prose a:hover { text-decoration: underline; }
.prose strong { color: var(--t1); font-weight: 600; }

/* ── 24. Responsive ───────────────────────────────────────── */

/* 1400px and up – ultra wide */
@media (min-width: 1400px) {
  .hero-title { font-size: 4rem; }
}

/* Under 1200px */
@media (max-width: 1199px) {
  .feature-grid    { grid-template-columns: repeat(2, 1fr); }
  .modules-grid    { grid-template-columns: repeat(3, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
  .footer-brand-col { grid-column: 1 / -1; }
  .preview-body    { grid-template-columns: 160px 1fr; }
  .preview-kpi-row { grid-template-columns: repeat(2, 1fr); }
}

/* Under 992px – tablets */
@media (max-width: 991px) {
  :root { --sec-py: 72px; }

  .nav-links, .nav-ctas { display: none; }
  .nav-toggle { display: flex; }

  .hero-section { min-height: auto; padding-top: 100px; padding-bottom: 60px; }
  .hero-visual  { margin-top: 40px; }
  .hero-float-1 { right: -4px; }
  .hero-float-2 { left: -4px; }
  .hero-float-3 { display: none; }

  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .stat-item      { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
  .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  .hiw-steps      { grid-template-columns: repeat(2, 1fr); }
  .hiw-steps::before { display: none; }

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

  .pricing-card-body { padding: 24px; }
  .pricing-ctas      { flex-direction: column; }
  .pricing-ctas .btn-brand, .pricing-ctas .btn-outline { flex: none; }

  .preview-body   { grid-template-columns: 1fr; }
  .preview-sidebar { display: none; }
  .preview-kpi-row { grid-template-columns: repeat(4, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand-col { grid-column: 1 / -1; }
}

/* Under 768px – large phones / small tablets */
@media (max-width: 767px) {
  :root { --sec-py: 56px; }

  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-float { font-size: 0.72rem; padding: 8px 12px; }

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

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

  .hiw-steps      { grid-template-columns: 1fr; gap: 16px; }

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

  .pricing-card-header { padding: 28px 24px; }
  .pricing-card-body   { padding: 24px; }
  .pricing-features-grid { grid-template-columns: 1fr; gap: 8px; }
  .pricing-price { font-size: 2.2rem; }

  .form-row { grid-template-columns: 1fr; }

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

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn-brand, .cta-buttons .btn-outline { width: 100%; max-width: 300px; justify-content: center; }

  .trusted-logos { gap: 8px 12px; }

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

/* Under 576px – small phones */
@media (max-width: 575px) {
  :root { --sec-py: 48px; }

  .lp-nav-inner { padding: 14px 16px; }

  .hero-section { padding-top: 90px; }
  .hero-title { font-size: 1.9rem; }
  .hero-float { display: none; }
  .hero-float-2 { display: flex; left: 4px; }

  .modules-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .section-head h2 { font-size: 1.6rem; }

  .scroll-top-btn { bottom: 16px; right: 16px; width: 40px; height: 40px; }

  .nav-mobile { top: 62px; }
}

/* Under 375px – smallest phones */
@media (max-width: 375px) {
  .hero-title { font-size: 1.7rem; }
  .modules-grid { grid-template-columns: 1fr 1fr; }
  .mockup-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
