/* =============================================
   AUTOEXPLAIN ANNIVERSARY — COMPONENTS
   ============================================= */

/* ============ ANNOUNCEMENT BAR ============ */
#ae-announcement {
  background: var(--brand-gold);
  color: var(--brand-navy);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  z-index: 100;
}
#ae-announcement a {
  color: var(--brand-navy);
  text-decoration: underline;
}
#ae-announcement .announcement-close {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  color: var(--brand-navy);
  opacity: 0.7;
  transition: opacity 0.2s;
  font-size: 1.25rem;
  line-height: 1;
}
#ae-announcement .announcement-close:hover { opacity: 1; }

/* ============ HEADER ============ */
#ae-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--brand-blue);
  box-shadow: 0 2px 20px rgba(11,31,58,0.2);
  transition: background 0.3s;
}
.ae-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
@media (min-width: 640px) { .ae-header-inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .ae-header-inner { padding: 0 2rem; } }

.ae-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.ae-logo-icon {
  width: 2rem;
  height: 2rem;
  background: var(--brand-gold);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--brand-navy);
  font-size: 0.75rem;
  flex-shrink: 0;
}
.ae-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}
.ae-logo-text span { color: var(--brand-gold); }
.ae-logo-badge {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.1rem 0.5rem;
  border-radius: 9999px;
  display: none;
}
@media (min-width: 640px) { .ae-logo-badge { display: inline-block; } }

.ae-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 1024px) { .ae-nav { display: flex; } }
.ae-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.ae-nav a:hover { color: var(--brand-gold); }

.ae-header-cta {
  display: none;
  align-items: center;
  gap: 0.375rem;
  background: var(--brand-orange);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8125rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
}
@media (min-width: 640px) { .ae-header-cta { display: inline-flex; } }
.ae-header-cta:hover {
  background: var(--brand-orange-hover);
  box-shadow: 0 4px 16px rgba(255,107,0,0.3);
  color: #fff;
}

.ae-hamburger {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 0.375rem;
}
@media (min-width: 1024px) { .ae-hamburger { display: none; } }

.ae-mobile-menu {
  display: none;
  background: var(--brand-navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem;
  flex-direction: column;
  gap: 0.75rem;
}
.ae-mobile-menu.open { display: flex; }
.ae-mobile-menu a {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.375rem 0;
  transition: color 0.2s;
}
.ae-mobile-menu a:hover { color: var(--brand-gold); }

/* ============ HERO SECTION ============ */
#ae-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-blue) 60%, #003380 100%);
}
.ae-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: linear-gradient(#ffffff 1px, transparent 1px), linear-gradient(90deg, #ffffff 1px, transparent 1px);
  background-size: 40px 40px;
}
.ae-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: rgba(0,74,173,0.4);
  filter: blur(120px);
  pointer-events: none;
}
.ae-hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 5rem 1rem;
  max-width: 64rem;
  margin: 0 auto;
  gap: 2rem;
  width: 100%;
}
.ae-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,184,0,0.2);
  border: 1px solid rgba(255,184,0,0.4);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  color: var(--brand-gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.ae-hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  color: #fff;
  font-size: clamp(2rem, 6vw, 4.5rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0;
}
.ae-hero-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1.125rem;
  max-width: 38rem;
  line-height: 1.7;
}
.ae-countdown-label {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.ae-countdown {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) { .ae-countdown { gap: 1rem; } }
.ae-countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ae-countdown-box {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.75rem;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
@media (min-width: 768px) {
  .ae-countdown-box { width: 5rem; height: 5rem; font-size: 1.875rem; }
}
.ae-countdown-label-unit {
  color: rgba(255,255,255,0.6);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0.375rem;
  font-weight: 500;
}
.ae-deal-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.ae-deal-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.ae-deal-pill:hover { opacity: 0.9; color: #fff; }
.ae-deal-pill .pill-sub { font-family: var(--font-body); font-weight: 400; text-transform: none; color: rgba(255,255,255,0.8); font-size: 0.75rem; }
.ae-hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  width: 100%;
}
@media (min-width: 640px) { .ae-hero-ctas { flex-direction: row; justify-content: center; } }
.ae-hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  width: 100%;
  margin-top: 1rem;
}
.ae-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
}
.ae-stat-value {
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--brand-gold);
  font-size: clamp(1.25rem, 3vw, 1.875rem);
}
.ae-stat-label {
  color: rgba(255,255,255,0.5);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.ae-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.ae-hero-wave svg { display: block; width: 100%; }

/* ============ SECTION WRAPPER ============ */
.ae-section { padding: 6rem 0; }
.ae-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .ae-section-inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .ae-section-inner { padding: 0 2rem; } }
.ae-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.ae-section-header .tech-badge { margin-bottom: 1rem; }
.ae-section-header .section-heading { margin-top: 0.75rem; margin-bottom: 1rem; }
.ae-section-header p { color: var(--text-secondary); max-width: 40rem; margin: 0 auto; font-size: 1.125rem; }

