/* ============================================================
   Asorio — Landing Page
   Colors: Teal #14b8a6, Dark #0c0f1a
   Font: Inter (Google Fonts)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

:root {
  --primary-400: #2dd4bf;
  --primary-500: #14b8a6;
  --primary-600: #0d9488;
  --primary-700: #0f766e;

  --surface-0: #0c0f1a;
  --surface-1: #111525;
  --surface-2: #181d30;
  --surface-3: #1e2440;

  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --green-400: #4ade80;
  --amber-400: #fbbf24;
  --red-400: #f87171;

  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition: 200ms ease;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-secondary);
  background: var(--surface-0);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior: none;
}

a { color: var(--primary-400); text-decoration: none; transition: color var(--transition); }
a:hover { color: #5eead4; }

:focus-visible { outline: 2px solid var(--primary-500); outline-offset: 2px; }

img, svg { display: block; }

/* -- Layout ------------------------------------------------- */
.container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 740px; }

/* -- Keyframes ---------------------------------------------- */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -15px) scale(1.03); }
  66% { transform: translate(-15px, 10px) scale(0.97); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

@keyframes grow-line {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* -- Animations --------------------------------------------- */
.anim-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-fade.visible { opacity: 1; transform: translateY(0); }

.anim-grow {
  transform-origin: top center;
  transform: scaleY(0);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-grow.visible { transform: scaleY(1); }

/* -- Buttons ------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  min-height: 44px; /* Touch target */
}

.btn-primary {
  background: var(--primary-500);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(20, 184, 166, 0);
}
.btn-primary:hover {
  background: var(--primary-400);
  color: #fff;
  box-shadow: 0 4px 24px rgba(20, 184, 166, 0.4);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.12) 50%, transparent 100%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity var(--transition);
}
.btn-primary:hover::after { opacity: 1; animation: shimmer 2s infinite; }

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.btn-ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-xl { padding: 1rem 2.5rem; font-size: 1.05rem; border-radius: 12px; }
.btn-block { width: 100%; }

/* -- Navigation --------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0.75rem 0;
  background: transparent;
  transition: all 300ms ease;
}
.nav-scrolled {
  background: rgba(12, 15, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; gap: 2rem;
}
.nav-brand {
  display: flex; align-items: center; gap: 0.6rem;
  color: #fff; font-size: 1.15rem; font-weight: 700;
  text-decoration: none; flex-shrink: 0;
}
.nav-brand:hover { color: #fff; }

.nav-logo {
  height: 36px;
  width: auto;
  display: block;
}
.footer-logo {
  height: 28px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex; align-items: center; gap: 1.75rem;
  list-style: none; margin-left: auto;
}
.nav-links a {
  color: var(--text-muted); font-size: 0.88rem; font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: #fff; }

.nav-cta { flex-shrink: 0; padding: 0.5rem 1.25rem; font-size: 0.85rem; }

/* -- Hamburger Menu ----------------------------------------- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* -- Hero --------------------------------------------------- */
.hero {
  position: relative;
  padding: 10rem 0 6rem;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-glow {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none; z-index: 0;
}
.glow {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: 0.25;
  animation: float 20s ease-in-out infinite;
}
.glow-1 {
  width: 500px; height: 500px;
  background: var(--primary-600);
  top: -15%; left: 50%;
  animation-duration: 25s;
}
.glow-2 {
  width: 350px; height: 350px;
  background: #0d9488;
  bottom: 0; left: -5%;
  animation-delay: -8s; animation-duration: 22s;
}
.glow-3 {
  width: 250px; height: 250px;
  background: var(--primary-500);
  top: 30%; right: -5%;
  animation-delay: -15s; animation-duration: 30s;
}

.hero-grid-bg {
  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;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, black 20%, transparent 70%);
  pointer-events: none; z-index: 0;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 1rem 0.35rem 0.75rem;
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 999px;
  font-size: 0.82rem; font-weight: 500;
  color: var(--primary-400);
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green-400);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-400) 0%, #5eead4 50%, var(--primary-400) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 520px;
}

