/* ================================
   INVITE BONUS — style.css
   Light, colorful "verified rewards" theme
================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ---- Core palette ---- */
  --ink:        #0F172A;
  --ink-soft:   #4B5670;
  --muted:      #6B7690;
  --bg:         #F7F8FC;
  --surface:    #FFFFFF;
  --border:     #E7E9F4;

  /* ---- Brand accents ---- */
  --blue:       #2563EB;
  --blue-lt:    #5B8DEF;
  --violet:     #7C3AED;
  --violet-lt:  #A78BFA;
  --teal:       #0D9488;
  --teal-lt:    #2DD4BF;
  --coral:      #FB6A6A;
  --amber:      #F59E0B;
  --success:    #16A34A;

  --grad-brand: linear-gradient(135deg, var(--blue), var(--violet));
  --grad-warm:  linear-gradient(135deg, var(--coral), var(--amber));
  --grad-mint:  linear-gradient(135deg, var(--teal), var(--teal-lt));

  --radius:     16px;
  --shadow-sm:  0 2px 10px rgba(20, 30, 70, 0.06);
  --shadow:     0 14px 40px rgba(20, 30, 70, 0.10);
  --shadow-lg:  0 24px 60px rgba(20, 30, 70, 0.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue-lt); border-radius: 4px; }

/* ---- SELECTION ---- */
::selection { background: var(--violet-lt); color: var(--ink); }

/* ============= NAVBAR ============= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 2rem;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 2.5rem;
  height: 68px;
}
.logo {
  display: flex; align-items: center; gap: 0.65rem;
  text-decoration: none; cursor: default;
}
.logo-icon {
  width: 55px;
  height: 55px;
  background: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  overflow: visible;
  padding: 0;
}
.logo-icon img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem; font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.logo-accent {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links { display: flex; gap: 1.8rem; margin-left: auto; }
.nav-links a {
  color: var(--ink-soft); text-decoration: none;
  font-size: 0.92rem; font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-badge {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.18);
  border-radius: 50px;
  font-size: 0.78rem; font-weight: 700;
  color: var(--blue);
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--success);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22,163,74,0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(22,163,74,0); }
}

/* ============= HERO ============= */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 110px 2rem 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 55% at 80% 15%, rgba(124,58,237,0.14) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 8% 30%, rgba(37,99,235,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 45% 45% at 60% 95%, rgba(13,148,136,0.12) 0%, transparent 65%);
}
.hero-bg-pattern::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(15,23,42,0.07) 1.4px, transparent 1.4px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 0%, transparent 75%);
}
.hero-content {
  max-width: 600px; position: relative; z-index: 1;
  margin-left: calc((100vw - 1200px)/2);
  animation: fadeUp 0.9s ease both;
}
@media (max-width: 1260px) { .hero-content { margin-left: 2rem; } }
.hero-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(22,163,74,0.1);
  border: 1px solid rgba(22,163,74,0.25);
  border-radius: 50px;
  font-size: 0.78rem; font-weight: 700;
  color: var(--success);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.hero-label svg { fill: var(--success); }
.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
}
.hero-title em {
  font-style: normal;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.08rem; color: var(--ink-soft);
  max-width: 480px; margin-bottom: 2.4rem;
  line-height: 1.75;
}
.hero-stats {
  display: flex; align-items: center; gap: 2rem;
  margin-bottom: 2.6rem;
  padding: 1.4rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: fit-content;
  box-shadow: var(--shadow-sm);
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.9rem; font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat:nth-child(3) .stat-num,
.stat:nth-child(5) .stat-num { background: var(--grad-mint); -webkit-background-clip: text; background-clip: text; }
.stat-label { font-size: 0.75rem; color: var(--muted); font-weight: 600; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.95rem 2.1rem;
  background: var(--grad-brand);
  color: #fff;
  font-weight: 700; font-size: 0.95rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.32);
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(124, 58, 237, 0.4); }

