/* ===== ABCD - Flight Rights Landing Page ===== */
/* Modern Bold Theme - Deep Purple & Electric Green */

/* ---- Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* ---- Variables ---- */
:root {
  --primary: #1a1a2e;
  --primary-deep: #0f0f1e;
  --accent: #00e5a0;
  --accent-dark: #00b87a;
  --accent-light: #00ffbb;
  --secondary: #4361ee;
  --secondary-light: #5c7cfa;
  --warning: #ff6b35;
  --bg: #f8f9fe;
  --surface: #ffffff;
  --surface-2: #f0f2f8;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --border: #e5e7eb;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 10px rgba(26,26,46,0.06);
  --shadow-md: 0 8px 28px rgba(26,26,46,0.1);
  --shadow-lg: 0 20px 60px rgba(26,26,46,0.14);
  --shadow-accent: 0 8px 30px rgba(0,229,160,0.28);
  --transition: all 0.3s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; margin-bottom: 0.75rem; }
p { margin-bottom: 0.85rem; }

/* ---- Utilities ---- */
.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.wrap-sm { width: 100%; max-width: 820px; margin: 0 auto; padding: 0 1.5rem; }
.sec { padding: 5rem 0; }
.tc { text-align: center; }
.tag {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 0.6rem;
  background: rgba(0,229,160,0.1);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  border: 1px solid rgba(0,229,160,0.25);
}
.lead { font-size: 1.1rem; line-height: 1.75; color: var(--text-muted); }

/* ---- Grid ---- */
.g { display: grid; gap: 1.75rem; }
.g2 { grid-template-columns: 1fr; }
.g3 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .g2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .g3 { grid-template-columns: repeat(3, 1fr); } }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.btn-accent {
  background: var(--accent);
  color: var(--primary-deep);
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--primary-deep);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,229,160,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--surface);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.6);
  color: var(--surface);
}
.btn-white {
  background: var(--surface);
  color: var(--primary);
  border-color: var(--surface);
}
.btn-white:hover {
  background: transparent;
  color: var(--surface);
  border-color: rgba(255,255,255,0.4);
}
.btn-lg { padding: 1.1rem 2.8rem; font-size: 1.05rem; }
.btn-full { width: 100%; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.82rem; }

/* ---- Disclosure Banner ---- */
.ad-disclosure {
  background: linear-gradient(90deg, var(--primary-deep), var(--primary));
  color: rgba(255,255,255,0.72);
  font-size: 0.7rem;
  text-align: center;
  padding: 0.55rem 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(0,229,160,0.15);
}

/* ---- Preloader ---- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--primary-deep);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s, visibility 0.6s;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader-logo {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease;
}
.preloader-txt {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  animation: pulse 1.5s ease-in-out infinite;
}
.progress-container {
  width: 220px;
  height: 4px;
  background: rgba(255,255,255,0.1);
  margin-top: 1.25rem;
  border-radius: 2px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  width: 0%;
  animation: load 3s ease forwards;
  border-radius: 2px;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }
@keyframes load { 0% { width: 0; } 100% { width: 100%; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ---- Header ---- */
.header {
  position: absolute;
  top: 35px;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  padding: 1.1rem 0;
}
.header.is-sticky {
  position: fixed;
  top: 0;
  background: rgba(248,249,254,0.97);
  backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-sm);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--primary-deep);
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--surface);
  letter-spacing: 0.05em;
}
.header.is-sticky .logo-text { color: var(--primary); }
.nav-links { display: none; }
@media (min-width: 992px) {
  .nav-links {
    display: flex;
    gap: 2.25rem;
    align-items: center;
  }
  .nav-links a {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    font-size: 0.9rem;
    font-family: var(--font-head);
  }
  .nav-links a:hover { color: var(--accent); }
  .header.is-sticky .nav-links a { color: var(--text-muted); }
  .header.is-sticky .nav-links a:hover { color: var(--accent); }
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--surface);
  border-radius: 2px;
  transition: var(--transition);
}
.header.is-sticky .hamburger span { background: var(--primary); }
@media (min-width: 992px) { .hamburger { display: none; } }

