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

:root {
  --black: #0a0a0a;
  --dark: #141414;
  --dark-card: #1a1a1a;
  --gray-800: #2a2a2a;
  --gray-600: #555;
  --gray-400: #999;
  --gray-200: #ccc;
  --white: #f5f5f5;
  --blue: #00b754;
  --blue-glow: rgba(0, 203, 93, 0.15);
  --blue-deep: #00a64a;
  --red-accent: #C9524A;
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Space Grotesk', monospace;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* --- Utility --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* --- Animated Grain Overlay --- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* --- Navigation --- */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(10, 10, 10, 0.7);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}
nav .nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center;
  text-decoration: none; color: var(--white);
}
.nav-logo img { height: 28px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  color: var(--gray-400); text-decoration: none;
  font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.02em; text-transform: uppercase;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.btn-cta { color: #fff; }
.nav-links a.btn-cta:hover { color: #fff; }
.btn-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--blue);
  color: #fff; padding: 0.75rem 1.75rem;
  border-radius: 50px; text-decoration: none;
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.9rem; border: none; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 30px rgba(0, 203, 93, 0.2);
  letter-spacing: 0.01em;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(0, 203, 93, 0.35);
  background: #29ca6e;
}
.btn-cta svg { width: 16px; height: 16px; }

/* --- Hero --- */
.hero {
  min-height: auto;
  display: flex; align-items: center;
  padding: 9rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse-glow 6s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(0, 203, 93, 0.1);
  border: 1px solid rgba(0, 203, 93, 0.25);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease both;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s 0.1s ease both;
}
.hero h1 em {
  font-style: italic;
  color: var(--blue);
}
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--gray-400);
  max-width: 480px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.hero-actions {
  display: flex; align-items: center; gap: 1.5rem;
  animation: fadeInUp 0.8s 0.3s ease both;
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--gray-200); text-decoration: none;
  font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 1.75rem;
  border: 1px solid var(--gray-800);
  border-radius: 50px;
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: var(--gray-600);
  color: #fff;
}
.hero-visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  animation: fadeInUp 0.8s 0.4s ease both;
}
.hero-visual-card {
  width: 100%; max-width: 500px;
  aspect-ratio: 4/3;
  background: #000;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0,0,0,0.5), 0 0 60px rgba(0,203,93,0.1);
}
/* --- Hero Video Card --- */
.hero-video-card {
  width: 100%; max-width: 560px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0,0,0,0.5), 0 0 60px rgba(0,203,93,0.1);
}
.hero-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video-card .video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,203,93,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.floating-stat {
  position: absolute;
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  z-index: 3;
  backdrop-filter: blur(10px);
}
.floating-stat.stat-1 {
  top: -10px; right: -20px;
  animation: float 4s ease-in-out infinite;
}
.floating-stat.stat-2 {
  bottom: 20px; left: -30px;
  animation: float 4s 1s ease-in-out infinite;
}
.floating-stat .stat-label {
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gray-400);
  font-family: var(--font-mono);
}
.floating-stat .stat-value {
  font-family: var(--font-mono);
  font-size: 1.5rem; font-weight: 700;
  color: var(--blue);
  margin-top: 0.25rem;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* --- Ticker / Social Proof Bar --- */
.proof-bar {
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem 0;
  overflow: hidden;
  background: rgba(20,20,20,0.5);
}
.proof-bar-inner {
  display: flex; align-items: center; gap: 3rem;
  justify-content: center; flex-wrap: wrap;
}
.proof-item {
  display: flex; align-items: center; gap: 0.75rem;
  color: var(--gray-400);
  font-size: 0.85rem;
  font-family: var(--font-mono);
  white-space: nowrap;
}
.proof-item svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; }

/* --- Shared Section Styles --- */
.landing-section {
  padding: 6rem 0;
  position: relative;
}

/* --- Problem Section --- */
.section-problem::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}
.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--blue);
}
.problem-heading {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: 3rem;
}
.problem-heading em { font-style: italic; color: var(--red-accent); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.problem-card {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--red-accent), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.problem-card:hover::before { opacity: 1; }
.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.1);
}
.problem-card .card-icon {
  width: 48px; height: 48px;
  background: rgba(232, 69, 60, 0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--red-accent);
}
.problem-card h3 {
  font-family: var(--font-mono);
  font-size: 1.15rem; font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.problem-card p {
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* --- Solution Section --- */
/* section-solution uses .landing-section */
.solution-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.solution-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.solution-intro h2 em { font-style: italic; color: var(--blue); }
.solution-intro p {
  color: var(--gray-400);
  font-size: 1.05rem;
  line-height: 1.7;
}
.how-it-works {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 3rem;
}
.step-card {
  background: var(--dark);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.3s;
}
.step-card:hover { background: var(--dark-card); }
.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--blue);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.step-card h3 {
  font-family: var(--font-mono);
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 0.5rem;
}
.step-card .step-sub {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  font-family: var(--font-mono);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.step-card p {
  color: var(--gray-400);
  font-size: 0.85rem;
  line-height: 1.6;
}
.step-arrow {
  position: absolute;
  right: -8px; top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: var(--blue);
}

/* --- Screenshot Display --- */
.screenshot-display {
  max-width: 900px;
  margin: 0 auto 3rem;
  border-radius: 20px;
  overflow: hidden;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 25px 80px rgba(0,0,0,0.4), 0 0 60px rgba(0,203,93,0.08);
}
.screenshot-display img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Screenshot Gallery --- */
.screenshot-gallery {
  margin: 3rem 0;
}
.gallery-header {
  text-align: center;
  margin-bottom: 2rem;
}
.gallery-header h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}
.gallery-header h3 em { font-style: italic; color: var(--blue); }
.gallery-header p {
  color: var(--gray-400);
  font-size: 0.95rem;
}
.gallery-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 1rem 2rem 2rem;
  margin: 0 -2rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-item {
  flex: 0 0 auto;
  width: min(400px, 80vw);
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  scroll-snap-align: center;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s, border-color 0.3s;
  cursor: pointer;
}
.gallery-item:hover {
  transform: scale(1.02);
  border-color: rgba(0, 203, 93, 0.3);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-800);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  padding: 0;
}
.gallery-dot:hover { background: var(--gray-600); }
.gallery-dot.active {
  background: var(--blue);
  transform: scale(1.25);
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  cursor: zoom-out;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 25px 80px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.25s;
}
.lightbox-close:hover { color: var(--white); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav.prev { left: 2rem; }
.lightbox-nav.next { right: 2rem; }

/* --- Features Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 203, 93, 0.2);
}
.feature-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.feature-card:hover::after { opacity: 1; }
.feature-icon {
  width: 48px; height: 48px;
  background: var(--blue-glow);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--blue);
}
.feature-card h3 {
  font-family: var(--font-mono);
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 0.75rem;
}
.feature-card p {
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* --- Quote Divider --- */
.quote-section {
  padding: 4rem 0; /* smaller than landing-section */
}
.quote-section::before, .quote-section::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}
.quote-section::before { top: 0; }
.quote-section::after { bottom: 0; }
.quote-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--blue);
  opacity: 0.5;
  margin-bottom: -1rem;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.quote-author {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--gray-400);
  letter-spacing: 0.05em;
}