/* Floating Cards */
.hero-visual {
  position: absolute; right: calc((100vw - 1200px)/2);
  top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 1rem;
  z-index: 1;
}
@media (max-width: 1260px) { .hero-visual { right: 2rem; } }
@media (max-width: 900px) { .hero-visual { display: none; } }
.floating-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.4rem;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  min-width: 220px;
  box-shadow: var(--shadow);
  animation: float 4s ease-in-out infinite;
}
.fc-1 { animation-delay: 0s; }
.fc-2 { animation-delay: -1.3s; margin-left: 30px; }
.fc-3 { animation-delay: -2.6s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.fc-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fc-name { display: block; font-weight: 700; color: var(--ink); font-size: 0.9rem; }
.fc-bonus { font-size: 0.78rem; color: var(--success); font-weight: 600; }

/* ============= SECTION SHARED ============= */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-inner--narrow { max-width: 760px; }
.section-label {
  display: inline-block;
  font-size: 0.74rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.7rem;
}
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  line-height: 1.2;
}

/* ============= HOW IT WORKS ============= */
.how-section {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps {
  display: flex; align-items: flex-start; gap: 1.5rem;
  flex-wrap: wrap;
}
.step {
  flex: 1; min-width: 200px;
  padding: 2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(37,99,235,0.25); }
.step-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.8rem; font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; }
.step p { font-size: 0.9rem; color: var(--muted); }
.step-arrow { color: var(--violet-lt); padding-top: 2.2rem; flex-shrink: 0; }

