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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.hidden { display: none !important; }

/* ==================== LAYOUT ==================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-sm {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container, .container-sm { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .container, .container-sm { padding: 0 2rem; }
}

/* ==================== NAVIGATION ==================== */
.nav-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
  background: transparent;
}

.nav-header.scrolled {
  background: rgba(0, 49, 84, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 640px) {
  .nav-container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .nav-container { padding: 0 2rem; }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav-logo img {
  height: 2.25rem;
  width: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover { color: #fff; }

.nav-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .nav-actions { display: flex; }
}

.nav-signin {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-signin:hover { color: #fff; }

/* ==================== BUTTONS ==================== */
.btn-primary-sm {
  display: inline-block;
  background: #D4E157;
  color: #003154;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
  box-shadow: 0 4px 6px -1px rgba(212, 225, 87, 0.2);
}

.btn-primary-sm:hover {
  background: #c0cc4e;
}

.btn-primary-lg {
  display: inline-block;
  background: #D4E157;
  color: #003154;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  transition: all 0.2s;
  box-shadow: 0 4px 6px -1px rgba(212, 225, 87, 0.25);
}

.btn-primary-lg:hover {
  background: #c0cc4e;
  box-shadow: 0 10px 15px -3px rgba(212, 225, 87, 0.4);
  transform: scale(1.02);
}

.btn-outline-lg {
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 500;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.2s;
}

.btn-outline-lg:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary-full {
  display: block;
  width: 100%;
  background: #D4E157;
  color: #003154;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 1rem;
  border-radius: 0.75rem;
  transition: all 0.2s;
  box-shadow: 0 4px 6px -1px rgba(212, 225, 87, 0.2);
  text-align: center;
}

.btn-primary-full:hover {
  background: #c0cc4e;
  box-shadow: 0 10px 15px -3px rgba(212, 225, 87, 0.3);
}

.btn-primary-mobile {
  display: block;
  width: 100%;
  background: #D4E157;
  color: #003154;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  text-align: center;
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu-btn {
  display: block;
  color: #fff;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-menu-btn { display: none; }
}

.icon-menu {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  background: rgba(0, 49, 84, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .mobile-menu { display: none !important; }
}

.mobile-link {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.mobile-link:hover { color: #fff; }

.mobile-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==================== LOCALE DROPDOWN ==================== */
.locale-dropdown { position: relative; }

.locale-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  transition: color 0.2s;
}

.locale-btn:hover { color: rgba(255, 255, 255, 0.8); }

.locale-btn-mobile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.locale-btn-mobile:hover { color: rgba(255, 255, 255, 0.8); }

.locale-menu, .locale-menu-mobile {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.25rem;
  background: #003154;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  min-width: 140px;
  display: none;
}

.locale-menu-mobile {
  bottom: 100%;
  top: auto;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.locale-menu.open, .locale-menu-mobile.open { display: block; }

.locale-option {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  text-align: left;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.15s;
}

.locale-option:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.locale-option.active {
  background: rgba(212, 225, 87, 0.2);
  color: #D4E157;
}

/* ==================== ICONS ==================== */
.icon-sm { width: 0.875rem; height: 0.875rem; }
.icon-xs { width: 0.75rem; height: 0.75rem; }
.icon-md { width: 1.75rem; height: 1.75rem; }
.accent-icon { color: #D4E157; }

/* ==================== HERO ==================== */
.hero-section {
  position: relative;
  background: #003154;
  padding: 7rem 0 5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-section { padding: 9rem 0 7rem; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-glow-right {
  position: absolute;
  top: -10rem;
  right: -10rem;
  width: 600px;
  height: 600px;
  background: rgba(212, 225, 87, 0.05);
  border-radius: 50%;
  filter: blur(150px);
}

.hero-glow-left {
  position: absolute;
  bottom: -10rem;
  left: -10rem;
  width: 500px;
  height: 500px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 50%;
  filter: blur(120px);
}

.hero-content {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .hero-content { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .hero-content { padding: 0 2rem; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 225, 87, 0.1);
  border: 1px solid rgba(212, 225, 87, 0.2);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  margin-bottom: 2rem;
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #D4E157;
  border-radius: 50%;
  animation: pulse 2s infinite;
  will-change: opacity;
}

.badge-text {
  color: #D4E157;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  max-width: 56rem;
  margin: 0 auto;
  min-height: 1.3em;
}

@media (min-width: 640px) {
  .hero-title { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .hero-title { font-size: 3.75rem; }
}

.typing-cursor {
  display: inline-block;
  width: 3px;
  height: 0.8em;
  background-color: #D4E157;
  margin-left: 4px;
  vertical-align: baseline;
  animation: blink 0.75s step-end infinite;
  will-change: opacity;
}

.hero-fade {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.hero-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-subtitle {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

@media (min-width: 640px) {
  .hero-subtitle { font-size: 1.25rem; }
}

.hero-buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
  .hero-buttons .btn-primary-lg,
  .hero-buttons .btn-outline-lg {
    width: auto;
  }
}

.hero-buttons .btn-primary-lg,
.hero-buttons .btn-outline-lg {
  width: 100%;
  text-align: center;
}

@media (min-width: 640px) {
  .hero-buttons .btn-primary-lg,
  .hero-buttons .btn-outline-lg {
    width: auto;
  }
}

.hero-trial-badge {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.badge-sep { color: rgba(255, 255, 255, 0.3); margin: 0 0.25rem; }

/* ==================== SCREENSHOT FRAMES ==================== */
.hero-screenshot {
  margin-top: 4rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.screenshot-frame {
  background: #0f172a;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.screenshot-dots {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1rem;
  background: #1e293b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dot { width: 0.625rem; height: 0.625rem; border-radius: 50%; }
.dot-red { background: rgba(239, 68, 68, 0.7); }
.dot-yellow { background: rgba(234, 179, 8, 0.7); }
.dot-green { background: rgba(34, 197, 94, 0.7); }

.screenshot-body {
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, #1e293b, #0f172a);
}

.screenshot-icon {
  width: 4rem;
  height: 4rem;
  color: rgba(255, 255, 255, 0.1);
}

.screenshot-label {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.875rem;
  margin-top: 0.75rem;
  font-family: monospace;
}

.screenshot-frame-dark {
  background: linear-gradient(to bottom right, #1e293b, #0f172a);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(71, 85, 105, 0.5);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.screenshot-dots-sm {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  background: rgba(30, 41, 59, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot-sm { width: 0.5rem; height: 0.5rem; border-radius: 50%; }

.screenshot-body-dark {
  aspect-ratio: 16 / 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.screenshot-icon-sm {
  width: 3rem;
  height: 3rem;
  color: rgba(255, 255, 255, 0.1);
}

.screenshot-label-sm {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  margin-top: 0.5rem;
  font-family: monospace;
}

/* ==================== SECTIONS ==================== */
.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.section-tagline {
  color: #D4E157;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.section-title-dark {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
}

@media (min-width: 640px) {
  .section-title-dark { font-size: 2.25rem; }
}

.section-subtitle {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.7;
}

/* ==================== ADVANTAGES ==================== */
.advantages-section {
  padding: 5rem 0;
  background: #fff;
}

@media (min-width: 768px) {
  .advantages-section { padding: 7rem 0; }
}

.advantages-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .advantages-grid { grid-template-columns: repeat(4, 1fr); }
}

.advantage-card {
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.advantage-card:hover {
  background: #fff;
  border-color: #e5e7eb;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.advantage-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.advantage-desc {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ==================== SHOWCASE ==================== */
.showcase-section {
  padding: 5rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .showcase-section { padding: 7rem 0; }
}

.bg-gray { background: #f9fafb; }
.bg-white { background: #fff; }

.showcase-row {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 768px) {
  .showcase-row {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
}

.showcase-row.reverse {
  flex-direction: column;
}

@media (min-width: 768px) {
  .showcase-row.reverse { flex-direction: row-reverse; }
}

.showcase-text {
  flex: 1;
}

.showcase-image {
  flex: 1;
}

.showcase-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #D4E157;
  background: #003154;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.showcase-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .showcase-title { font-size: 1.875rem; }
}

.showcase-desc {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.showcase-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.showcase-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.bullet-check {
  width: 1.25rem;
  height: 1.25rem;
  color: #D4E157;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.showcase-bullets span {
  color: #4b5563;
  font-size: 0.875rem;
}

/* ==================== PRICING ==================== */
.pricing-section {
  padding: 5rem 0;
  background: #f9fafb;
}

@media (min-width: 768px) {
  .pricing-section { padding: 7rem 0; }
}

.pricing-card-wrapper {
  margin-top: 3.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: #003154;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-body {
  padding: 2rem;
}

@media (min-width: 640px) {
  .pricing-body { padding: 2.5rem; }
}

.pricing-trial {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(212, 225, 87, 0.15);
  color: #D4E157;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(212, 225, 87, 0.25);
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 0.25rem;
}

.billing-btn {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 0.375rem;
  transition: all 0.2s;
  flex: 1;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.billing-btn:hover { color: rgba(255, 255, 255, 0.7); }

.billing-btn.active {
  background: #fff;
  color: #003154;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.billing-badge {
  font-size: 0.625rem;
  background: #D4E157;
  color: #003154;
  font-weight: 700;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
}

.price-display {
  text-align: center;
  margin-bottom: 0.5rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.price-old {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
  font-weight: 700;
}

.price-old.hidden { display: none; }

.price-current {
  font-size: 3.75rem;
  font-weight: 800;
  color: #fff;
}

.price-unit {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  margin-top: 0.25rem;
}

.price-detail {
  text-align: center;
  margin-bottom: 1.5rem;
}

.price-detail.hidden { display: none; }

.save-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #D4E157;
  background: rgba(212, 225, 87, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.pricing-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  margin-top: 0.75rem;
}

.pricing-features {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
}

@media (min-width: 640px) {
  .pricing-features { padding: 2rem 2.5rem; }
}

.features-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.5rem;
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.feature-item .bullet-check {
  width: 1rem;
  height: 1rem;
}

.feature-item span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

/* ==================== FAQ ==================== */
.faq-section {
  padding: 5rem 0;
  background: #fff;
}

@media (min-width: 768px) {
  .faq-section { padding: 7rem 0; }
}

.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  text-align: left;
  transition: background 0.2s;
  font-weight: 500;
  color: #111827;
}

.faq-question:hover { background: #f9fafb; }

.faq-question span {
  padding-right: 1rem;
}

.faq-chevron {
  width: 1.25rem;
  height: 1.25rem;
  color: #9ca3af;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-item.open .faq-question {
  background: #f9fafb;
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.2s ease, opacity 0.2s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  opacity: 1;
}

.faq-answer p {
  padding: 0 1.5rem 1rem;
  color: #6b7280;
  line-height: 1.7;
}

/* ==================== FINAL CTA ==================== */
.cta-section {
  background: #003154;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-section { padding: 7rem 0; }
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: rgba(212, 225, 87, 0.05);
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
}

.cta-content {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .cta-content { padding: 0 1.5rem; }
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
}

@media (min-width: 640px) {
  .cta-title { font-size: 2.25rem; }
}

.cta-subtitle {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.5);
}

.cta-content .btn-primary-lg {
  margin-top: 2rem;
}

.cta-note {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}

/* ==================== FOOTER ==================== */
.site-footer {
  background: #00243d;
  padding: 3rem 0 2rem;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-top { flex-direction: row; }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand span {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-link:hover { color: rgba(255, 255, 255, 0.7); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin: 2rem 0;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  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: rgba(255, 255, 255, 0.4);
  transition: all 0.3s;
}

.social-btn:hover {
  color: #D4E157;
  background: rgba(212, 225, 87, 0.1);
  border-color: rgba(212, 225, 87, 0.25);
}

.social-icon {
  width: 1.125rem;
  height: 1.125rem;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  text-align: center;
}

/* ==================== SCROLL REVEAL ==================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== ANIMATIONS ==================== */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ==================== FOCUS VISIBLE ==================== */
:focus-visible {
  outline: 2px solid #D4E157;
  outline-offset: 2px;
}

.nav-link:focus-visible,
.nav-signin:focus-visible,
.btn-primary-sm:focus-visible,
.btn-primary-lg:focus-visible,
.btn-outline-lg:focus-visible,
.btn-primary-full:focus-visible,
.btn-primary-mobile:focus-visible,
.mobile-link:focus-visible,
.footer-link:focus-visible,
.social-btn:focus-visible,
.locale-btn:focus-visible,
.locale-btn-mobile:focus-visible,
.locale-option:focus-visible,
.faq-question:focus-visible,
.billing-btn:focus-visible {
  outline: 2px solid #D4E157;
  outline-offset: 2px;
}

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .typing-cursor {
    animation: none;
    opacity: 1;
  }

  .hero-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .badge-dot {
    animation: none;
  }

  .faq-answer {
    transition: none;
  }

  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
