/* ==========================================================================
   SENDRO — LANDING PAGE STYLES
   ========================================================================== */

:root {
  --bg-dark: #0B0F19;
  --bg-card: rgba(17, 24, 39, 0.75);
  --bg-card-border: rgba(255, 255, 255, 0.08);
  --bg-card-hover: rgba(30, 41, 59, 0.85);
  --primary: #6366F1;
  --primary-hover: #4F46E5;
  --accent-cyan: #06B6D4;
  --accent-emerald: #10B981;
  --accent-amber: #F59E0B;
  --accent-rose: #EF4444;
  --accent-purple: #8B5CF6;
  --text-main: #F9FAFB;
  --text-muted: #9CA3AF;
  --text-dim: #6B7280;
  --border-color: rgba(255, 255, 255, 0.1);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-glow: 0 0 25px rgba(99, 102, 241, 0.25);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.4);
  --font-family: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-family);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ============ NAVBAR ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 40px; height: 72px;
  display: flex; align-items: center;
  background: rgba(11, 15, 25, 0.6);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(11, 15, 25, 0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  width: 100%; max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.15rem; font-family: var(--font-heading); }
.nav-logo {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0; overflow: hidden;
}
.nav-logo img { width: 100%; height: 100%; object-fit: contain; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-main); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 30px; height: 24px; position: relative; flex-direction: column; justify-content: space-between;
}
.nav-hamburger span {
  display: block; width: 100%; height: 2px; background: var(--text-main);
  border-radius: 2px; transition: 0.3s;
}

/* Buttons */
.btn-ghost {
  background: transparent; color: var(--text-muted); border: 1px solid var(--border-color);
  padding: 9px 18px; border-radius: var(--radius-sm); font-size: 0.875rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s; font-family: var(--font-family);
}
.btn-ghost:hover { color: var(--text-main); border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.05); }
.btn-glow {
  background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
  color: #fff; border: none; padding: 9px 20px; border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 600; cursor: pointer;
  transition: all 0.3s; font-family: var(--font-family);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}
.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.5), 0 8px 25px rgba(6, 182, 212, 0.2);
}
.btn-lg { padding: 14px 28px; font-size: 1rem; border-radius: var(--radius-md); display: inline-flex; align-items: center; gap: 8px; }
.btn-full { width: 100%; justify-content: center; padding: 12px; font-size: 0.95rem; }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 999;
  background: rgba(11, 15, 25, 0.98); backdrop-filter: blur(20px);
  padding: 20px 40px; flex-direction: column; gap: 16px;
  border-bottom: 1px solid var(--border-color);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1rem; color: var(--text-muted); padding: 8px 0; }
.mobile-menu a:hover { color: var(--text-main); }
.mobile-menu hr { border: none; border-top: 1px solid var(--border-color); }