/* ============ OFFERS SECTION ============ */
#ae-offers { background: var(--brand-soft); }
.ae-offers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .ae-offers-grid { grid-template-columns: repeat(3, 1fr); } }
.ae-offer-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
}
.ae-offer-card.highlight { box-shadow: 0 20px 40px rgba(255,107,0,0.1); outline: 2px solid var(--brand-orange); }
.ae-offer-top-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--brand-orange);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}
.ae-offer-icon-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.ae-offer-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: rgba(0,74,173,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
}
.ae-offer-pct {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 3rem;
  color: var(--brand-blue);
  line-height: 1;
}
.ae-offer-pct-label {
  color: var(--brand-gold);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.ae-offer-badge {
  display: inline-block;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  align-self: flex-start;
}
.ae-offer-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.ae-offer-desc { color: var(--text-secondary); font-size: 0.875rem; line-height: 1.6; }
.ae-offer-features { display: flex; flex-direction: column; gap: 0.5rem; }
.ae-offer-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.ae-offer-features li::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--brand-green);
  flex-shrink: 0;
}
.ae-offer-cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  font-size: 0.8125rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.ae-offer-cta.orange { background: var(--brand-orange); color: #fff; }
.ae-offer-cta.orange:hover { background: var(--brand-orange-hover); box-shadow: 0 8px 24px rgba(255,107,0,0.3); }
.ae-offer-cta.blue { background: var(--brand-blue); color: #fff; }
.ae-offer-cta.blue:hover { background: var(--brand-navy); box-shadow: 0 8px 24px rgba(11,31,58,0.3); }
.ae-offer-cta:active { transform: scale(0.97); }

/* ============ GIFTS SECTION ============ */
#ae-gifts { background: #fff; }
.ae-gifts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .ae-gifts-grid { grid-template-columns: 1fr 1fr; } }
.ae-gift-card { overflow: hidden; }
.ae-gift-image {
  position: relative;
  height: 13rem;
  overflow: hidden;
}
.ae-gift-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  loading: lazy;
}
.ae-gift-card:hover .ae-gift-image img { transform: scale(1.05); }
.ae-gift-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.75;
}
.ae-gift-overlay-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.ae-gift-overlay-content .gift-badge-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ae-gift-icon-wrap {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}
.ae-gift-type-label {
  color: var(--brand-gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.ae-gift-title { color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; line-height: 1.3; }
.ae-gift-free-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--brand-gold);
  color: var(--brand-navy);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
}
.ae-gift-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.ae-gift-subtitle { color: var(--brand-orange); font-weight: 600; font-size: 0.875rem; }
.ae-gift-features { display: flex; flex-direction: column; gap: 0.625rem; }
.ae-gift-features li { display: flex; align-items: center; gap: 0.625rem; font-size: 0.875rem; color: var(--text-secondary); }
.ae-gift-features li svg, .ae-gift-features li .feat-icon { color: var(--brand-green); flex-shrink: 0; }
.ae-gifts-note {
  margin-top: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(0,74,173,0.05);
  border: 1px solid var(--brand-border);
  border-radius: 0.75rem;
  padding: 1.25rem;
}
.ae-gifts-note-icon { color: var(--brand-blue); flex-shrink: 0; margin-top: 2px; font-size: 1.25rem; }
.ae-gifts-note p { color: var(--text-secondary); font-size: 0.875rem; line-height: 1.6; }
.ae-gifts-note strong { color: var(--text-primary); }