/* --- Pricing Section --- */
/* section-pricing uses .landing-section */
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.pricing-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.pricing-text h2 em { font-style: italic; color: var(--blue); }
.pricing-text > p {
  color: var(--gray-400);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.pricing-perks {
  list-style: none;
  display: flex; flex-direction: column; gap: 1rem;
}
.pricing-perks li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  color: var(--gray-200);
  font-size: 0.95rem;
  line-height: 1.5;
}
.pricing-perks li svg {
  width: 20px; height: 20px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-card {
  background: var(--dark);
  border: 1px solid rgba(0, 203, 93, 0.2);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-deep));
}
.pricing-card-badge {
  display: inline-block;
  background: rgba(0, 203, 93, 0.12);
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 2rem;
}
.pricing-amount {
  font-family: var(--font-mono);
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-amount span {
  font-size: 1.25rem;
  color: var(--gray-400);
  font-weight: 500;
}
.pricing-period {
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.pricing-card .btn-cta {
  width: 100%;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
}
.pricing-note {
  color: var(--gray-600);
  font-size: 0.8rem;
  margin-top: 1.25rem;
  line-height: 1.5;
}

/* --- CTA Section --- */
.section-cta {
  text-align: center;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; }
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.cta-inner h2 em { font-style: italic; color: var(--blue); }
.cta-inner > p {
  color: var(--gray-400);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.cta-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem;
}
.cta-contact {
  margin-top: 2.5rem;
  color: var(--gray-600);
  font-size: 0.85rem;
}
.cta-contact a {
  color: var(--gray-400);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --- Footer --- */
footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--gray-400);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}
.footer-brand img { height: 30px; width: auto; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  color: var(--gray-600);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--gray-400); }

.footer-legal {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}
.footer-legal p {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  line-height: 1.6;
  margin: 0 0 0.75rem 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.footer-legal p:first-child {
  color: rgba(255,255,255,0.8);
}
.footer-legal p:last-child {
  margin-bottom: 0;
}

/* --- Contact Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 2.5rem;
  width: 90%;
  max-width: 480px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.modal-overlay.active .modal {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.25s;
}
.modal-close:hover { color: var(--white); }
.modal h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.modal > p {
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 0.875rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.25s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.modal .btn-cta {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}
.form-success {
  text-align: center;
  padding: 2rem 0;
}
.form-success svg {
  width: 64px;
  height: 64px;
  color: var(--blue);
  margin-bottom: 1rem;
}
.form-success h4 {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.form-success p {
  color: var(--gray-400);
  font-size: 0.9rem;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { margin-top: 3rem; }
  .how-it-works { grid-template-columns: repeat(2, 1fr); }
  .pricing-layout { grid-template-columns: 1fr; text-align: center; }
  .pricing-perks { align-items: center; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { padding: 7rem 0 4rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .how-it-works { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .floating-stat { display: none; }
  .proof-bar-inner { gap: 1.5rem; }
  .cta-actions { flex-direction: column; }
  .gallery-item { width: min(320px, 85vw); }
  .gallery-dots { display: none; }
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-nav.prev { left: 1rem; }
  .lightbox-nav.next { right: 1rem; }
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 2rem;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-banner p {
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.5;
  flex: 1;
  min-width: 280px;
}
.cookie-banner p a {
  color: var(--gray-200);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}
.cookie-btn-accept {
  background: var(--blue);
  color: #fff;
  border: none;
}
.cookie-btn-accept:hover {
  background: #29ca6e;
}
.cookie-btn-decline {
  background: transparent;
  color: var(--gray-400);
  border: 1px solid var(--gray-800);
}
.cookie-btn-decline:hover {
  border-color: var(--gray-600);
  color: var(--gray-200);
}
@media (max-width: 600px) {
  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
  }
  .cookie-banner-actions {
    width: 100%;
    justify-content: center;
  }
}