/* ============ HERO ============ */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 120px 40px 80px; position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.4;
}
.hero-orb-1 {
  width: 600px; height: 600px; top: -200px; left: -100px;
  background: radial-gradient(circle, rgba(99,102,241,0.5), transparent 70%);
}
.hero-orb-2 {
  width: 500px; height: 500px; bottom: -150px; right: -100px;
  background: radial-gradient(circle, rgba(6,182,212,0.4), transparent 70%);
}
.hero-orb-3 {
  width: 300px; height: 300px; top: 40%; left: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.3), transparent 70%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(99,102,241,0.15); border: 1px solid rgba(99,102,241,0.3);
  border-radius: 50px; padding: 6px 16px; font-size: 0.8rem; font-weight: 500;
  color: var(--primary); margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent-emerald);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; } 50% { opacity: 0.4; }
}
.hero-title {
  font-family: var(--font-heading); font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900; line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.02em;
}
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent-cyan), var(--accent-purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 32px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }
.hero-stats {
  display: flex; gap: 40px; justify-content: center; align-items: center; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 800;
  background: linear-gradient(135deg, var(--text-main), var(--accent-cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-num-suffix {
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800;
  background: linear-gradient(135deg, var(--text-main), var(--accent-cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { display: block; font-size: 0.8rem; color: var(--text-dim); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: var(--border-color); }

/* Hero Dashboard Visual */
.hero-visual {
  position: absolute; right: -60px; bottom: -40px; width: 500px;
  opacity: 0.15; pointer-events: none; transform: rotate(-5deg);
}
.hero-dashboard-preview {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); overflow: hidden;
}
.preview-bar {
  display: flex; align-items: center; gap: 6px; padding: 10px 14px;
  background: rgba(0,0,0,0.3); border-bottom: 1px solid var(--border-color);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #EF4444; } .dot-yellow { background: #F59E0B; } .dot-green { background: #10B981; }
.preview-title { font-size: 0.7rem; color: var(--text-dim); margin-left: 8px; }
.preview-body { display: flex; padding: 12px; gap: 12px; }
.preview-sidebar { width: 40px; display: flex; flex-direction: column; gap: 6px; }
.preview-nav-item { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.08); }
.preview-nav-item.active { background: var(--primary); }
.preview-content { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.preview-card-row { display: flex; gap: 8px; }
.preview-stat-card { flex: 1; height: 30px; border-radius: 6px; background: rgba(255,255,255,0.05); }
.preview-chart {
  display: flex; align-items: flex-end; gap: 6px; height: 60px;
  padding: 8px; background: rgba(255,255,255,0.03); border-radius: 6px;
}
.chart-bar {
  flex: 1; border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, var(--primary), var(--accent-cyan));
  opacity: 0.6;
}

/* ============ LOGOS ============ */
.logos-section {
  padding: 40px 40px 60px; text-align: center;
  border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color);
}
.logos-label { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 2px; }
.logos-track {
  display: flex; gap: 50px; justify-content: center; align-items: center; flex-wrap: wrap;
}
.logo-item {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700;
  color: var(--text-dim); opacity: 0.5; transition: opacity 0.3s;
}
.logo-item:hover { opacity: 1; }

/* ============ SECTION HEADERS ============ */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 3px; color: var(--primary);
  background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.2);
  border-radius: 50px; padding: 6px 16px; margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 16px;
}
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 550px; margin: 0 auto; }

/* ============ FEATURES ============ */
.features { padding: 100px 40px; max-width: 1280px; margin: 0 auto; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-card {
  background: var(--bg-card); border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(99,102,241,0.05), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover {
  border-color: rgba(99,102,241,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.icon-indigo { background: rgba(99,102,241,0.15); color: var(--primary); }
.icon-cyan { background: rgba(6,182,212,0.15); color: var(--accent-cyan); }
.icon-emerald { background: rgba(16,185,129,0.15); color: var(--accent-emerald); }
.icon-amber { background: rgba(245,158,11,0.15); color: var(--accent-amber); }
.icon-rose { background: rgba(239,68,68,0.15); color: var(--accent-rose); }
.icon-purple { background: rgba(139,92,246,0.15); color: var(--accent-purple); }
.feature-card h3 {
  font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700;
  margin-bottom: 10px;
}
.feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ============ HOW IT WORKS ============ */
.how-it-works { padding: 100px 40px; max-width: 1100px; margin: 0 auto; }
.steps { display: flex; align-items: flex-start; gap: 0; }
.step {
  flex: 1; text-align: center; padding: 0 20px; position: relative;
}
.step-num {
  font-family: var(--font-heading); font-size: 3rem; font-weight: 900;
  background: linear-gradient(135deg, rgba(99,102,241,0.3), rgba(6,182,212,0.3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 16px;
}
.step h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.step-connector {
  width: 60px; height: 2px; background: linear-gradient(90deg, var(--primary), var(--accent-cyan));
  margin-top: 30px; flex-shrink: 0; opacity: 0.4;
}

/* ============ PRICING ============ */
.pricing { padding: 100px 40px; max-width: 1280px; margin: 0 auto; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start;
}
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg); padding: 32px; position: relative;
  transition: all 0.3s;
}
.pricing-card:hover {
  border-color: rgba(99,102,241,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.pricing-card.popular {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(99,102,241,0.1) 0%, var(--bg-card) 100%);
  box-shadow: 0 0 40px rgba(99,102,241,0.15);
}
.popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
  color: #fff; font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; padding: 4px 14px; border-radius: 50px;
  white-space: nowrap;
}
.pricing-header { margin-bottom: 24px; }
.pricing-header h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.pricing-price {
  font-family: var(--font-heading); font-size: 2.8rem; font-weight: 900;
  margin-bottom: 4px;
}
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--text-dim); }
.pricing-header p { font-size: 0.85rem; color: var(--text-muted); }
.pricing-features {
  list-style: none; margin-bottom: 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.875rem; color: var(--text-muted);
}
.check {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(16,185,129,0.15); stroke: var(--accent-emerald);
  stroke-width: 2.5; fill: none; flex-shrink: 0;
}
.btn-pricing {
  width: 100%; padding: 12px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06); border: 1px solid var(--border-color);
  color: var(--text-main); font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s; font-family: var(--font-family);
}
.btn-pricing:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.btn-pricing-popular {
  background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
  border: none; color: #fff;
  box-shadow: 0 0 20px rgba(99,102,241,0.3);
}
.btn-pricing-popular:hover { box-shadow: 0 0 30px rgba(99,102,241,0.5); transform: translateY(-1px); }

/* ---- Plan card extras ---- */
.plan-icon-wrap {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.plan-icon-free { background: rgba(6,182,212,0.15); color: var(--accent-cyan); }
.plan-icon-starter { background: rgba(16,185,129,0.15); color: var(--accent-emerald); }
.plan-icon-growth { background: linear-gradient(135deg, var(--primary), var(--accent-cyan)); color: #fff; box-shadow: 0 4px 16px rgba(99,102,241,0.35); }
.plan-icon-pro { background: rgba(245,158,11,0.15); color: var(--accent-amber); }
.plan-tagline { font-size: 0.82rem; color: var(--text-dim); line-height: 1.5; min-height: 40px; }
.pricing-features .check-no {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(239,68,68,0.12); stroke: #EF4444;
  stroke-width: 2.5; fill: none; flex-shrink: 0;
}
.feat-off { color: var(--text-dim); opacity: 0.55; text-decoration: line-through; }
.pricing-note { margin-top: 14px; font-size: 0.72rem; color: var(--text-dim); text-align: center; }

/* ---- Pricing compare table ---- */
.pricing-compare-wrap {
  margin-top: 48px; border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg); background: var(--bg-card); overflow: hidden;
}
.pricing-compare-toggle {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 18px; background: none; border: none; cursor: pointer;
  color: var(--text-main); font-family: var(--font-family);
  font-size: 0.9rem; font-weight: 600; transition: background 0.2s;
}
.pricing-compare-toggle:hover { background: rgba(255,255,255,0.04); }
.compare-chevron { transition: transform 0.3s; }
.pricing-compare-toggle.open .compare-chevron { transform: rotate(180deg); }
.pricing-compare-table { display: none; padding: 0 24px 24px; overflow-x: auto; }
.pricing-compare-table.open { display: block; }
.pricing-compare-table table { width: 100%; border-collapse: collapse; font-size: 0.85rem; min-width: 640px; }
.pricing-compare-table th {
  font-family: var(--font-heading); text-align: center; padding: 14px 12px;
  color: var(--text-main); border-bottom: 1px solid var(--bg-card-border); font-size: 0.85rem;
}
.pricing-compare-table th:first-child { text-align: left; }
.pricing-compare-table th small { display: block; color: var(--text-dim); font-weight: 500; font-size: 0.72rem; margin-top: 2px; }
.pricing-compare-table td {
  padding: 12px; text-align: center; color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pricing-compare-table td:first-child { text-align: left; color: var(--text-main); }
.th-popular { color: var(--primary); }
.td-popular { color: #fff; font-weight: 600; background: rgba(99,102,241,0.08); }
.td-check { color: var(--accent-emerald); font-weight: 600; }
.td-x { color: var(--text-dim); opacity: 0.5; }
.table-section td {
  text-align: left !important; font-weight: 700;
  color: var(--text-dim) !important; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 1px; padding-top: 22px; background: none !important;
}

/* ---- Pricing trust strip ---- */
.pricing-trust {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-top: 40px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-dim); }
.trust-divider { width: 1px; height: 14px; background: var(--border-color); }

/* ============ TESTIMONIALS ============ */
.testimonials { padding: 100px 40px; max-width: 1280px; margin: 0 auto; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(99,102,241,0.2);
  transform: translateY(-2px);
}
.testimonial-stars { color: var(--accent-amber); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p {
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 24px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.875rem; }
.testimonial-author span { font-size: 0.78rem; color: var(--text-dim); }

/* ============ ABOUT ============ */
.about { padding: 100px 40px; }
.about-inner { max-width: 900px; margin: 0 auto; }
.about-content p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.about-values {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px;
}
.about-value {
  background: var(--bg-card); border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg); padding: 28px; text-align: center;
}
.about-value-icon { font-size: 2rem; margin-bottom: 12px; }
.about-value h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.about-value p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ============ CTA ============ */
.cta-section { padding: 100px 40px; }
.cta-box {
  max-width: 800px; margin: 0 auto; text-align: center;
  background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(6,182,212,0.1));
  border: 1px solid rgba(99,102,241,0.2); border-radius: 24px;
  padding: 60px 40px; position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(99,102,241,0.2), transparent 60%);
}
.cta-box h2 {
  font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800; margin-bottom: 12px; position: relative;
}
.cta-box p { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 28px; position: relative; }
.cta-box .btn-glow { position: relative; }

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--border-color); padding: 60px 40px 30px;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; gap: 60px; flex-wrap: wrap;
}
.footer-brand { max-width: 280px; }
.footer-brand .nav-logo { margin-bottom: 12px; }
.footer-brand span { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; }
.footer-tagline { font-size: 0.85rem; color: var(--text-dim); margin-top: 10px; line-height: 1.6; }
.footer-links { display: flex; gap: 60px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700; margin-bottom: 4px; }
.footer-col a { font-size: 0.85rem; color: var(--text-dim); transition: color 0.2s; }
.footer-col a:hover { color: var(--text-main); }
.footer-bottom {
  max-width: 1280px; margin: 40px auto 0; padding-top: 20px;
  border-top: 1px solid var(--border-color); text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-dim); }

