/* === Variables === */
:root {
  /* Core Dark Theme */
  --bg-page: #09090b;
  --bg-dark: #050505;
  --bg-card: rgba(255, 255, 255, 0.03);

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-tertiary: #9a9aa3;
  --text-on-dark: #ffffff;

  /* Accents */
  --accent: #3b82f6;
  /* Electric Blue */
  --accent-light: rgba(59, 130, 246, 0.15);
  --accent-dark: #2563eb;
  --accent-purple: #8b5cf6;
  --accent-green-dark: #34d399;

  /* Borders & Effects */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --glass-blur: blur(16px);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-page);
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

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

.relative {
  position: relative;
}

/* === Ambient Background === */
.ambient-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: float 20s infinite ease-in-out alternate;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
  bottom: 20%;
  right: -50px;
  animation-delay: -5s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.2) 0%, transparent 70%);
  top: 40%;
  left: 30%;
  animation-delay: -10s;
}

/* === Typography Utilities === */
.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* === Glassmorphism Utilities === */
.glass-panel {
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
}

.glass-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--glass-shadow);
  border-radius: 20px;
}

.glass-badge {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
}

.glass-btn {
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle) !important;
}

/* === Animations === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(30px, -30px);
  }

  100% {
    transform: translate(-20px, 20px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.hover-lift {
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(59, 130, 246, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.pulse {
  animation: pulse 2s infinite;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
}

.btn:hover::after {
  left: 100%;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--accent);
  color: var(--text-on-dark);
  box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.39);
}

.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.23);
}

.btn-glow {
  position: relative;
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--accent), var(--accent-purple), var(--accent));
  z-index: -1;
  border-radius: 14px;
  filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-glow:hover::before {
  opacity: 0.8;
}

.btn-secondary {
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

.btn-sm {
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 10px;
}

.arrow {
  transition: transform 0.3s ease;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

/* === Header === */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 80px;
  position: sticky;
  top: 16px;
  margin: 0 24px;
  z-index: 100;
  border-radius: 100px;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s, text-shadow 0.2s;
}

.nav-links a:hover {
  color: var(--text-primary);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-toggle {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-tertiary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
}

.lang-toggle:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  position: fixed;
  top: 80px;
  left: 24px;
  right: 24px;
  border-radius: 20px;
  z-index: 99;
}

.mobile-nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 12px;
  border-radius: 12px;
  transition: background 0.2s, color 0.2s;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

.mobile-nav.open {
  display: flex;
  animation: fadeInUp 0.3s ease forwards;
}

/* === Hero === */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 24px 60px;
  gap: 60px;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 800px;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
}

.hero-sub {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
}

.screenshot-stack {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 560px;
  perspective: 1000px;
}

.screenshot {
  position: absolute;
  border-radius: 16px;
  width: 75%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.screenshot-back {
  left: 0;
  top: 40px;
  z-index: 1;
  transform: rotateY(5deg) scale(0.95);
  opacity: 0.7;
}

.screenshot-front {
  right: 0;
  top: 0;
  z-index: 2;
  transform: rotateY(-5deg) scale(1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.screenshot-stack:hover .screenshot-back {
  transform: rotateY(0deg) scale(0.98) translateX(-10px);
  opacity: 0.9;
}

.screenshot-stack:hover .screenshot-front {
  transform: rotateY(0deg) scale(1.02) translateX(10px);
}

/* === Sections shared === */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
}

.section-header h2 {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  text-align: center;
}

.section-header p {
  font-size: 18px;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.6;
  max-width: 500px;
}

/* === Features === */
.features {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 24px;
  gap: 56px;
  position: relative;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1200px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all 0.3s ease;
}

.icon-glow {
  position: relative;
}

.icon-glow::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--accent);
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  background: var(--accent);
  color: #fff;
}

.feature-card:hover .icon-glow::after {
  opacity: 0.3;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
}

.feature-card p {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* === How It Works === */
.how-it-works {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 24px;
  gap: 64px;
  position: relative;
}

.steps-row {
  display: flex;
  gap: 48px;
  width: 100%;
  max-width: 1000px;

  /* ensure step children stacking context works */
  position: relative;
}

.step-connector {
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  z-index: 0;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 24px;
  border-radius: 20px;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: var(--text-on-dark);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  position: relative;
}

.glass-ring::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: pulse 3s infinite;
}

.step h3 {
  font-size: 22px;
  font-weight: 600;
}

