/* ==========================================================================
   KontoBonus - Premium Modern & Ultra-Responsive Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Colors */
  --c-navy-dark: #080f24;
  --c-navy: #0b1736;
  --c-navy-surface: #111e42;
  --c-navy-border: #1e2f5b;
  
  --c-blue: #155eef;
  --c-blue-hover: #1048b8;
  --c-blue-light: #eff4ff;
  --c-blue-glow: rgba(21, 94, 239, 0.28);

  --c-green: #10b981;
  --c-green-dark: #059669;
  --c-green-light: #ecfdf5;
  --c-green-glow: rgba(16, 185, 129, 0.32);

  --c-bg: #f8fafd;
  --c-card: #ffffff;
  --c-card-subtle: #f1f5fa;
  
  --c-text-main: #0f172a;
  --c-text-muted: #475467;
  --c-text-light: #94a3b8;
  --c-text-white: #ffffff;

  --border-light: rgba(15, 23, 42, 0.08);
  --border-subtle: rgba(15, 23, 42, 0.04);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(11, 23, 54, 0.04);
  --shadow-md: 0 10px 30px rgba(11, 23, 54, 0.07);
  --shadow-lg: 0 20px 45px -10px rgba(11, 23, 54, 0.12);
  --shadow-ticket: 0 20px 50px -15px rgba(11, 23, 54, 0.14);
  --shadow-green: 0 10px 25px rgba(16, 185, 129, 0.28);

  /* Border radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;

  /* Transition */
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset & Strict Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--c-bg);
  color: var(--c-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

/* Ambient glow blobs - strictly contained to avoid viewport stretch */
.ambient-glow-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.ambient-blob-1 {
  position: absolute;
  top: -150px;
  right: 0;
  width: 450px;
  height: 450px;
  max-width: 80vw;
  background: radial-gradient(circle, rgba(21, 94, 239, 0.08) 0%, rgba(16, 185, 129, 0.03) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
}

.ambient-blob-2 {
  position: absolute;
  top: 600px;
  left: 0;
  width: 400px;
  height: 400px;
  max-width: 80vw;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, rgba(21, 94, 239, 0.02) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
}

/* Sections & Container */
.hero, 
.section, 
.section-dark, 
.activity-section, 
.reviews-section, 
.faq-section, 
.cta-section, 
footer, 
.ribbon-section {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: clip;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

/* Grid & Flex item constraints to prevent track blowouts */
.hero-grid,
.ribbon-grid,
.steps-grid,
.dark-grid,
.activity-feed,
.reviews-grid,
.faq-list {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-grid > *,
.ribbon-grid > *,
.steps-grid > *,
.dark-grid > *,
.activity-row,
.reviews-grid > *,
.faq-item {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

/* Typography Helpers */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--c-navy);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  word-break: break-word;
  overflow-wrap: break-word;
}

.text-green {
  color: var(--c-green);
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-center {
  text-align: center;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #155eef 0%, #0c4ad0 100%);
  color: var(--c-text-white);
  padding: 16px 28px;
  border-radius: var(--r-md);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px -5px rgba(21, 94, 239, 0.4);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -5px rgba(21, 94, 239, 0.55);
  color: var(--c-text-white);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: var(--shadow-green);
}

.btn-green:hover {
  box-shadow: 0 16px 36px rgba(16, 185, 129, 0.36);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.88rem;
  border-radius: var(--r-sm);
  white-space: nowrap;
}

/* Header & Nav */
.header-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
  width: 100%;
  max-width: 100%;
}

.nav-row {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--c-navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.logo span {
  color: var(--c-green);
}

.logo-dot {
  width: 7px;
  height: 7px;
  background: var(--c-green);
  border-radius: 50%;
  display: inline-block;
  margin-left: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--c-text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--c-blue);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Status Pill with Pulsing Dot */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-green-light);
  color: var(--c-green-dark);
  padding: 7px 13px;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid rgba(16, 185, 129, 0.2);
  white-space: nowrap;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--c-green);
  border-radius: 50%;
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.4);
  animation: pulse-ring 1.8s infinite cubic-bezier(0.25, 0, 0, 1);
}