/* ============ AUTH MODAL ============ */
.auth-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
  padding: 20px;
}
.auth-overlay.open { opacity: 1; pointer-events: all; }
.auth-modal {
  background: var(--bg-card); border: 1px solid var(--bg-card-border);
  border-radius: 20px; padding: 40px; width: 100%; max-width: 440px;
  position: relative; max-height: 90vh; overflow-y: auto;
  transform: translateY(20px) scale(0.97); transition: transform 0.3s ease;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}
.auth-overlay.open .auth-modal { transform: translateY(0) scale(1); }
.auth-close {
  position: absolute; top: 16px; right: 16px; background: none; border: none;
  color: var(--text-dim); font-size: 1.5rem; cursor: pointer; width: 36px; height: 36px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.auth-close:hover { background: rgba(255,255,255,0.08); color: var(--text-main); }
.auth-header { text-align: center; margin-bottom: 28px; }
.auth-logo {
  width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
  display: flex; align-items: center; justify-content: center; color: #fff;
  overflow: hidden;
}
.auth-logo img { width: 100%; height: 100%; object-fit: contain; }
.auth-header h2 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; margin-bottom: 4px; }
.auth-header p { font-size: 0.875rem; color: var(--text-muted); }
.btn-google {
  width: 100%; padding: 12px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06); border: 1px solid var(--border-color);
  color: var(--text-main); font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s; font-family: var(--font-family);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-google:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.auth-divider {
  display: flex; align-items: center; gap: 16px; margin: 20px 0;
}
.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border-color);
}
.auth-divider span { font-size: 0.78rem; color: var(--text-dim); }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 6px; color: var(--text-muted); }
.form-group input {
  width: 100%; padding: 11px 14px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05); border: 1px solid var(--border-color);
  color: var(--text-main); font-size: 0.9rem; font-family: var(--font-family);
  transition: border-color 0.2s; outline: none;
}
.form-group input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(99,102,241,0.15); }
.form-group input::placeholder { color: var(--text-dim); }
.form-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.checkbox-label {
  display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--text-muted); cursor: pointer;
}
.checkbox-label input { accent-color: var(--primary); }
.form-link { font-size: 0.82rem; color: var(--primary); }
.form-link:hover { text-decoration: underline; }
.auth-switch { text-align: center; font-size: 0.85rem; color: var(--text-dim); margin-top: 20px; }
.auth-switch a { color: var(--primary); font-weight: 600; }
.auth-switch a:hover { text-decoration: underline; }
.auth-terms { text-align: center; font-size: 0.75rem; color: var(--text-dim); margin-top: 12px; }
.auth-terms a { color: var(--text-muted); }
.hidden { display: none !important; }