/* ============ PRODUCTS SECTION ============ */
#ae-products { background: var(--brand-soft); }
.ae-products-category { margin-bottom: 4rem; }
.ae-products-cat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.ae-cat-pill {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
}
.ae-cat-line { flex: 1; height: 1px; background: var(--brand-border); }
.ae-cat-viewall { color: var(--brand-blue); font-size: 0.875rem; font-weight: 600; text-decoration: none; display: flex; align-items: center; gap: 0.25rem; transition: color 0.2s; }
.ae-cat-viewall:hover { color: var(--brand-navy); }
.ae-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .ae-products-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .ae-products-grid { grid-template-columns: repeat(3, 1fr); } }
.ae-product-card { overflow: hidden; display: flex; flex-direction: column; }
.ae-product-image {
  position: relative;
  height: 12rem;
  overflow: hidden;
}
.ae-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ae-product-card:hover .ae-product-image img { transform: scale(1.05); }
.ae-product-discount-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--brand-orange);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.6875rem;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.ae-product-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.ae-product-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ae-product-price-row { display: flex; align-items: center; gap: 0.5rem; margin-top: auto; }
.ae-product-price-sale { font-family: var(--font-heading); font-weight: 900; font-size: 1.25rem; color: var(--brand-blue); }
.ae-product-price-original { color: var(--text-secondary); font-size: 0.875rem; text-decoration: line-through; }
.ae-product-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--brand-blue);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  padding: 0.625rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}
.ae-product-btn:hover { background: var(--brand-navy); color: #fff; }
.ae-product-btn:active { transform: scale(0.98); }

/* ============ MILESTONES SECTION ============ */
#ae-milestones { background: var(--brand-soft); }
.ae-timeline { position: relative; }
.ae-timeline-line {
  display: none;
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--brand-border);
  transform: translateX(-50%);
}
@media (min-width: 1024px) { .ae-timeline-line { display: block; } }
.ae-timeline-items { display: flex; flex-direction: column; gap: 2.5rem; }
.ae-timeline-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .ae-timeline-item { flex-direction: row; align-items: center; }
  .ae-timeline-item.right { flex-direction: row-reverse; }
}
.ae-timeline-content {
  width: 100%;
}
@media (min-width: 1024px) {
  .ae-timeline-content { flex: 1; }
  .ae-timeline-item:not(.right) .ae-timeline-content { margin-right: 2rem; }
  .ae-timeline-item.right .ae-timeline-content { margin-left: 2rem; }
}
.ae-timeline-card { padding: 1.5rem; max-width: 28rem; }
@media (min-width: 1024px) {
  .ae-timeline-item:not(.right) .ae-timeline-card { margin-left: auto; }
}
.ae-timeline-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.ae-timeline-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: rgba(0,74,173,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.ae-timeline-year { font-family: var(--font-heading); font-weight: 700; color: var(--brand-gold); font-size: 1.125rem; }
.ae-timeline-title { font-family: var(--font-heading); font-weight: 700; color: var(--text-primary); font-size: 0.9375rem; text-transform: uppercase; letter-spacing: 0.05em; }
.ae-timeline-desc { color: var(--text-secondary); font-size: 0.875rem; line-height: 1.6; }
.ae-timeline-dot {
  display: none;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--brand-blue);
  border: 4px solid var(--brand-soft);
  flex-shrink: 0;
  z-index: 10;
}
@media (min-width: 1024px) { .ae-timeline-dot { display: flex; } }
.ae-timeline-spacer { flex: 1; display: none; }
@media (min-width: 1024px) { .ae-timeline-spacer { display: block; } }
.ae-milestones-stats {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .ae-milestones-stats { grid-template-columns: repeat(4, 1fr); } }
.ae-milestone-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--brand-blue);
  border-radius: 1rem;
  padding: 1.5rem;
  color: #fff;
}
.ae-milestone-stat-value { font-family: var(--font-heading); font-weight: 900; font-size: 1.875rem; color: var(--brand-gold); }
.ae-milestone-stat-label { color: rgba(255,255,255,0.7); font-size: 0.875rem; font-weight: 500; margin-top: 0.25rem; line-height: 1.4; }

/* ============ TABSCAN SECTION ============ */
#ae-tabscan {
  background: var(--brand-blue);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