@keyframes pulse-ring {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Hero Section */
.hero {
  padding: 55px 0 70px;
  background: linear-gradient(180deg, rgba(246, 249, 253, 0.6) 0%, rgba(238, 244, 252, 0.9) 100%);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(21, 94, 239, 0.16);
  color: var(--c-blue);
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
  max-width: 100%;
  box-sizing: border-box;
}

.hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.hero-lead {
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--c-text-muted);
  margin-bottom: 24px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero-lead b {
  color: var(--c-navy);
}

.hero-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--c-text-main);
  word-break: break-word;
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-green-light);
  color: var(--c-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  flex-shrink: 0;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-trust-text {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

/* Task Card (Ticket) */
.task-ticket {
  background: var(--c-card);
  border: 1px solid rgba(21, 94, 239, 0.15);
  border-radius: var(--r-xl);
  padding: 30px 26px;
  box-shadow: var(--shadow-ticket);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  width: 100%;
  box-sizing: border-box;
}

.task-ticket::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--c-blue) 0%, var(--c-green) 100%);
}

.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.ticket-tag {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--c-text-muted);
  text-transform: uppercase;
}

.ticket-status {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-green-dark);
  background: var(--c-green-light);
  padding: 4px 10px;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.ticket-title {
  font-size: 1.55rem;
  color: var(--c-navy);
  margin-bottom: 6px;
}

.ticket-badge-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 14px 0 18px;
}

.ticket-amount {
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: 900;
  font-family: var(--font-heading);
  line-height: 1;
  color: var(--c-green-dark);
  letter-spacing: -0.03em;
}

.ticket-label {
  font-size: 0.76rem;
  font-weight: 800;
  background: #f1f5f9;
  color: var(--c-text-muted);
  padding: 4px 10px;
  border-radius: var(--r-sm);
  letter-spacing: 0.04em;
}

.ticket-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.meta-box {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 12px 14px;
  box-sizing: border-box;
}

.meta-box span {
  font-size: 0.74rem;
  color: var(--c-text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: 3px;
}

.meta-box strong {
  font-size: 0.98rem;
  color: var(--c-navy);
  font-family: var(--font-heading);
  display: block;
}

.ticket-note {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  line-height: 1.5;
  background: #f8fafc;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  border-left: 3px solid var(--c-blue);
  box-sizing: border-box;
}

/* Trust Highlights Ribbon */
.ribbon-section {
  padding: 22px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.ribbon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ribbon-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ribbon-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--c-blue-light);
  color: var(--c-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.ribbon-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--c-navy);
  font-weight: 700;
}

.ribbon-text span {
  font-size: 0.76rem;
  color: var(--c-text-muted);
}

/* Common Section Layout */
.section {
  padding: 75px 0;
  position: relative;
}

.section-header {
  max-width: 680px;
  margin: 0 auto 44px;
  text-align: center;
  padding: 0 10px;
}

.section-subtitle-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--c-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.85rem, 3.8vw, 2.4rem);
  color: var(--c-navy);
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1.02rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

/* Steps Section */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step-card {
  background: var(--c-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  box-sizing: border-box;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(21, 94, 239, 0.25);
}

.step-number {
  width: 46px;
  height: 46px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--c-blue-light) 0%, #dfeaff 100%);
  color: var(--c-blue);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--c-navy);
}

.step-card p {
  color: var(--c-text-muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* Dark Contrast Section (Why Us) */
.section-dark {
  background: var(--c-navy-dark);
  color: var(--c-text-white);
  padding: 75px 0;
  position: relative;
  overflow: hidden;
}

.section-dark .section-title {
  color: #ffffff;
}

.section-dark .section-desc {
  color: #94a3b8;
}

.dark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dark-card {
  background: var(--c-navy-surface);
  border: 1px solid var(--c-navy-border);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  transition: var(--transition);
  box-sizing: border-box;
}

.dark-card:hover {
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateY(-4px);
}

.dark-card-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
  display: inline-block;
}

.dark-card h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.dark-card p {
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Recent Activity Section */
.activity-section {
  background: #f1f5fa;
  padding: 75px 0;
}

.activity-feed {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.activity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--c-card);
  border: 1px solid var(--border-light);
  padding: 16px 22px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  gap: 14px;
  box-sizing: border-box;
}

.activity-row:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.activity-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.activity-avatar-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eef2f6;
  color: var(--c-navy);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.activity-info strong {
  display: block;
  font-size: 0.96rem;
  color: var(--c-navy);
}

.activity-info span {
  font-size: 0.82rem;
  color: var(--c-text-muted);
}

.activity-right {
  text-align: right;
  flex-shrink: 0;
}

.activity-reward {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-green-dark);
}