/* Password Strength */
.password-strength { margin-bottom: 20px; }
.strength-bar { height: 4px; border-radius: 2px; background: rgba(255,255,255,0.08); overflow: hidden; margin-bottom: 4px; }
.strength-fill {
  height: 100%; width: 0%; border-radius: 2px;
  transition: width 0.3s, background 0.3s;
}
.strength-text { font-size: 0.72rem; color: var(--text-dim); }

/* ============ SCROLL ANIMATIONS ============
   NOTE: Elements are hidden by landing.js (via GSAP) only at the moment they
   are registered with the IntersectionObserver — never via CSS. If JS or a
   CDN fails, every section simply renders fully visible and static.
   [data-anim]/[data-gsap] attributes in the HTML are inert markers. */

/* ============================================================
   FEATURES SECTION — NEW ENHANCED STYLES
   ============================================================ */

/* --- Feature Highlight Row (2 big cards) --- */
.feature-highlight-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 56px auto 64px;
  padding: 0 40px;
}

.feature-highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 20px;
  padding: 36px 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  will-change: transform;
}
.feature-highlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(99,102,241,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.fh-right::before {
  background: radial-gradient(ellipse at top right, rgba(6,182,212,0.08) 0%, transparent 60%);
}
.feature-highlight-card:hover {
  border-color: rgba(99, 102, 241, 0.35);
  transform: translateY(-4px);
}

.fh-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-amber);
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 20px;
}