/* ---- Mobile Menu ---- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 380px;
  height: 100vh;
  background: var(--surface);
  z-index: 1000;
  padding: 6rem 2rem 2rem;
  box-shadow: var(--shadow-lg);
  transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  overflow-y: auto;
}
.mobile-menu.is-active { right: 0; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 600;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  display: block;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--accent); }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(160deg, var(--primary-deep) 0%, var(--primary) 45%, #1e2a6e 100%);
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(0,229,160,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(67,97,238,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 992px) {
  .hero-inner { grid-template-columns: 1.25fr 0.75fr; }
}
.hero h1 {
  color: var(--surface);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.hero h1 .highlight {
  color: var(--accent);
  position: relative;
}
.hero .lead { color: rgba(255,255,255,0.65); }
.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero-badge-row {
  display: flex;
  gap: 0.7rem;
  margin-top: 2.25rem;
  flex-wrap: wrap;
}
.hero-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-badge .check { color: var(--accent); font-weight: 700; }
.hero-badge .star { color: #fbbf24; }

/* ---- Hero Amount Cards ---- */
.hero-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.hero-amount-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition);
}
.hero-amount-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--accent);
  transform: translateY(-4px);
}
.hero-amount-card.featured {
  background: rgba(0,229,160,0.1);
  border-color: rgba(0,229,160,0.3);
}
.hero-amount-val {
  font-family: var(--font-head);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.2rem;
}
.hero-amount-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  line-height: 1.4;
}

/* ---- Stats Bar ---- */
.stats-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-sm);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}
@media (min-width: 768px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }
.stat-box {
  padding: 2rem 1rem;
  border-right: none;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
  .stat-box { border-right: 1px solid var(--border); border-bottom: none; }
  .stat-box:last-child { border-right: none; }
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.stat-num .counter { color: var(--accent-dark); }
.stat-label {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ---- Cards ---- */
.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border);
  height: 100%;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,229,160,0.25);
}
.card-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, rgba(0,229,160,0.12), rgba(67,97,238,0.08));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.6rem;
  border: 1px solid rgba(0,229,160,0.15);
}

/* ---- Check List ---- */
.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ---- Compensation Grid ---- */
.comp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .comp-grid { grid-template-columns: repeat(3, 1fr); } }
.comp-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.comp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
}
.comp-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.comp-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(0,229,160,0.04) 0%, var(--surface) 30%);
}
.comp-card.featured::before { background: linear-gradient(90deg, var(--accent), var(--secondary)); }
.comp-card.featured::after {
  content: 'BELIEBT';
  position: absolute;
  top: 12px;
  right: -26px;
  background: var(--accent);
  color: var(--primary-deep);
  font-size: 0.6rem;
  font-weight: 800;
  padding: 0.2rem 2.5rem;
  transform: rotate(45deg);
  letter-spacing: 1.5px;
}
.comp-amount {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin: 1rem 0 0.25rem;
}
.comp-distance { font-size: 0.84rem; color: var(--text-muted); font-weight: 500; }
.comp-detail { font-size: 0.78rem; color: var(--accent-dark); font-weight: 700; margin-top: 0.7rem; }

/* ---- Steps ---- */
.steps-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .steps-track { grid-template-columns: repeat(2, 1fr); }
  .steps-track::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    z-index: 1;
    display: none;
  }
}
@media (min-width: 992px) { .steps-track { grid-template-columns: repeat(4, 1fr); } }
.step-item { text-align: center; position: relative; z-index: 2; }
.step-circle {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-family: var(--font-head);
  font-weight: 800;
  margin: 0 auto 1.1rem;
  box-shadow: var(--shadow-accent);
}
.step-item h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.step-item p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0; }