.ae-tabscan-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: linear-gradient(#ffffff 1px, transparent 1px), linear-gradient(90deg, #ffffff 1px, transparent 1px);
  background-size: 40px 40px;
}
.ae-tabscan-glow {
  position: absolute;
  right: -10rem;
  top: 50%;
  transform: translateY(-50%);
  width: 24rem;
  height: 24rem;
  background: rgba(255,184,0,0.1);
  border-radius: 50%;
  filter: blur(80px);
}
.ae-tabscan-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}
@media (min-width: 640px) { .ae-tabscan-inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .ae-tabscan-inner { grid-template-columns: 1fr 1fr; padding: 0 2rem; } }
.ae-tabscan-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255,184,0,0.2);
  border: 1px solid rgba(255,184,0,0.3);
  color: var(--brand-gold);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}
.ae-tabscan-title {
  font-family: var(--font-heading);
  font-weight: 900;
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.ae-tabscan-title span { color: var(--brand-gold); }
.ae-tabscan-desc { color: rgba(255,255,255,0.7); font-size: 1.125rem; line-height: 1.7; margin-bottom: 2rem; }
.ae-tabscan-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.ae-tabscan-feature {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  padding: 1rem;
}
.ae-tabscan-feat-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: rgba(255,184,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}
.ae-tabscan-feat-title { font-family: var(--font-heading); font-weight: 700; color: #fff; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.ae-tabscan-feat-desc { color: rgba(255,255,255,0.6); font-size: 0.75rem; line-height: 1.5; }
.ae-tabscan-update-note {
  display: 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: 0.75rem;
  padding: 1rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}
.ae-tabscan-update-note strong { color: #fff; }
.ae-tabscan-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.ae-tabscan-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand-gold);
  color: var(--brand-navy);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8125rem;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  border: none;
  cursor: pointer;
}
.ae-tabscan-cta-primary:hover { background: #FFD93D; color: var(--brand-navy); }
.ae-tabscan-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8125rem;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
}
.ae-tabscan-cta-secondary:hover { background: rgba(255,255,255,0.2); color: #fff; }
.ae-tabscan-image-wrap {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
.ae-tabscan-image-wrap img {
  width: 100%;
  object-fit: cover;
  border-radius: 1rem;
  max-height: 30rem;
}
.ae-tabscan-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,31,58,0.6), transparent); }
.ae-tabscan-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ae-tabscan-image-badge-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--brand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.ae-tabscan-image-badge-text h4 { color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 0.875rem; text-transform: uppercase; }
.ae-tabscan-image-badge-text p { color: rgba(255,255,255,0.6); font-size: 0.75rem; }
.ae-tabscan-discount-badge { margin-left: auto; background: var(--brand-green); color: #fff; font-weight: 700; font-size: 0.75rem; padding: 0.25rem 0.625rem; border-radius: 9999px; }
.ae-tabscan-ring1, .ae-tabscan-ring2 {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,184,0,0.2);
  z-index: -1;
}
.ae-tabscan-ring1 { width: 10rem; height: 10rem; top: -2rem; right: -2rem; }
.ae-tabscan-ring2 { width: 15rem; height: 15rem; top: -3.5rem; right: -3.5rem; border-color: rgba(255,184,0,0.1); }

/* ============ MINIGAME SECTION ============ */
#ae-minigame {
  background: var(--brand-navy);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
