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

:root {
  --bg-deep:       #0d1117;
  --bg-section:    #111827;
  --bg-card:       #161e2e;
  --bg-card-hover: #1a2540;
  --accent:        #00d4ff;
  --accent-dim:    rgba(0, 212, 255, 0.15);
  --accent-glow:   rgba(0, 212, 255, 0.4);
  --accent2:       #7c3aed;
  --accent2-dim:   rgba(124, 58, 237, 0.2);
  --green:         #10d98a;
  --red:           #ff4444;
  --yellow:        #fbbf24;
  --text:          #e8edf5;
  --text-muted:    #8899b0;
  --border:        rgba(255,255,255,0.07);
  --border-accent: rgba(0, 212, 255, 0.3);
  --radius:        16px;
  --radius-sm:     10px;
  --shadow-card:   0 4px 32px rgba(0,0,0,0.4);
  --shadow-glow:   0 0 40px rgba(0, 212, 255, 0.2);
  --font-body:     'Inter', system-ui, sans-serif;
  --font-head:     'Poppins', 'Inter', system-ui, sans-serif;
  --transition:    0.25s ease;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  isolation: isolate;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: 0.82; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.hidden { display: none !important; }

/* ===== TYPOGRAPHY ===== */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 48px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: #000;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #33ddff, #00b8f0);
  box-shadow: 0 0 35px rgba(0, 212, 255, 0.55);
  transform: translateY(-2px) scale(1.02);
  opacity: 1;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 700;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-nav {
  background: rgba(0, 212, 255, 0.12);
  color: var(--accent);
  border: 1px solid var(--border-accent);
  padding: 8px 18px;
  font-size: 0.88rem;
}

.btn-nav:hover {
  background: rgba(0, 212, 255, 0.22);
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.25);
  transform: translateY(-1px);
  opacity: 1;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: #000 !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(0, 212, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  animation: fadeInUp 0.6s ease 1.5s both;
}

.sticky-cta:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 36px rgba(0, 212, 255, 0.65);
  opacity: 1;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 17, 23, 0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(13, 17, 23, 0.9);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text) !important;
  display: flex;
  align-items: baseline;
  gap: 0;
}

.logo-zw { color: var(--accent); }
.logo-ch { color: var(--text); }
.logo-shop {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  align-self: center;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 30%, rgba(0, 212, 255, 0.045) 0%, transparent 65%),
    radial-gradient(ellipse 55% 45% at 15% 70%, rgba(124, 58, 237, 0.03) 0%, transparent 58%);
  /* No solid fill — fixed canvas shows through */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(13,17,23,0) 0%,
    rgba(13,17,23,0.5) 75%,
    var(--bg-deep) 100%
  );
}

/* Particles canvas — fixed, full page, behind everything */
#particles-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-label {
  margin-bottom: 0;
  opacity: 0.85;
}

/* Urgency badge */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.12), rgba(255, 68, 68, 0.1));
  border: 1px solid rgba(251, 191, 36, 0.35);
  color: var(--yellow);
  font-size: 0.83rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  animation: pulse-badge 2.5s ease-in-out infinite;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
  animation: blink 1.2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
  50%       { box-shadow: 0 0 20px rgba(251, 191, 36, 0.2); }
}

/* Hero headline */
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.accent-glow {
  color: var(--accent);
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.6), 0 0 60px rgba(0, 212, 255, 0.25);
}

.price-hero {
  display: block;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 8px;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.br-desktop { display: none; }
@media (min-width: 640px) { .br-desktop { display: block; } }

/* Stock badge */
.stock-row { display: flex; justify-content: center; }

.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 217, 138, 0.08);
  border: 1px solid rgba(16, 217, 138, 0.3);
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
}

.stock-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: blink 1.4s ease-in-out infinite;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-reassure {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  animation: bounce-arrow 1.6s ease-in-out infinite;
}