/* ---- Reviews ---- */
.review-sec {
  background: linear-gradient(160deg, var(--primary-deep), var(--primary), #1e2a6e);
  position: relative;
  overflow: hidden;
}
.review-sec::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -8%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(0,229,160,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.review-sec .wrap { position: relative; z-index: 2; }
.review-sec h2 { color: var(--surface); }
.rev-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.rev-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(0,229,160,0.2);
}
.rev-stars { color: #fbbf24; margin-bottom: 0.75rem; font-size: 1.05rem; letter-spacing: 2px; }
.rev-card p { color: rgba(255,255,255,0.78); font-size: 0.95rem; }
.rev-author { color: var(--accent); font-weight: 700; font-size: 0.88rem; margin-top: 0.75rem; }

/* ---- FAQ ---- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0.8rem;
  background: var(--surface);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(0,229,160,0.3); }
.faq-header {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  font-family: var(--font-head);
  transition: var(--transition);
  gap: 1rem;
}
.faq-header:hover { background: var(--surface-2); }
.faq-icon { font-size: 1.5rem; color: var(--accent); transition: transform 0.3s; flex-shrink: 0; font-weight: 400; }
.faq-item.is-active .faq-icon { transform: rotate(45deg); }
.faq-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s, padding 0.35s;
}
.faq-item.is-active .faq-content { padding: 0 1.5rem 1.5rem; max-height: 500px; }
.faq-content p { color: var(--text-muted); margin-bottom: 0; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(160deg, var(--primary-deep), var(--primary), #1e2a6e);
  border-radius: var(--radius-xl);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 1.5rem;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(0,229,160,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner .wrap { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--surface); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.62); max-width: 520px; margin: 0 auto 2rem; font-size: 1.08rem; }

/* ---- Footer ---- */
.footer { background: var(--primary-deep); color: rgba(255,255,255,0.65); padding: 5rem 0 2rem; }
.footer a { color: rgba(255,255,255,0.6); }
.footer a:hover { color: var(--accent); }
.footer-logo-img { height: 26px; width: auto; filter: brightness(0) invert(1); margin-bottom: 1.25rem; }
.footer-brand { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; color: var(--accent); letter-spacing: 0.05em; }
.ft-heading {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1.25rem;
  font-family: var(--font-head);
}
.ft-menu { display: flex; flex-direction: column; gap: 0.65rem; }
.ft-menu a { font-size: 0.9rem; }
.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
}

/* ---- Cookie Popup ---- */
.cookie-popup {
  position: fixed;
  bottom: -120%;
  left: 0;
  width: 100%;
  background: var(--surface);
  box-shadow: 0 -8px 40px rgba(26,26,46,0.15);
  padding: 1.5rem 2rem;
  z-index: 9000;
  transition: bottom 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border-top: 1px solid var(--border);
}
.cookie-popup.is-visible { bottom: 0; }
.cookie-popup h4 { color: var(--primary); font-size: 1.05rem; margin-bottom: 0.3rem; font-family: var(--font-head); }
.cookie-popup p { color: var(--text-muted); font-size: 0.84rem; margin: 0; }
.cookie-popup a { color: var(--accent-dark); text-decoration: underline; }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-btns { display: flex; gap: 0.75rem; flex-shrink: 0; }
@media (max-width: 768px) { .cookie-inner { flex-direction: column; align-items: flex-start; } .cookie-btns { width: 100%; } }
.ck-yes {
  font-family: var(--font-head);
  background: var(--accent);
  color: var(--primary-deep);
  border: none;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.ck-yes:hover { background: var(--accent-dark); }
.ck-no {
  font-family: var(--font-head);
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.ck-no:hover { border-color: var(--text-muted); color: var(--text); }

/* ---- Fade Animations ---- */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.75s, transform 0.75s; }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ---- Section Backgrounds ---- */
.bg-light { background: var(--surface-2); }
.bg-white { background: var(--surface); }

/* ---- Page Header ---- */
.page-header {
  background: linear-gradient(160deg, var(--surface-2), var(--bg));
  padding: 7rem 0 3rem;
  border-bottom: 1px solid var(--border);
}

/* ---- Article ---- */
.article-header {
  background: linear-gradient(160deg, var(--primary-deep), var(--primary));
  padding: 7rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.article-cat {
  display: inline-block;
  background: var(--accent);
  color: var(--primary-deep);
  padding: 0.25rem 0.9rem;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: 1.5px;
  font-family: var(--font-head);
  text-transform: uppercase;
}
.article-content { max-width: 800px; margin: 0 auto; font-size: 1.05rem; line-height: 1.8; }
.article-content h2 { margin-top: 2.5rem; color: var(--primary); }
.article-content ul { list-style: disc; padding-left: 2rem; margin-bottom: 2rem; }
.article-content ul li { margin-bottom: 0.5rem; color: var(--text-muted); }
.pro-con-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin: 2rem 0; }
@media (min-width: 768px) { .pro-con-grid { grid-template-columns: repeat(2, 1fr); } }
.pro-box {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: rgba(0,229,160,0.04);
  border: 1px solid rgba(0,229,160,0.2);
}
.con-box {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: rgba(239,68,68,0.04);
  border: 1px solid rgba(239,68,68,0.2);
}
.con-box .check-list li::before { content: '✕'; color: #ef4444; }
.rating-box {
  text-align: center;
  background: linear-gradient(160deg, var(--primary-deep), var(--primary));
  color: var(--surface);
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  margin: 3rem 0;
}
.rating-stars { font-size: 2.5rem; color: #fbbf24; margin-bottom: 0.75rem; letter-spacing: 4px; }
.rating-box h2 { color: var(--surface); }
.rating-box p { color: rgba(255,255,255,0.7); }
.author-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  background: var(--surface-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.author-avatar {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-deep);
  font-weight: 800;
  font-family: var(--font-head);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; color: var(--primary); }
.author-meta { font-size: 0.82rem; color: var(--text-muted); }

/* ---- Forms ---- */
.form-group { margin-bottom: 1.25rem; }
.form-control {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--surface);
  color: var(--text);
}
.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,229,160,0.1);
}
label { display: block; margin-bottom: 0.5rem; font-weight: 600; font-size: 0.9rem; }

/* ---- Price Card ---- */
.price-card {
  background: var(--surface);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.price-card-header { border-bottom: 1px solid var(--border); padding-bottom: 1.5rem; margin-bottom: 1.5rem; }
.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-dark);
  line-height: 1;
  font-family: var(--font-head);
}
.sticky-card { position: sticky; top: 100px; }
.order-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 992px) { .order-layout { grid-template-columns: 2fr 1fr; } }

