/* SpeakEase – Landing (teal & yellow theme) */
:root {
  --primary: #1C716E;
  --primary-light: #22ACAC;
  --primary-dark: #0B5C5A;
  --primary-glow: rgba(28, 113, 110, 0.35);
  --secondary: #22ACAC;
  --secondary-soft: rgba(34, 172, 172, 0.12);
  --accent: #F9A825;
  --accent-soft: rgba(249, 168, 37, 0.12);
  --white: #ffffff;
  --off-white: #F8FAFC;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-700: #334155;
  --gray-900: #0F172A;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow: 0 4px 20px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.06);
  --shadow-glow: 0 0 80px rgba(28, 113, 110, 0.15);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .hero-title, .section-title {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
}

/* Header */
.landing-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.875rem 1.5rem;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: all var(--transition);
}

.landing-header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

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

.cta-header {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 20px var(--primary-glow);
  transition: all var(--transition);
}

.cta-header:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px var(--primary-glow);
}

.btn-icon,
.cta-header .btn-icon {
  flex-shrink: 0;
}

/* Hero */
.hero {
  min-height: 100vh;
  padding: 7rem 1.5rem 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-blur {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  pointer-events: none;
}

.hero-bg-blur-1 {
  top: -200px;
  right: -100px;
  background: linear-gradient(135deg, rgba(28, 113, 110, 0.2) 0%, rgba(34, 172, 172, 0.15) 100%);
}

.hero-bg-blur-2 {
  bottom: -150px;
  left: -150px;
  background: linear-gradient(135deg, rgba(249, 168, 37, 0.15) 0%, rgba(28, 113, 110, 0.1) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 100% at 80% 0%, rgba(28, 113, 110, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 20% 100%, rgba(249, 168, 37, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231C716E' fill-opacity='0.02' fill-rule='evenodd'%3E%3Ccircle cx='40' cy='40' r='2'/%3E%3Ccircle cx='0' cy='0' r='1'/%3E%3Ccircle cx='80' cy='0' r='1'/%3E%3Ccircle cx='0' cy='80' r='1'/%3E%3Ccircle cx='80' cy='80' r='1'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
}

.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
  .hero-brand { align-items: center; text-align: center; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.125rem;
  background: linear-gradient(135deg, rgba(28, 113, 110, 0.08) 0%, rgba(249, 168, 37, 0.06) 100%);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(28, 113, 110, 0.15);
  animation: fadeInUp 0.6s ease;
}

.hero-badge-emoji {
  font-size: 1rem;
}

.hero-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.6s ease 0.1s both;
}

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

.hero-sub {
  font-size: 1.2rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
  max-width: 460px;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease 0.2s both;
}

@media (max-width: 900px) {
  .hero-sub { margin-left: auto; margin-right: auto; }
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.hero-stat:hover {
  border-color: rgba(28, 113, 110, 0.3);
  box-shadow: var(--shadow);
}

.hero-stat-icon {
  font-size: 1.2rem;
}

@media (max-width: 900px) {
  .hero-stats { justify-content: center; }
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.4s both;
}

@media (max-width: 900px) {
  .hero-buttons { justify-content: center; }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px var(--primary-glow);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Phone mockup */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float 6s ease-in-out infinite;
}

.phone-wrap::before {
  content: '';
  position: absolute;
  width: 360px;
  height: 720px;
  background: radial-gradient(ellipse at center, var(--primary-glow) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.7;
}

.phone-frame {
  width: 290px;
  height: 590px;
  background: linear-gradient(165deg, #1a1a1e 0%, #0d0d10 50%, #000 100%);
  border-radius: 44px;
  padding: 8px 10px 12px;
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(255,255,255,0.05),
    0 0 80px rgba(28, 113, 110, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--off-white);
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.phone-status-bar {
  flex: 0 0 auto;
  height: 44px;
  min-height: 44px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
  z-index: 1;
  position: relative;
  border-radius: 32px 32px 0 0;
}

.phone-status-left {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  justify-content: flex-start;
}
.phone-status-time {
  font-variant-numeric: tabular-nums;
  line-height: 1;
  font-size: 12px;
}

.phone-dynamic-island {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 25px;
  background: #000;
  border-radius: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
  box-sizing: border-box;
}
.phone-dynamic-island-camera {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(120, 80, 140, 0.6);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
}

.phone-status-right {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
  justify-content: flex-end;
}
.phone-status-icon {
  color: #fff;
  flex-shrink: 0;
  display: block;
}
.phone-status-signal { width: 14px; height: 9px; }
.phone-status-wifi  { width: 10px; height: 10px; }
.phone-status-battery {
  width: 20px;
  height: 9px;
  color: #fff;
}
.phone-hero-body { flex: 1; min-height: 0; position: relative; }
.phone-home-indicator {
  flex: 0 0 auto;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 8px;
}
.phone-home-indicator::before {
  content: '';
  width: 128px;
  height: 5px;
  background: #1d1d1f;
  border-radius: 3px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

.screen-slide {
  position: absolute;
  inset: 0;
  padding: 0;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
}
.screen-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.screen-slide.prev { transform: translateX(-20px); }
.screen-shot-wrap {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.screen-shot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.screen-shot-fallback { position: absolute; inset: 0; overflow: auto; }
.app-content {
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  flex: 1;
  min-height: 200px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

/* Feature pills (banner) */
.banner-strip {
  background: linear-gradient(135deg, var(--gray-900) 0%, #1e293b 50%, var(--gray-900) 100%);
  padding: 2.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.banner-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.banner-strip-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.banner-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  color: rgba(255,255,255,0.95);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: all var(--transition);
}

.banner-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.banner-item-icon {
  font-size: 1.2rem;
}

/* Features grid */
.features-section {
  padding: 5rem 1.5rem;
  background: var(--white);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.features-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .features-inner { grid-template-columns: 1fr; }
}

.feature-card {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: rgba(28, 113, 110, 0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.feature-card:nth-child(1) .feature-card-icon { background: var(--secondary-soft); }
.feature-card:nth-child(2) .feature-card-icon { background: rgba(28, 113, 110, 0.1); }
.feature-card:nth-child(3) .feature-card-icon { background: var(--accent-soft); }

.feature-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Screen sections */
.screens-intro {
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.screens-intro .section-title {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.screens-intro .section-title::after {
  content: '';
  display: block;
  width: 64px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 3px;
  margin: 1.25rem auto 0;
}

.screens-intro .section-sub {
  font-size: 1.15rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.screen-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.screen-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.screen-section:nth-child(odd) {
  background: var(--white);
}

.screen-section:nth-child(even) {
  background: var(--gray-50);
}

.screen-section:nth-child(even) .screen-mockup-wrap { order: 2; }
.screen-section:nth-child(even) .screen-copy { order: 1; }

@media (max-width: 900px) {
  .screen-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 1rem;
  }
  .screen-section:nth-child(even) .screen-mockup-wrap,
  .screen-section:nth-child(even) .screen-copy { order: unset; }
}

.screen-mockup-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.screen-mockup-wrap .phone-frame {
  width: 270px;
  height: 540px;
  border-radius: 40px;
  padding: 8px 10px 10px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.04);
}

.screen-mockup-wrap .phone-screen { border-radius: 34px; padding: 0; }
.screen-mockup-wrap .app-content {
  min-height: 0;
  padding: 14px;
  border-radius: 14px;
}

.screen-copy { padding: 0 1rem; }

.screen-copy .section-num {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.screen-copy h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.screen-copy p {
  color: var(--gray-500);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Mockups */
.mockup-home .mockup-greeting { font-size: 0.9rem; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.mockup-home .mockup-sub { font-size: 0.72rem; color: var(--gray-500); margin-bottom: 12px; }
.mockup-home .mockup-plan-label { font-size: 0.68rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.mockup-home .mockup-plan-item {
  height: 42px;
  background: var(--gray-100);
  border-radius: 12px;
  margin-bottom: 8px;
  border: 1px solid var(--gray-200);
}
.mockup-home .mockup-plan-item.active {
  background: var(--secondary-soft);
  border-color: rgba(34, 172, 172, 0.3);
}
.mockup-home .mockup-stats { display: flex; gap: 8px; margin-top: 12px; }
.mockup-home .mockup-stat { flex: 1; height: 38px; background: var(--gray-100); border-radius: 10px; }

.mockup-learn .mockup-section-label { font-size: 0.68rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.mockup-learn .mockup-lesson {
  height: 50px;
  background: var(--gray-100);
  border-radius: 12px;
  margin-bottom: 8px;
  border: 1px solid var(--gray-200);
}

.mockup-practice .mockup-chat-title { font-size: 0.85rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.mockup-practice .mockup-bubble {
  max-width: 88%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.7rem;
  margin-bottom: 8px;
}
.mockup-practice .mockup-bubble.user {
  align-self: flex-end;
  background: var(--primary);
  color: var(--white);
}
.mockup-practice .mockup-bubble.ai {
  align-self: flex-start;
  background: var(--gray-100);
  color: var(--gray-900);
}
.mockup-practice .mockup-input { height: 38px; background: var(--gray-100); border-radius: 12px; margin-top: 10px; }

.mockup-progress .mockup-label { font-size: 0.75rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.mockup-progress .mockup-bar { height: 10px; background: var(--gray-200); border-radius: 6px; margin-bottom: 12px; overflow: hidden; }
.mockup-progress .mockup-bar-fill { height: 100%; background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%); border-radius: 6px; width: 65%; }
.mockup-progress .mockup-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.mockup-progress .mockup-badge { padding: 6px 10px; font-size: 0.65rem; font-weight: 600; background: var(--gray-100); border-radius: 10px; color: var(--gray-700); }

.mockup-profile .mockup-avatar {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 800;
}
.mockup-profile .mockup-name { font-size: 0.85rem; font-weight: 700; text-align: center; margin-bottom: 2px; }
.mockup-profile .mockup-email { font-size: 0.65rem; color: var(--gray-500); text-align: center; margin-bottom: 12px; }
.mockup-profile .mockup-row {
  height: 38px;
  background: var(--gray-100);
  border-radius: 10px;
  margin-bottom: 8px;
}

/* CTA */
.cta-section {
  padding: 7rem 1.5rem;
  background: linear-gradient(165deg, var(--gray-900) 0%, #1e293b 40%, #0f172a 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(28, 113, 110, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(249, 168, 37, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section .section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.cta-section .section-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  line-height: 1.7;
}

.cta-section .btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 1.2rem 2.25rem;
  font-size: 1.1rem;
  box-shadow: 0 8px 40px var(--primary-glow);
  position: relative;
}

.cta-section .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px var(--primary-glow);
}

/* Footer */
.footer {
  padding: 3.5rem 1.5rem;
  background: var(--gray-900);
  color: var(--gray-400);
  text-align: center;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.75rem;
  filter: brightness(0) invert(1);
}

.footer p {
  margin-bottom: 0.25rem;
}

.footer a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-download-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer a:hover {
  color: var(--white);
}

.footer-links {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