.fh-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

.feature-highlight-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 14px;
  color: var(--text-main);
}

.feature-highlight-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 22px;
}
.feature-highlight-card > p strong {
  color: var(--text-main);
  font-weight: 600;
}

.fh-bullets {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fh-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.bullet-check {
  color: var(--accent-emerald);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.fh-metrics {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}
.fh-metric {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.fh-metric-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fh-metric span:last-child {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 500;
}

/* --- 9-card grid (3 columns) --- */
.features-grid-3 {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px;
  padding: 0 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 0;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: border-color 0.3s, box-shadow 0.3s;
  will-change: transform;
}
.feature-card:hover {
  border-color: rgba(99,102,241,0.35);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(99,102,241,0.15);
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent-cyan));
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover::after { opacity: 1; }

.feature-card-inner {
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--text-main);
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}
.feature-card p strong { color: var(--text-main); font-weight: 600; }
.feature-card p code {
  font-family: monospace;
  font-size: 0.8rem;
  background: rgba(99,102,241,0.12);
  color: var(--accent-cyan);
  padding: 1px 5px;
  border-radius: 4px;
}

/* Feature badge (top-right pill) */
.feature-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}
.badge-new {
  background: rgba(99,102,241,0.15);
  color: var(--primary);
  border: 1px solid rgba(99,102,241,0.25);
}
.badge-hot {
  background: rgba(245,158,11,0.12);
  color: var(--accent-amber);
  border: 1px solid rgba(245,158,11,0.2);
}