.ae-minigame-dots {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle, #ffffff 1px, transparent 1px);
  background-size: 32px 32px;
}
.ae-minigame-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 37.5rem;
  height: 18.75rem;
  background: rgba(255,184,0,0.05);
  border-radius: 50%;
  filter: blur(80px);
}
.ae-minigame-inner {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 640px) { .ae-minigame-inner { padding: 0 1.5rem; } }
.ae-minigame-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,184,0,0.2);
  border: 1px solid rgba(255,184,0,0.3);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--brand-gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.ae-minigame-title {
  font-family: var(--font-heading);
  font-weight: 900;
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 3rem);
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}
.ae-minigame-title span { color: var(--brand-gold); }
.ae-minigame-desc { color: rgba(255,255,255,0.6); font-size: 1.125rem; max-width: 38rem; margin: 0 auto 3.5rem; line-height: 1.7; }
.ae-prizes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) { .ae-prizes-grid { grid-template-columns: repeat(4, 1fr); } }
.ae-prize-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  transition: background 0.3s, box-shadow 0.3s;
}
.ae-prize-card:hover { background: rgba(255,255,255,0.1); }
.ae-prize-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.ae-prize-rank { color: rgba(255,255,255,0.4); font-family: var(--font-heading); font-weight: 700; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.25rem; }
.ae-prize-reward { color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 0.9375rem; text-transform: uppercase; letter-spacing: 0.05em; line-height: 1.3; margin-bottom: 0.25rem; }
.ae-prize-subtext { color: rgba(255,255,255,0.5); font-size: 0.75rem; }
.ae-how-to-join {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2.5rem;
}
.ae-how-to-join h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ae-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .ae-steps-grid { grid-template-columns: repeat(3, 1fr); } }
.ae-step { display: flex; gap: 0.75rem; }
.ae-step-num { font-family: var(--font-heading); font-weight: 900; color: var(--brand-gold); font-size: 1.875rem; line-height: 1; flex-shrink: 0; opacity: 0.6; }
.ae-step-text { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.6; padding-top: 0.25rem; }
.ae-minigame-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
@media (min-width: 640px) { .ae-minigame-ctas { flex-direction: row; } }
.ae-minigame-cta-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--brand-gold);
  color: var(--brand-navy);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  border: none;
  cursor: pointer;
}
.ae-minigame-cta-gold:hover { background: #FFD93D; color: var(--brand-navy); }
.ae-minigame-cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
}
.ae-minigame-cta-outline:hover { background: rgba(255,255,255,0.2); color: #fff; }

/* ============ LEAD FORM SECTION ============ */
#ae-lead-form { background: var(--brand-soft); padding: 6rem 0; }
.ae-form-wrap {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .ae-form-wrap { padding: 0 1.5rem; } }
.ae-form-card { padding: 2rem; }
@media (min-width: 768px) { .ae-form-card { padding: 2.5rem; } }
.ae-form-header-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.ae-form-icon { width: 2.5rem; height: 2.5rem; border-radius: 0.75rem; background: rgba(255,184,0,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.ae-form-desc { color: var(--text-secondary); font-size: 0.875rem; }
.ae-form-desc strong { color: var(--text-primary); }
.ae-form { display: flex; flex-direction: column; gap: 1.25rem; }
.ae-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .ae-form-row { grid-template-columns: 1fr 1fr; } }
.ae-form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.ae-form-group label { color: var(--text-primary); font-size: 0.875rem; font-weight: 600; }
.ae-form-group label .required { color: var(--brand-orange); }
.ae-form-input {
  border: 1px solid var(--brand-border);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--text-primary);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: var(--font-body);
  width: 100%;
}
.ae-form-input::placeholder { color: rgba(100,116,139,0.5); }
.ae-form-input:focus { outline: none; border-color: var(--brand-blue); box-shadow: 0 0 0 3px rgba(0,74,173,0.15); }
.ae-form-select {
  border: 1px solid var(--brand-border);
  border-radius: 0.5rem;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--text-primary);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 0.75rem center;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: var(--font-body);
  width: 100%;
  cursor: pointer;
}
.ae-form-select:focus { outline: none; border-color: var(--brand-blue); box-shadow: 0 0 0 3px rgba(0,74,173,0.15); }
.ae-form-checkbox { display: flex; align-items: flex-start; gap: 0.75rem; cursor: pointer; }
.ae-form-checkbox input[type="checkbox"] { width: 1.25rem; height: 1.25rem; border: 2px solid var(--brand-border); border-radius: 0.25rem; cursor: pointer; margin-top: 0.125rem; accent-color: var(--brand-blue); flex-shrink: 0; }
.ae-form-checkbox span { color: var(--text-secondary); font-size: 0.875rem; line-height: 1.6; }
.ae-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--brand-orange);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  font-size: 0.9375rem;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  width: 100%;
}
.ae-form-submit:hover { background: var(--brand-orange-hover); box-shadow: 0 8px 24px rgba(255,107,0,0.3); }
.ae-form-submit:active { transform: scale(0.98); }
.ae-form-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.ae-form-note { text-align: center; color: var(--text-secondary); font-size: 0.75rem; }
.ae-form-error {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 0.5rem;
  padding: 0.75rem;
  color: #DC2626;
  font-size: 0.875rem;
}
.ae-form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  padding: 2rem 0;
}
.ae-form-success-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(34,197,94,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.ae-form-success h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-primary); }
.ae-form-success p { color: var(--text-secondary); }
.ae-form-success-note {
  background: rgba(0,74,173,0.05);
  border: 1px solid var(--brand-border);
  border-radius: 0.75rem;
  padding: 1rem;
  width: 100%;
}
.ae-form-success-note p { font-size: 0.875rem; color: var(--text-secondary); }
.ae-form-success-note strong { color: var(--brand-blue); }