.hero-ctas {
  display: flex; gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex; align-items: center; gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat { display: flex; flex-direction: column; }
.stat-number {
  font-size: 2rem; font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  display: inline;
}
.stat-suffix {
  font-size: 1.5rem; font-weight: 700;
  color: var(--primary-400);
}
.stat-label {
  font-size: 0.78rem; color: var(--text-muted);
  margin-top: 0.3rem; line-height: 1.4;
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* -- Hero Mockup -------------------------------------------- */
.hero-mockup {
  position: absolute;
  right: max(calc(50% - 560px), 2rem);
  top: 12rem;
  z-index: 1;
  width: 360px;
}

.mockup-window {
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(20, 184, 166, 0.08);
}

.mockup-dots {
  display: flex; gap: 6px;
  padding: 12px 16px;
  background: var(--surface-1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mockup-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.mockup-dots span:first-child { background: #f87171; }
.mockup-dots span:nth-child(2) { background: #fbbf24; }
.mockup-dots span:last-child { background: #4ade80; }

.mockup-body { padding: 1.25rem 1.5rem 1.5rem; }

.mockup-header-row {
  display: flex; justify-content: space-between; align-items: flex-start;
}
.mockup-brand { display: flex; align-items: center; gap: 0.6rem; }

.mockup-logo {
  width: 28px; height: 28px;
  background: var(--primary-500);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.8rem; color: #fff;
}

.mockup-title { font-weight: 700; color: var(--text-primary); font-size: 0.95rem; }
.mockup-subtitle { font-size: 0.75rem; color: var(--primary-400); font-weight: 600; }
.mockup-date { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

.mockup-divider { height: 1px; background: rgba(255, 255, 255, 0.06); margin: 0.75rem 0; }
.mockup-divider-accent { height: 2px; background: linear-gradient(90deg, var(--primary-500), transparent); }

.mockup-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.35rem 0;
  font-size: 0.82rem; color: var(--text-secondary);
}
.mockup-amount { font-weight: 600; color: var(--text-primary); }

.mockup-total { font-weight: 700; font-size: 0.95rem; color: var(--text-primary); }
.mockup-total .mockup-amount { color: var(--primary-400); font-size: 1.1rem; }

.mockup-badges {
  display: flex; gap: 0.4rem; margin-top: 0.75rem; flex-wrap: wrap;
}
.mockup-badge {
  padding: 0.2rem 0.6rem;
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 999px;
  font-size: 0.68rem; font-weight: 600;
  color: var(--primary-400);
}
.mockup-badge-green {
  background: rgba(74, 222, 128, 0.1);
  border-color: rgba(74, 222, 128, 0.2);
  color: var(--green-400);
}

/* Mockup line item animations */
.item-anim {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: calc(0.6s + var(--i) * 0.15s);
}
.item-anim.item-visible {
  opacity: 1;
  transform: translateX(0);
}

/* -- Trust Bar ---------------------------------------------- */
.trust-bar {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.01);
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 500;
  color: var(--text-muted);
}
.trust-item svg { color: var(--primary-400); flex-shrink: 0; }

/* -- Section Headers ---------------------------------------- */
.section { padding: 5rem 0; }
.section-dark { background: var(--surface-1); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-tag {
  display: inline-block;
  padding: 0.25rem 0.9rem;
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: 999px;
  font-size: 0.78rem; font-weight: 600;
  color: var(--primary-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.section-title {
  font-size: 2.2rem; font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-top: 0.75rem;
  max-width: 500px;
  margin-left: auto; margin-right: auto;
}

/* -- Pain Points -------------------------------------------- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.pain-card {
  background: var(--surface-1);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
}
.pain-card:hover {
  border-color: rgba(20, 184, 166, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.pain-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 12px;
  color: var(--primary-400);
  margin-bottom: 1rem;
}
.pain-icon-warn {
  background: rgba(251, 191, 36, 0.1);
  color: var(--amber-400);
}
.pain-icon-danger {
  background: rgba(248, 113, 113, 0.1);
  color: var(--red-400);
}

.pain-card h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.pain-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* -- Feature Grid ------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: rgba(20, 184, 166, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 10px;
  color: var(--primary-400);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* -- Steps -------------------------------------------------- */
.steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  width: 100%;
  padding: 0.5rem 0;
}

.step-number {
  width: 48px; height: 48px;
  min-width: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-500);
  color: #fff;
  font-size: 1.15rem; font-weight: 800;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(20, 184, 166, 0.3);
}
.step-number span { position: relative; z-index: 1; }

.step-content { padding-top: 0.25rem; }
.step h3 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}
.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-line {
  width: 2px; height: 40px;
  background: linear-gradient(180deg, var(--primary-500), rgba(20, 184, 166, 0.1));
  margin-left: 23px;
  border-radius: 1px;
  transform-origin: top center;
}

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

.pricing-card {
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card-popular {
  border-color: var(--primary-500);
  background: linear-gradient(180deg, rgba(20, 184, 166, 0.08) 0%, var(--surface-2) 100%);
  box-shadow: 0 0 40px rgba(20, 184, 166, 0.08);
  transform: scale(1.04);
  z-index: 1;
}
.pricing-card-popular:hover { transform: scale(1.04) translateY(-3px); }

.pricing-popular-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 1rem;
  background: var(--primary-500);
  color: #fff;
  border-radius: 999px;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.02em;
}

.pricing-name {
  font-size: 1rem; font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.pricing-price {
  font-size: 3rem; font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pricing-price span {
  font-size: 0.95rem; font-weight: 400;
  color: var(--text-muted);
}
.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 1.75rem;
}
.pricing-features li {
  padding: 0.4rem 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex; align-items: center; gap: 0.5rem;
}
.pricing-features li::before {
  content: '';
  width: 18px; height: 18px;
  min-width: 18px;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232dd4bf' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* -- FAQ ---------------------------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.faq-item:first-child { border-top: 1px solid rgba(255, 255, 255, 0.06); }

.faq-item summary {
  padding: 1.15rem 0;
  font-size: 1rem; font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem; font-weight: 300;
  color: var(--text-muted);
  transition: all var(--transition);
  flex-shrink: 0; margin-left: 1rem;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.faq-item[open] summary::after {
  content: '\2212';
  color: var(--primary-400);
  background: rgba(20, 184, 166, 0.1);
  transform: rotate(180deg);
}

.faq-item summary:hover { color: var(--text-primary); }
.faq-item[open] summary { color: var(--primary-400); }

.faq-answer { padding: 0 0 1.15rem; }
.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* -- CTA Section -------------------------------------------- */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: var(--surface-1);
}

.cta-glow {
  position: absolute;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

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

.cta-content h2 {
  font-size: 2.5rem; font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.cta-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto; margin-right: auto;
}

.cta-note {
  display: block;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* -- Footer ------------------------------------------------- */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.footer-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem;
}
.footer-brand {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.85rem; color: var(--text-muted);
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  color: var(--text-muted); font-size: 0.82rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--primary-400); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.2); }
.footer-b2b { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 0.5rem; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

@media (max-width: 1200px) {
  .hero-mockup { display: none; }
  .hero-content { max-width: 100%; }
}

@media (max-width: 1024px) {
  .feature-grid,
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { padding: 8rem 0 4rem; }
  .hero h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 1.05rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero-stats { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .stat-divider { width: 40px; height: 1px; }
  .stat { flex-direction: row; align-items: center; gap: 0.75rem; }

  .nav-links { display: none; }
  .nav-links.nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(12, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 1.5rem;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transform-origin: top center;
    animation: slide-up 0.25s ease-out;
  }
  .nav-hamburger { display: flex; }
  .nav-cta { min-height: 44px; }

  .section { padding: 3.5rem 0; }
  .section-title { font-size: 1.7rem; }

  .pain-grid,
  .feature-grid,
  .pricing-grid { grid-template-columns: 1fr; }
  .pain-card:last-child { max-width: none; }

  .pricing-card { margin-top: 20px; }
  .pricing-card:first-child { margin-top: 0; }
  .pricing-card-popular { transform: none; }
  .pricing-card-popular:hover { transform: translateY(-3px); }

  /* Trust bar column layout at 768px */
  .trust-items { flex-direction: column; gap: 0.75rem; align-items: center; }
  .trust-item { font-size: 0.78rem; }

  .cta-content h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  html { font-size: 15px; }
  .hero { padding: 5rem 0 2rem; }
  .hero h1 { font-size: 1.75rem; }
  .hero-badge { flex-wrap: wrap; }
  .btn-lg svg { width: 16px; height: 16px; }
  .nav-inner { padding: 0 1rem; }
  .container { padding: 0 1rem; }
  .section { padding: 2.5rem 0; }
  .pain-card, .feature-card, .pricing-card { padding: 1.25rem; }

  /* CTA button full width */
  .btn-xl { width: 100%; padding: 0.85rem 1.5rem; font-size: 0.95rem; }

  /* Stats vertical layout */
  .hero-stats { flex-direction: column; gap: 1.25rem; align-items: flex-start; }
  .stat-divider { width: 40px; height: 1px; }

  /* Pricing price size */
  .pricing-price { font-size: 2.2rem; }

  /* FAQ answer text */
  .faq-answer p { font-size: 0.85rem; }

  /* CTA heading */
  .cta-content h2 { font-size: 1.5rem; }
  .cta-content p { max-width: 100%; }
}

@media (max-width: 375px) {
  html { font-size: 14px; }
  h1 { font-size: 1.5rem; }
  .container { padding: 0 0.75rem; }
  .section { padding: 2rem 0; }
}

/* -- Reduced Motion ----------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .anim-fade, .anim-grow { opacity: 1; transform: none; }
  .item-anim { opacity: 1; transform: none; }
  .gradient-text { animation: none; }
}