/* ---- Feature Items ---- */
.feature-item { display: flex; gap: 1rem; margin-bottom: 1rem; align-items: flex-start; }
.feature-item .icon { color: var(--accent); font-size: 1.1rem; font-weight: 700; flex-shrink: 0; }

/* ---- Success Message ---- */
.form-success {
  display: none;
  padding: 2rem;
  background: rgba(0,229,160,0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,229,160,0.25);
  text-align: center;
}
.success-icon { font-size: 3rem; margin-bottom: 1rem; }

/* ---- Utility Classes ---- */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.pb-5 { padding-bottom: 5rem; }
.pb-sm { padding-bottom: 3.5rem; }
.text-white { color: var(--surface); }
.text-accent { color: var(--accent); }
.text-muted { color: rgba(255,255,255,0.45); font-size: 0.88rem; }
.text-muted-sm { color: rgba(255,255,255,0.35); font-size: 0.82rem; }
.tag-sm { font-size: 0.62rem; }
.tag-dark { background: rgba(0,229,160,0.1); border-color: rgba(0,229,160,0.25); }
.btn-accent-mt { margin-top: 1.5rem; }
.btn-outline-dark { color: var(--primary); border-color: var(--border); }
.hero-val-accent { color: var(--accent); }
.section-header { margin-bottom: 3rem; }
.section-header-sm { margin-bottom: 2rem; }
.footer-address { color: rgba(255,255,255,0.45); font-size: 0.88rem; }
.footer-address-sm { color: rgba(255,255,255,0.35); font-size: 0.82rem; }
.hero-val-accent { color: var(--accent); }
.lead-centered { max-width: 600px; margin: 0.5rem auto 3rem; }