/* Feature tag pills */
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.feature-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-dim);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 3px 10px;
  letter-spacing: 0.03em;
}

/* Feature icon in card */
.feature-card .feature-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

/* Icon color variants */
.icon-indigo { background: rgba(99,102,241,0.15); color: var(--primary); }
.icon-cyan    { background: rgba(6,182,212,0.15);  color: var(--accent-cyan); }
.icon-emerald { background: rgba(16,185,129,0.15); color: var(--accent-emerald); }
.icon-amber   { background: rgba(245,158,11,0.15); color: var(--accent-amber); }
.icon-rose    { background: rgba(239,68,68,0.15);  color: var(--accent-rose); }
.icon-purple  { background: rgba(139,92,246,0.15); color: var(--accent-purple); }

/* ============================================================
   FEATURE COMPARISON BANNER
   ============================================================ */
.feature-compare-banner {
  max-width: 1200px;
  margin: 56px auto 0;
  padding: 0 40px;
  background: var(--bg-card);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.feature-compare-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at left center, rgba(99,102,241,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.compare-left {
  padding: 40px 0 40px 40px;
}
.compare-left h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
}
.compare-left p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.compare-left p strong { color: var(--text-main); }

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 32px 32px 32px 0;
}
.compare-col { display: flex; flex-direction: column; gap: 0; }
.compare-col-header {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 8px 8px 0 0;
  margin-bottom: 2px;
}
.compare-col-header.bad  { background: rgba(239,68,68,0.12); color: var(--accent-rose); }
.compare-col-header.good { background: rgba(16,185,129,0.12); color: var(--accent-emerald); }

.compare-item {
  padding: 10px 14px;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  line-height: 1.45;
}
.compare-item.bad  { color: var(--text-dim); }
.compare-item.good { color: var(--text-muted); font-weight: 500; }
.compare-item:last-child { border-bottom: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .feature-highlight-row { grid-template-columns: 1fr; padding: 0 24px; }
  .features-grid-3 { grid-template-columns: repeat(2, 1fr) !important; padding: 0 24px; }
  .feature-compare-banner { grid-template-columns: 1fr; }
  .compare-left { padding: 32px 32px 0; }
  .compare-grid { padding: 20px 32px 32px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { display: none; }
}
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 120px 20px 60px; }
  .hero-title { font-size: 2.2rem; }
  .features, .how-it-works, .pricing, .testimonials, .about, .cta-section { padding: 60px 20px; }
  .features-grid-3 { grid-template-columns: 1fr !important; padding: 0 20px; }
  .feature-highlight-row { padding: 0 20px; }
  .feature-compare-banner { margin: 40px 20px 0; }
  .compare-left { padding: 24px 24px 0; }
  .compare-grid { grid-template-columns: 1fr; padding: 16px 24px 24px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; gap: 0; }
  .step-connector { width: 2px; height: 30px; margin: 0 auto; }
  .footer-inner { flex-direction: column; gap: 30px; }
  .footer-links { gap: 30px; flex-wrap: wrap; }
  .about-values { grid-template-columns: 1fr; }
  .fh-metrics { gap: 16px; }
}