.activity-time {
  font-size: 0.76rem;
  color: var(--c-text-light);
  display: block;
}

/* Reviews Section (Telegram Proofs) */
.reviews-section {
  background: #ffffff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(21, 94, 239, 0.3);
}

.review-image-wrapper {
  position: relative;
  width: 100%;
  height: 235px;
  background: #f8fafc;
  overflow: hidden;
}

.review-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.review-card:hover .review-image {
  transform: scale(1.04);
}

.review-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 23, 54, 0.45);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.review-card:hover .review-overlay {
  opacity: 1;
}

.zoom-pill {
  background: rgba(255, 255, 255, 0.95);
  color: var(--c-navy);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 13px;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.review-footer {
  padding: 12px 14px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  gap: 6px;
  box-sizing: border-box;
}

.review-tg-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #229ed9;
  white-space: nowrap;
}

.review-date {
  font-size: 0.74rem;
  color: var(--c-text-light);
  white-space: nowrap;
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(8, 15, 36, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: fadeIn 0.2s ease forwards;
  box-sizing: border-box;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-content-box {
  position: relative;
  max-width: 94vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: var(--r-md);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  object-fit: contain;
  background: #fff;
}

.lightbox-caption {
  margin-top: 12px;
  color: #e2e8f0;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.45);
  transform: scale(1.08);
}

/* FAQ Accordion */
.faq-section {
  background: var(--c-bg);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--c-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  box-sizing: border-box;
}

.faq-item:hover {
  border-color: rgba(21, 94, 239, 0.2);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 22px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 14px;
  box-sizing: border-box;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  stroke: var(--c-blue);
  stroke-width: 2.5;
  fill: none;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
  padding: 0 22px;
  color: var(--c-text-muted);
  font-size: 0.94rem;
  line-height: 1.65;
  box-sizing: border-box;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 20px;
  transition: max-height 0.35s ease-in-out;
}

/* Final CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--c-bg) 0%, #eef4fc 100%);
}

.cta-box {
  background: linear-gradient(135deg, #0b1736 0%, #080f24 100%);
  border-radius: var(--r-xl);
  padding: 50px 32px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-ticket);
  border: 1px solid var(--c-navy-border);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.cta-box::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-box h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 3.8vw, 2.5rem);
  margin-bottom: 12px;
}

.cta-box p {
  font-size: 1.08rem;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.cta-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
  font-size: 0.84rem;
  color: #94a3b8;
}

/* ==========================================================================
   Clean & Balanced Footer (NO 'Admin' Word)
   ========================================================================== */
footer {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: 48px 0 30px;
  color: var(--c-text-muted);
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

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

.footer-brand .logo {
  font-size: 1.4rem;
}

.footer-brand p {
  font-size: 0.86rem;
  color: var(--c-text-muted);
  line-height: 1.55;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--c-text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  padding: 4px 0;
  white-space: nowrap;
}

.footer-nav a:hover {
  color: var(--c-blue);
}

.footer-divider {
  height: 1px;
  background: var(--border-light);
  width: 100%;
}

.footer-disclaimer {
  font-size: 0.76rem;
  color: var(--c-text-light);
  line-height: 1.6;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--c-text-light);
  gap: 16px;
}

/* ==========================================================================
   Flawless Responsive Media Queries - No Horizontal Overflow
   ========================================================================== */

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 100%;
    gap: 36px;
  }

  .ribbon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .steps-grid,
  .dark-grid {
    grid-template-columns: 100%;
    gap: 16px;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .footer-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .footer-nav {
    width: 100%;
    justify-content: flex-start;
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  /* Header mobile */
  .nav-row {
    height: 64px;
    gap: 10px;
    justify-content: space-between;
  }

  .logo {
    font-size: 1.4rem;
  }

  .nav-links {
    display: none !important;
  }

  .status-pill {
    display: none !important;
  }

  .nav-right {
    gap: 0;
  }

  .nav-right .btn-sm {
    padding: 8px 14px;
    font-size: 0.84rem;
  }

  /* Hero mobile */
  .hero {
    padding: 30px 0 45px;
  }

  .promo-badge {
    white-space: normal;
    font-size: 0.75rem;
    padding: 6px 12px;
    line-height: 1.35;
    text-align: left;
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 14px;
  }

  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .hero-checklist {
    gap: 9px;
    margin-bottom: 22px;
  }

  .hero-checklist li {
    font-size: 0.9rem;
  }

  .btn-primary {
    padding: 15px 18px;
    font-size: 0.98rem;
    width: 100%;
    text-align: center;
    line-height: 1.3;
  }

  .hero-trust-text {
    justify-content: center;
    font-size: 0.76rem;
    gap: 6px;
    text-align: center;
  }

  /* Task Ticket mobile */
  .task-ticket {
    padding: 20px 16px;
    border-radius: var(--r-lg);
  }

  .ticket-title {
    font-size: 1.3rem;
  }

  .ticket-amount {
    font-size: 2.5rem;
  }

  .ticket-meta {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .meta-box {
    padding: 10px 10px;
  }

  .meta-box span {
    font-size: 0.7rem;
  }

  .meta-box strong {
    font-size: 0.92rem;
  }

  .ticket-note {
    font-size: 0.76rem;
    padding: 10px 12px;
  }

  /* Ribbon mobile */
  .ribbon-grid {
    grid-template-columns: 100%;
    gap: 12px;
  }

  .ribbon-item {
    padding: 3px 0;
  }

  /* Sections mobile */
  .section {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 28px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-desc {
    font-size: 0.94rem;
  }

  /* Steps card mobile */
  .step-card {
    padding: 22px 18px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
    margin-bottom: 14px;
  }

  /* Dark cards mobile */
  .dark-card {
    padding: 20px 16px;
  }

  /* Activity rows mobile */
  .activity-row {
    padding: 12px 14px;
    gap: 10px;
  }

  .activity-avatar-badge {
    width: 36px;
    height: 36px;
    font-size: 0.82rem;
  }

  .activity-info strong {
    font-size: 0.9rem;
  }

  .activity-info span {
    font-size: 0.78rem;
  }

  .activity-reward {
    font-size: 1.12rem;
  }

  /* Reviews mobile */
  .reviews-grid {
    grid-template-columns: 100%;
    gap: 14px;
  }

  .review-image-wrapper {
    height: 240px;
  }

  .review-footer {
    padding: 10px 12px;
  }

  /* FAQ mobile */
  .faq-question {
    padding: 15px 16px;
    font-size: 0.96rem;
  }

  .faq-answer {
    padding: 0 16px;
    font-size: 0.88rem;
  }

  .faq-item.open .faq-answer {
    padding-bottom: 16px;
  }

  /* Final CTA mobile */
  .cta-section {
    padding: 55px 0;
  }

  .cta-box {
    padding: 32px 16px;
    border-radius: var(--r-lg);
  }

  .cta-box h2 {
    font-size: 1.7rem;
  }

  .cta-box p {
    font-size: 0.94rem;
    margin-bottom: 20px;
  }

  .cta-features {
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }

  /* Footer mobile */
  footer {
    padding: 36px 0 24px;
  }

  .footer-brand {
    text-align: left;
  }

  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.76rem;
  }
}

/* Extra Small Screens (max-width: 380px) */
@media (max-width: 380px) {
  .logo {
    font-size: 1.25rem;
  }

  .nav-right .btn-sm {
    padding: 7px 10px;
    font-size: 0.78rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .ticket-amount {
    font-size: 2.2rem;
  }

  .ticket-meta {
    grid-template-columns: 1fr;
  }
}