/* ---- Inner Page Header ---- */
.header-inner { position: static; background: var(--surface); box-shadow: var(--shadow-sm); padding: 1rem 0; }
.logo-text-dark { color: var(--primary); }
.back-link { font-family: var(--font-head); font-weight: 600; color: var(--text-muted); }

/* ---- Article Header ---- */
.article-header-wrap { max-width: 820px; margin: 0 auto; }
.article-h1 { color: var(--surface); }
.main-top { padding-top: 3rem; }

/* ---- Headings ---- */
.h2-mb2 { margin-bottom: 2rem; }
.h3-mb1 { margin-bottom: 1rem; }
.h3-mb1-5 { margin-bottom: 1.5rem; }
.h3-mt3 { margin-top: 3rem; margin-bottom: 1.5rem; }
.text-accent-dark { color: var(--accent-dark); }
.text-red { color: #ef4444; }
.text-yellow { color: #fbbf24; }

/* ---- Card Variants ---- */
.card-auto { height: auto; }
.card-green { background: rgba(0,229,160,0.04); border-color: rgba(0,229,160,0.2); height: auto; margin-bottom: 2rem; }
.card-mb2 { margin-bottom: 2rem; height: auto; }

/* ---- Feature Item ---- */
.feature-item-mt { margin-top: 1rem; }

/* ---- Footer ---- */
.footer-email { color: rgba(255,255,255,0.45); font-size: 0.85rem; margin-top: 0.75rem; }

/* ---- Pro/Con Boxes ---- */
.text-sm-accent { font-size: 1.1rem; color: var(--accent-dark); margin-bottom: 1rem; }
.text-sm-red { font-size: 1.1rem; color: #ef4444; margin-bottom: 1rem; }

/* ---- Rating Box Text ---- */
.rating-text { font-size: 1.1rem; margin-bottom: 2rem; }

/* ---- Price Card ---- */
.price-text-sm { font-size: 0.88rem; color: var(--text-muted); }
.price-text-xs { font-size: 0.78rem; color: var(--text-muted); margin-top: 1rem; }
.price-btn { font-size: 1.05rem; padding: 1.1rem; }
.price-badges { margin-top: 1.5rem; display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; }
.badge-light { background: var(--surface-2); border-color: var(--border); color: var(--text); }
.p-muted { margin: 0; font-size: 0.88rem; color: var(--text-muted); }
.p-muted-0 { margin-bottom: 0; color: var(--text-muted); }
.p-bold { font-size: 0.88rem; margin-bottom: 1.5rem; font-weight: 500; }

/* ---- Legal Page ---- */
.legal-wrap { max-width: 800px; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-amounts { max-width: 380px; margin: 2rem auto 0; }
  .hero-badge-row { justify-content: center; }
}
@media (max-width: 768px) {
  .hero { padding: 8rem 0 4rem; }
  .hero-ctas { flex-direction: column; }
  .hero-amounts { grid-template-columns: 1fr; gap: 0.75rem; }
  .btn-lg { width: 100%; }
  .cta-banner { margin: 0; border-radius: 0; padding: 3rem 1.5rem; }
  .sec { padding: 4rem 0; }
  .cookie-popup .g2 { grid-template-columns: 1fr; }
  .cookie-popup { padding: 1.25rem 1.5rem; }
}
@media (max-width: 480px) {
  .stat-num { font-size: 1.75rem; }
  .comp-amount { font-size: 2.4rem; }
  .hero h1 { font-size: 2.1rem; }
}