.step p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* === Pricing === */
.pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 24px;
  gap: 56px;
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  width: 100%;
  max-width: 1400px;
  align-items: center;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px;
}

.pricing-card--featured {
  border: 1px solid var(--accent);
  position: relative;
  transform: scale(1.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(59, 130, 246, 0.15);
}

.pricing-card--featured:hover {
  transform: scale(1.08) translateY(-8px);
}

.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 100px;
  letter-spacing: 1px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.4);
}

.pricing-card h3 {
  font-size: 24px;
  font-weight: 600;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-price .amount {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
}

.pricing-price .period {
  font-size: 16px;
  color: var(--text-secondary);
}

.pricing-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  list-style: none;
}

.pricing-features li svg {
  flex-shrink: 0;
  color: var(--accent);
}

.pricing-card .btn {
  width: 100%;
  font-size: 16px;
  padding: 16px;
  margin-top: 8px;
}

.pricing-trial {
  font-size: 16px;
  color: var(--text-secondary);
  text-align: center;
}

.pricing-trial a {
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}

.pricing-trial a:hover {
  color: var(--accent);
}

/* === FAQ === */
.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 24px;
  gap: 56px;
  position: relative;
}

.faq-list {
  width: 100%;
  max-width: 800px;
  padding: 0 40px;
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 36px;
  left: -24px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s;
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-item--last {
  border-bottom: none;
}

.faq-item h3 {
  font-size: 20px;
  font-weight: 600;
}

.faq-item p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* === Final CTA === */
.final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 24px;
  margin: 0 24px 60px;
  border-radius: 30px;
  gap: 32px;
  text-align: center;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
  z-index: -1;
}

.final-cta h2 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  max-width: 600px;
}

.final-cta p {
  font-size: 18px;
  color: #c8c8d0;
  line-height: 1.6;
  max-width: 500px;
}

/* === Contact Form === */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 560px;
  text-align: left;
}

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

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

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.glass-input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 16px;
  color: var(--text-primary);
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}

.glass-input:focus {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.glass-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.consent-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-primary);
  cursor: pointer;
  line-height: 1.5;
}

.consent-label input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}

.consent-notice {
  font-size: 12px;
  color: var(--text-tertiary);
  line-height: 1.6;
}

.contact-submit {
  align-self: flex-start;
  margin-top: 4px;
}

.contact-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  animation: fadeInUp 0.4s ease;
}

.result-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.result-icon--success {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.result-icon--error {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.contact-result h3 {
  font-size: 24px;
  font-weight: 700;
}

.contact-result p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 400px;
}

/* === Footer === */
.footer {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 64px 80px;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 300px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 1px;
}

.footer-col a {
  font-size: 15px;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.footer-copyright {
  font-size: 14px;
  color: var(--text-tertiary);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .header {
    padding: 16px 32px;
    margin: 0 16px;
  }

  .hero {
    padding: 80px 24px 40px;
  }

  .hero-title {
    font-size: 52px;
  }

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

  .screenshot-stack {
    height: 480px;
  }

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

  .pricing-card--featured {
    transform: scale(1);
    grid-column: span 2;
  }

  .pricing-card--featured:hover {
    transform: translateY(-8px);
  }

  .footer {
    padding: 64px 32px;
  }

  .final-cta {
    margin: 0 16px 40px;
  }
}

@media (max-width: 768px) {
  .header {
    margin: 0;
    border-radius: 0;
    padding: 16px 24px;
    background: rgba(15, 15, 15, 0.9);
  }

  .nav-links,
  .header-right {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    padding: 60px 24px 40px;
    gap: 40px;
  }

  .hero-title {
    font-size: 40px;
    letter-spacing: -1px;
  }

  .hero-sub {
    font-size: 18px;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .screenshot-stack {
    height: 320px;
  }

  .screenshot {
    width: 85%;
  }

  .screenshot-back {
    top: 20px;
  }

  .section-header h2 {
    font-size: 32px;
  }

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

  .steps-row {
    flex-direction: column;
    gap: 32px;
  }

  .step-connector {
    display: none;
  }

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

  .pricing-card--featured {
    grid-column: span 1;
  }

  .faq-list {
    padding: 0 16px;
  }

  .final-cta {
    padding: 64px 24px;
    margin: 0 16px 40px;
  }

  .final-cta h2 {
    font-size: 36px;
  }

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

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    flex-direction: column;
    gap: 40px;
  }
}