/* ============ TESTIMONIALS SECTION ============ */
#ae-testimonials { background: #fff; }
.ae-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .ae-testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .ae-testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.ae-testimonial-card { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.ae-testimonial-stars { display: flex; gap: 0.125rem; }
.ae-testimonial-star { color: var(--brand-gold); font-size: 0.875rem; }
.ae-testimonial-quote { color: var(--text-secondary); font-size: 0.875rem; line-height: 1.7; flex: 1; font-style: italic; }
.ae-testimonial-quote::before { content: '\201C'; }
.ae-testimonial-quote::after  { content: '\201D'; }
.ae-testimonial-footer { display: flex; align-items: center; gap: 0.75rem; padding-top: 0.75rem; border-top: 1px solid var(--brand-border); }
.ae-testimonial-avatar { width: 2.5rem; height: 2.5rem; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.ae-testimonial-avatar-placeholder {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--brand-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.ae-testimonial-info { flex: 1; min-width: 0; }
.ae-testimonial-name { font-family: var(--font-heading); font-weight: 700; color: var(--text-primary); font-size: 0.875rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ae-testimonial-role { color: var(--text-secondary); font-size: 0.75rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ae-testimonial-flag { font-size: 1.25rem; flex-shrink: 0; }

/* ============ FAQ SECTION ============ */
#ae-faq { background: var(--brand-soft); }
.ae-faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.ae-faq-item {
  border: 1px solid var(--brand-border);
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s;
}
.ae-faq-item.active { box-shadow: 0 4px 16px rgba(0,74,173,0.08); }
.ae-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.ae-faq-question:hover { background: rgba(247,248,253,0.8); }
.ae-faq-question-left { display: flex; align-items: center; gap: 0.75rem; }
.ae-faq-num { font-family: var(--font-heading); font-weight: 700; color: rgba(0,74,173,0.4); font-size: 0.8125rem; flex-shrink: 0; }
.ae-faq-q-text { font-family: var(--font-heading); font-weight: 700; color: var(--text-primary); font-size: 0.9375rem; text-transform: uppercase; letter-spacing: 0.03em; }
.ae-faq-icon { color: var(--text-secondary); flex-shrink: 0; transition: transform 0.3s; font-size: 1.25rem; line-height: 1; }
.ae-faq-item.active .ae-faq-icon { transform: rotate(180deg); color: var(--brand-blue); }
.ae-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.ae-faq-item.active .ae-faq-answer { max-height: 500px; }
.ae-faq-answer-inner { padding: 0 1.25rem 1.25rem 3.25rem; color: var(--text-secondary); font-size: 0.875rem; line-height: 1.7; }

/* ============ FINAL CTA SECTION ============ */
#ae-final-cta {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-blue) 60%, #003380 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
.ae-final-cta-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: linear-gradient(#ffffff 1px, transparent 1px), linear-gradient(90deg, #ffffff 1px, transparent 1px);
  background-size: 40px 40px;
}
.ae-final-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 37.5rem;
  height: 25rem;
  border-radius: 50%;
  background: rgba(0,74,173,0.4);
  filter: blur(100px);
  pointer-events: none;
}
.ae-final-cta-inner {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
  position: relative;
  z-index: 10;
}
.ae-final-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,184,0,0.2);
  border: 1px solid rgba(255,184,0,0.3);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  margin-bottom: 2rem;
  color: var(--brand-gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.ae-final-cta-title {
  font-family: var(--font-heading);
  font-weight: 900;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.75rem);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.ae-final-cta-title span { color: var(--brand-gold); }
.ae-final-cta-desc { color: rgba(255,255,255,0.7); font-size: 1.25rem; max-width: 38rem; margin: 0 auto 2.5rem; line-height: 1.7; }
.ae-final-cta-desc strong { color: #fff; }
.ae-final-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .ae-final-cta-buttons { flex-direction: row; } }
.ae-final-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--brand-orange);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 1.25rem 2.5rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  border: none;
  cursor: pointer;
}
.ae-final-cta-btn-primary:hover { background: var(--brand-orange-hover); box-shadow: 0 12px 32px rgba(255,107,0,0.3); color: #fff; }
.ae-final-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 1.25rem 2.5rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  cursor: pointer;
}
.ae-final-cta-btn-secondary:hover { background: rgba(255,255,255,0.2); color: #fff; }
.ae-final-cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.ae-final-cta-trust-item { display: flex; align-items: center; gap: 0.5rem; }
.ae-trust-dot { width: 0.375rem; height: 0.375rem; border-radius: 50%; background: var(--brand-green); }
.ae-trust-text { color: rgba(255,255,255,0.6); font-size: 0.875rem; font-weight: 500; }

/* ============ FOOTER ============ */
#ae-footer { background: var(--brand-navy); color: #fff; }
.ae-footer-inner { max-width: 1280px; margin: 0 auto; padding: 4rem 1rem 2rem; }
@media (min-width: 640px) { .ae-footer-inner { padding: 4rem 1.5rem 2rem; } }
@media (min-width: 1024px) { .ae-footer-inner { padding: 4rem 2rem 2rem; } }
.ae-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .ae-footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
@media (min-width: 1024px) { .ae-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.ae-footer-brand-desc { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.7; max-width: 22rem; margin: 1rem 0 1.5rem; }
.ae-footer-socials { display: flex; gap: 0.75rem; }
.ae-footer-social {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}
.ae-footer-social:hover { background: var(--brand-blue); color: #fff; }
.ae-footer-col h4 { font-family: var(--font-heading); font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.ae-footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.ae-footer-links a { color: rgba(255,255,255,0.6); font-size: 0.875rem; text-decoration: none; transition: color 0.2s; }
.ae-footer-links a:hover { color: #fff; }
.ae-footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.ae-footer-contact-item { display: flex; align-items: center; gap: 0.625rem; color: rgba(255,255,255,0.6); font-size: 0.875rem; text-decoration: none; transition: color 0.2s; }
.ae-footer-contact-item:hover { color: #fff; }
.ae-footer-campaign h4 { font-family: var(--font-heading); font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 0.75rem; }
.ae-footer-campaign p { color: rgba(255,255,255,0.6); font-size: 0.875rem; }
.ae-footer-active { display: flex; align-items: center; gap: 0.375rem; margin-top: 0.5rem; }
.ae-footer-active-dot { width: 0.375rem; height: 0.375rem; border-radius: 50%; background: var(--brand-green); animation: pulseSlow 2.5s ease-in-out infinite; }
.ae-footer-active-text { color: var(--brand-green); font-size: 0.75rem; font-weight: 600; }
.ae-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 640px) { .ae-footer-bottom { flex-direction: row; } }
.ae-footer-copyright { color: rgba(255,255,255,0.4); font-size: 0.875rem; text-align: center; }
.ae-footer-legal { display: flex; gap: 1rem; }
.ae-footer-legal a { color: rgba(255,255,255,0.4); font-size: 0.75rem; text-decoration: none; transition: color 0.2s; }
.ae-footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ============ FLOATING BUTTONS ============ */
#ae-floating {
  position: fixed;
  bottom: 1.5rem;
  right: 1rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}
.ae-float-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: opacity 0.2s, transform 0.1s;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}
.ae-float-btn:hover { opacity: 0.9; }
.ae-float-btn:active { transform: scale(0.95); }
.ae-float-wa { background: var(--brand-green); color: #fff; width: 3.25rem; height: 3.25rem; }
.ae-float-fb { background: #0084FF; color: #fff; }
.ae-float-top { background: var(--brand-blue); color: #fff; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.ae-float-top.visible { opacity: 1; pointer-events: auto; }

/* ============ RESPONSIVE ============ */
@media (max-width: 767px) {
  .ae-section { padding: 4rem 0; }
  #ae-tabscan, #ae-minigame, #ae-final-cta { padding: 4rem 0; }
}