/* ============= OFFERS SECTION ============= */
.offers-section { padding: 100px 0; }
.offers-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-btn {
  padding: 0.5rem 1.15rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 0.82rem; font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.filter-btn:hover { border-color: var(--blue-lt); color: var(--blue); }
.filter-btn.active {
  background: var(--grad-brand);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 16px rgba(37,99,235,0.3);
}

/* ---- CARDS GRID ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.4rem;
}
.offer-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative; overflow: hidden;
}
.offer-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-brand);
}
.offer-card[data-category="finance"]::before   { background: linear-gradient(90deg, var(--blue), var(--blue-lt)); }
.offer-card[data-category="investing"]::before { background: linear-gradient(90deg, var(--teal), var(--teal-lt)); }
.offer-card[data-category="shopping"]::before  { background: linear-gradient(90deg, var(--coral), var(--amber)); }
.offer-card[data-category="crypto"]::before    { background: linear-gradient(90deg, var(--violet), var(--violet-lt)); }
.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37,99,235,0.2);
}
.offer-card.hidden { display: none; }

.card-top {
  display: flex; align-items: center; gap: 1rem;
}
.app-icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 6px 16px rgba(20,30,70,0.18);
}
.app-icon::after {
  content: '';
  position: absolute; bottom: -4px; right: -4px;
  width: 17px; height: 17px;
  background-color: var(--success);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 10px 10px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  border: 2px solid var(--surface);
}
/* PNG logo variant — image fills the icon box */
.app-icon--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 13px;
  display: block;
}
.app-name { font-weight: 800; color: var(--ink); font-size: 1rem; margin-bottom: 0.2rem; }
.app-category { font-size: 0.75rem; color: var(--muted); font-weight: 600; }
.app-meta { flex: 1; }
.card-badge {
  padding: 0.28rem 0.75rem;
  border-radius: 50px;
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-hot { background: rgba(251,106,106,0.14); color: #E0334D; border: 1px solid rgba(251,106,106,0.3); }
.badge-new { background: rgba(124,58,237,0.12); color: var(--violet); border: 1px solid rgba(124,58,237,0.28); }

.app-desc { font-size: 0.89rem; color: var(--muted); line-height: 1.65; }

.bonus-bar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(22,163,74,0.08);
  border: 1px solid rgba(22,163,74,0.2);
  border-radius: 9px;
  font-size: 0.85rem; color: #15803D;
}
.bonus-bar svg { flex-shrink: 0; fill: var(--success); }
.bonus-bar strong { font-weight: 800; }

.code-row {
  display: flex; align-items: center; gap: 0.75rem;
}
.code-box {
  flex: 1;
  padding: 0.65rem 1rem;
  background: var(--bg);
  border: 1px dashed var(--border);
  border-radius: 9px;
  display: flex; align-items: center; gap: 0.6rem;
}
.code-label { font-size: 0.7rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.code-value { font-size: 0.9rem; font-weight: 800; color: var(--ink); font-family: 'Courier New', monospace; letter-spacing: 0.04em; }
.copy-btn {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.65rem 1rem;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.22);
  border-radius: 9px;
  color: var(--blue);
  font-size: 0.82rem; font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
.copy-btn:hover { background: rgba(37,99,235,0.16); }
.copy-btn.copied { background: rgba(34,197,94,0.15); border-color: rgba(34,197,94,0.3); color: #15803D; }

.redeem-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem;
  background: var(--grad-brand);
  border-radius: 10px;
  color: #fff;
  font-weight: 700; font-size: 0.9rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: auto;
  box-shadow: 0 8px 22px rgba(37,99,235,0.22);
}
.redeem-btn:hover { opacity: 0.95; transform: scale(0.99); box-shadow: 0 10px 26px rgba(124,58,237,0.3); }

/* ============= TRUST SECTION ============= */
.trust-section {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.trust-item {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 1.8rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.25s, box-shadow 0.25s;
}
.trust-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.trust-item svg {
  flex-shrink: 0;
  width: 50px; height: 50px;
  padding: 13px;
  box-sizing: border-box;
  border-radius: 50%;
  color: #fff;
}
.trust-item:nth-child(1) svg { background: var(--grad-brand); }
.trust-item:nth-child(2) svg { background: var(--grad-mint); }
.trust-item:nth-child(3) svg { background: var(--grad-warm); }
.trust-item h4 { font-weight: 800; color: var(--ink); margin-bottom: 0.35rem; font-size: 1rem; }
.trust-item p { font-size: 0.87rem; color: var(--muted); }

/* ============= FAQ ============= */
.faq-section { padding: 100px 0; }
.faq-section .section-inner { margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(37,99,235,0.3); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: none; border: none;
  color: var(--ink); font-size: 0.97rem; font-weight: 700;
  text-align: left; cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--blue); }
.faq-arrow { transition: transform 0.3s; flex-shrink: 0; color: var(--violet); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  padding: 0 1.5rem;
  color: var(--muted); font-size: 0.9rem; line-height: 1.7;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 1.5rem 1.2rem; }

/* ============= SUPPORT ============= */
.support-section {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.support-intro {
  font-size: 1rem; color: var(--ink-soft);
  margin-top: -1.6rem; margin-bottom: 2.2rem;
  max-width: 560px;
}
.support-form {
  display: flex; flex-direction: column; gap: 1.1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.form-field { display: flex; flex-direction: column; gap: 0.45rem; }
.form-field label {
  font-size: 0.78rem; font-weight: 700;
  color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.form-field input,
.form-field textarea {
  padding: 0.8rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #98A1BC; }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue-lt);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
.support-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  align-self: flex-start;
  margin-top: 0.3rem;
  padding: 0.9rem 2rem;
  background: var(--grad-brand);
  color: #fff;
  font-weight: 700; font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.support-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(124, 58, 237, 0.4); }

/* ============= FOOTER ============= */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem; text-align: center;
}
.footer-note { font-size: 0.8rem; color: var(--muted); max-width: 520px; line-height: 1.6; }
.footer-copy { font-size: 0.78rem; color: #98A1BC; }

/* ============= TOAST ============= */
.toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(80px);
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  background: var(--success);
  color: white;
  border-radius: 50px;
  font-size: 0.88rem; font-weight: 700;
  box-shadow: 0 10px 30px rgba(22,163,74,0.35);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.4s;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ============= ANIMATIONS ============= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.offer-card { animation: fadeUp 0.6s ease both; }
.offer-card:nth-child(1) { animation-delay: 0.05s; }
.offer-card:nth-child(2) { animation-delay: 0.12s; }
.offer-card:nth-child(3) { animation-delay: 0.19s; }
.offer-card:nth-child(4) { animation-delay: 0.26s; }
.offer-card:nth-child(5) { animation-delay: 0.33s; }
.offer-card:nth-child(6) { animation-delay: 0.40s; }
.offer-card:nth-child(7) { animation-delay: 0.47s; }
.offer-card:nth-child(8) { animation-delay: 0.54s; }

/* ============= RESPONSIVE ============= */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { padding: 90px 1.5rem 60px; }
  .hero-stats { flex-direction: column; gap: 1rem; padding: 1.2rem 1.5rem; }
  .stat-divider { width: 60px; height: 1px; }
  .steps { flex-direction: column; }
  .step-arrow { display: none; }
  .offers-header { flex-direction: column; align-items: flex-start; }
  .cards-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