@keyframes bounce-arrow {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
  50%       { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ===== OFFER SECTION ===== */
.offer-section {
  padding: 60px 0;
}

.offer-card {
  background: rgba(22, 30, 46, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 32px 40px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 0 60px rgba(0, 212, 255, 0.07), var(--shadow-card);
}

/* Top row: price | divider | countdown */
.offer-top {
  display: flex;
  align-items: center;
  gap: 0;
}

.offer-price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 160px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.original-price {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.65;
}

.deal-price {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--green);
  text-shadow: 0 0 20px rgba(16, 217, 138, 0.35);
  line-height: 1;
}

.savings-tag {
  display: inline-block;
  background: rgba(16, 217, 138, 0.12);
  border: 1px solid rgba(16, 217, 138, 0.3);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
}

.price-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Vertical divider between price and countdown */
.offer-vdivider {
  width: 1px;
  height: 80px;
  background: var(--border);
  margin: 0 36px;
  flex-shrink: 0;
}

/* Countdown */
.countdown-wrapper {
  flex: 1;
}

.countdown-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.countdown {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cd-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 8px;
  padding: 6px 10px;
  line-height: 1;
  min-width: 52px;
  text-align: center;
  transition: color 0.5s ease, border-color 0.5s ease;
}

.cd-num.urgent {
  color: var(--red);
  border-color: rgba(255, 68, 68, 0.35);
}

.cd-sep {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-muted);
  align-self: flex-start;
  padding-top: 5px;
  opacity: 0.5;
}

.cd-unit {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  font-weight: 600;
}

.countdown-expired {
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
}

.offer-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

/* Bottom row: benefits + CTA */
.offer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.benefit-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  flex: 1;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.check {
  color: var(--green);
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.offer-cta {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Mobile: stack */
@media (max-width: 700px) {
  .offer-card { padding: 24px 18px; }
  .offer-top  { flex-direction: column; align-items: flex-start; gap: 20px; }
  .offer-vdivider { display: none; }
  .offer-bottom { flex-direction: column; gap: 20px; }
  .benefit-list { grid-template-columns: 1fr; }
  .offer-cta { width: 100%; justify-content: center; }
  .cd-num { font-size: 1.5rem; min-width: 44px; }
}

/* ===== HOW IT WORKS ===== */
.how-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-section) 50%, var(--bg-deep) 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 16px;
  margin-bottom: 40px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.step-card:hover::before { opacity: 1; }

.step-num {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.step-icon {
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.step-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

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

.step-connector {
  color: var(--text-muted);
  align-self: center;
  margin-top: 16px;
  opacity: 0.5;
}

.how-badge {
  display: inline-flex;
  margin: 0 auto;
  padding: 10px 28px;
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid var(--border-accent);
  border-radius: 50px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ===== FEATURES ===== */
.features-section {
  padding: 80px 0;
  background: var(--bg-deep);
}

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

.feature-card {
  background: linear-gradient(145deg, var(--bg-card), #0f1623);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 212, 255, 0.12);
}

.feature-card:hover::after { transform: scaleX(1); }

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: rgba(0, 212, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== TRUST SECTION ===== */
.trust-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-section) 100%);
}

.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 4px;
}

.trust-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.trust-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-list strong {
  display: block;
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.trust-list p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Trust card visual */
.trust-visual { display: flex; justify-content: center; align-items: flex-start; padding-top: 60px; }

.trust-card-big {
  background: linear-gradient(145deg, #1a2540, #141d30);
  border: 1px solid var(--border-accent);
  border-radius: 20px;
  padding: 24px;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(0, 212, 255, 0.1);
}

.tcb-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.tcb-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #000;
  flex-shrink: 0;
}

.tcb-header strong { display: block; font-size: 0.95rem; font-weight: 700; }
.tcb-header span   { font-size: 0.78rem; color: var(--text-muted); }

.tcb-verified {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(16, 217, 138, 0.1);
  border: 1px solid rgba(16, 217, 138, 0.3);
  padding: 3px 10px;
  border-radius: 50px;
}

.tcb-msg { margin-bottom: 20px; }

.tcb-bubble {
  background: rgba(0, 212, 255, 0.07);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 4px 14px 14px 14px;
  padding: 14px 16px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text);
}

.tcb-link {
  display: block;
  color: var(--accent);
  font-size: 0.82rem;
  margin-top: 6px;
  word-break: break-all;
}

.tcb-time {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 6px;
  text-align: right;
}

.tcb-footer {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.tcb-stat { text-align: center; }
.tcb-val  { display: block; font-size: 1.15rem; font-weight: 800; color: var(--accent); }
.tcb-key  { display: block; font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }
.tcb-divider-v { width: 1px; height: 32px; background: var(--border); }

/* ===== FAQ ===== */
.faq-section {
  padding: 80px 0;
  background: var(--bg-deep);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item.open {
  border-color: var(--border-accent);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color 0.25s ease;
}

.faq-q:hover { color: var(--accent); }

.faq-arrow {
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 22px;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 22px 18px;
}

.faq-a p {
  font-size: 0.91rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.faq-cta p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ===== FINAL CTA ===== */
.final-cta-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, #0a0f1a 100%);
}

.final-cta-inner {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.final-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 900;
}

.final-cta-inner p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
}

.final-small {
  font-size: 0.82rem !important;
  color: var(--text-muted) !important;
  opacity: 0.7;
}

/* ===== FOOTER ===== */
.footer {
  background: #080c12;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 16px 0 20px;
  max-width: 280px;
}

.footer-links h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--accent); opacity: 1; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-connector {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trust-visual {
    padding-top: 0;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .offer-card {
    padding: 28px 20px;
  }

  .cd-num {
    font-size: 2rem;
    min-width: 56px;
    padding: 10px 12px;
  }

  .cd-block { min-width: 56px; }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .trust-card-big {
    max-width: 100%;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 1rem;
  }

  .steps-grid { gap: 16px; }

  .hero { min-height: auto; padding: 120px 0 80px; }
}

/* Very small */
@media (max-width: 380px) {
  .countdown { gap: 4px; }
  .cd-sep { display: none; }
}
