/* =============================================
   BaanPro Official Website — Main Styles
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #1B6FD8;
  --primary-dark: #1457B0;
  --primary-light: #4A9FFF;
  --navy: #1A3272;
  --accent: #2B7FE8;
  --bg: #F5F8FF;
  --bg-card: #FFFFFF;
  --text: #1A2340;
  --text-sub: #5A6480;
  --text-light: #9BA3BD;
  --border: #E2E8F8;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 10px rgba(27, 111, 216, .08);
  --shadow-md: 0 8px 32px rgba(27, 111, 216, .12);
  --shadow-lg: 0 16px 56px rgba(27, 111, 216, .18);
  --transition: .25s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB",
               "Microsoft YaHei", "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(27, 111, 216, .3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(27, 111, 216, .4);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,.6);
  color: #fff;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,.2);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-lg { padding: 14px 36px; font-size: 16px; }

/* ---------- Section Commons ---------- */
.section-tag {
  display: inline-block;
  background: rgba(27, 111, 216, .1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 20px;
  letter-spacing: .5px;
  margin-bottom: 12px;
}
.section-tag-white {
  background: rgba(255,255,255,.2);
  color: #fff;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.25;
}
.section-title-white { color: #fff; }
.section-desc {
  font-size: 16px;
  color: var(--text-sub);
  max-width: 560px;
  margin: 0 auto;
}
.section-desc-white { color: rgba(255,255,255,.8); }

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(27,111,216,.10);
  transition: box-shadow var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo-img {
  height: 48px;
  width: auto;
  mix-blend-mode: normal;
  filter: none;
}

.nav { display: flex; align-items: center; gap: 8px; }
.nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 15px;
  color: var(--text-sub);
  font-weight: 500;
  transition: var(--transition);
}
.nav-link:hover { color: var(--primary); background: rgba(27,111,216,.06); }

.nav-cta {
  background: var(--primary);
  border: 1.5px solid var(--primary);
  color: #fff !important;
  padding: 8px 22px;
  border-radius: 50px;
}
.nav-cta:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0D3B8E 0%, #1B6FD8 50%, #3A9AF5 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(255,255,255,.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(255,255,255,.04) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 160px;
  padding-bottom: 100px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: .5px;
}
.hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title span {
  display: block;
  font-size: .65em;
  font-weight: 700;
  opacity: .9;
}
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,.8);
  line-height: 1.8;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  padding: 20px 32px;
  backdrop-filter: blur(8px);
}
.stat-item { text-align: center; flex: 1; }
.stat-num {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,.7); }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.2); }

/* --------- Hero QR Code --------- */
.hero-qr-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-qr-card {
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 20px;
  padding: 20px 20px 16px;
  backdrop-filter: blur(12px);
  text-align: center;
  transition: transform .3s;
}
.hero-qr-card:hover { transform: translateY(-4px); }
.hero-qr-img {
  width: 200px;
  height: 200px;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
  padding: 0;
  display: block;
  margin: 0 auto 12px;
  image-rendering: auto;
}
.hero-qr-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}
.hero-qr-sub { font-size: 11px; color: rgba(255,255,255,.65); }

/* Phone mockup */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; gap: 32px; }
.hero-blob {
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(ellipse, rgba(255,255,255,.08) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.phone-mockup {
  position: relative;
  z-index: 2;
  width: 240px;
  background: #fff;
  border-radius: 36px;
  padding: 12px 10px;
  box-shadow:
    0 0 0 8px rgba(255,255,255,.15),
    0 32px 80px rgba(0,0,0,.3);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.phone-screen {
  background: #F5F8FF;
  border-radius: 26px;
  overflow: hidden;
  min-height: 460px;
}
.phone-topbar {
  background: #fff;
  padding: 10px 14px 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 1px solid #EEF2FF;
}
.phone-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  margin: 8px;
  padding: 7px 12px;
  border-radius: 20px;
  font-size: 11px;
  color: #aaa;
  border: 1px solid var(--border);
}
.phone-banner {
  margin: 8px;
  background: linear-gradient(135deg, #1B6FD8, #4A9FFF);
  border-radius: 10px;
  padding: 12px;
  min-height: 68px;
}
.banner-title { font-size: 11px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.banner-sub { font-size: 9px; color: rgba(255,255,255,.8); margin-bottom: 8px; }
.banner-btn {
  background: #fff;
  color: var(--primary);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.phone-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 8px;
}
.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: #fff;
  border-radius: 8px;
  padding: 6px 4px;
  font-size: 9px;
  color: var(--text);
}
.cat-icon { font-size: 14px; }
.phone-merchants-label {
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  color: var(--navy);
}
.phone-merchants {
  display: flex;
  gap: 6px;
  padding: 4px 8px 12px;
  overflow-x: auto;
}
.merch-card {
  flex-shrink: 0;
  background: #fff;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 8px;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--border);
  white-space: nowrap;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* =============================================
   HIGHLIGHTS
   ============================================= */
.highlights {
  padding: 80px 0;
  background: #fff;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.highlight-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.highlight-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(27,111,216,.06) 0%, transparent 70%);
  border-radius: 50%;
}
.highlight-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.hl-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}
.hl-icon svg { width: 100%; height: 100%; }
.highlight-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.highlight-card p { font-size: 14px; color: var(--text-sub); line-height: 1.8; }

/* =============================================
   FEATURES
   ============================================= */
.features {
  padding: 100px 0;
  background: var(--bg);
}
.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
}
.feature-item:hover, .feature-item.active {
  background: #fff;
  border-color: rgba(27,111,216,.15);
  box-shadow: var(--shadow-sm);
}
.feature-item.active .feature-icon svg circle:first-child { fill: #1B6FD8; opacity: 1; }
.feature-item.active .feature-icon svg path,
.feature-item.active .feature-icon svg rect { stroke: #fff; }
.feature-icon { width: 44px; height: 44px; flex-shrink: 0; }
.feature-icon svg { width: 100%; height: 100%; }
.feature-text h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.feature-text p { font-size: 14px; color: var(--text-sub); line-height: 1.7; }

/* Preview phone */
.features-preview { display: flex; justify-content: center; }
.preview-phone {
  width: 220px;
  background: #fff;
  border-radius: 32px;
  padding: 12px 10px;
  box-shadow: var(--shadow-lg), 0 0 0 6px rgba(27,111,216,.1);
}
.preview-screen {
  background: #F5F8FF;
  border-radius: 22px;
  min-height: 420px;
  overflow: hidden;
}
.preview-panel { display: none; padding: 16px; }
.preview-panel.active { display: block; }

.pv-cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.pv-cat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 6px;
  text-align: center;
  font-size: 10px;
  color: var(--text);
  font-weight: 500;
}

.pv-merchant-list { display: flex; flex-direction: column; gap: 8px; }
.pv-merchant {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  border: 1px solid var(--border);
}
.pv-m-logo {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.pv-m-info { flex: 1; min-width: 0; }
.pv-m-info b { display: block; font-size: 11px; color: var(--text); }
.pv-m-info span { font-size: 9px; color: var(--text-light); }
.pv-btn {
  background: var(--primary);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.pv-news { display: flex; flex-direction: column; gap: 8px; }
.pv-news-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #fff;
  border-radius: 8px;
  padding: 10px;
}
.pv-news-tag {
  background: rgba(27,111,216,.12);
  color: var(--primary);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  flex-shrink: 0;
}
.pv-news-item p { font-size: 10px; color: var(--text); line-height: 1.5; }

.pv-qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 10px;
  text-align: center;
}
.pv-qr-box {
  width: 100px;
  height: 100px;
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pv-qr-inner { font-size: 10px; font-weight: 700; color: var(--primary); line-height: 1.6; }
.pv-qr-wrap p { font-size: 11px; font-weight: 700; color: var(--navy); }
.pv-qr-wrap span { font-size: 9px; color: var(--text-light); }

/* =============================================
   GUARANTEE
   ============================================= */
.guarantee {
  padding: 100px 0;
  background: #fff;
}
.guarantee-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.guarantee-left h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  margin-top: 8px;
  line-height: 1.3;
}
.guarantee-intro {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 32px;
}
.guarantee-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.guarantee-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.g-check { width: 24px; height: 24px; flex-shrink: 0; margin-top: 1px; }
.g-check svg { width: 100%; height: 100%; }
.guarantee-list strong { display: block; font-size: 15px; color: var(--navy); margin-bottom: 2px; }
.guarantee-list span { font-size: 13px; color: var(--text-sub); }

.g-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.g-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: var(--transition);
}
.g-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.g-card-icon { font-size: 32px; margin-bottom: 12px; }
.g-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.g-card p { font-size: 13px; color: var(--text-sub); }

/* =============================================
   CTA Section (index.html)
   ============================================= */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(160deg, #0D3B8E 0%, #1B6FD8 60%, #3A9AF5 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,255,255,.06) 0%, transparent 70%);
}
.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.cta-text p { font-size: 15px; color: rgba(255,255,255,.8); margin-bottom: 16px; }
.cta-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cta-perks span {
  font-size: 13px;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 500;
}
.btn-white {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 6px 24px rgba(0,0,0,.15);
}
.btn-white:hover {
  background: #f0f7ff;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,0,0,.2);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #0A1F4E;
  color: rgba(255,255,255,.7);
  padding: 48px 0 0;
}
.footer-inner {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 600px; }
.footer-col h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  text-align: center;
  padding: 20px 0;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.4); }

/* =============================================
   MODAL
   ============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 31, 78, .6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box {
  background: #fff;
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  transform: scale(.92) translateY(20px);
  transition: transform .35s cubic-bezier(.175, .885, .32, 1.275);
  box-shadow: var(--shadow-lg);
}
.modal-overlay.active .modal-box { transform: scale(1) translateY(0); }
.modal-icon { width: 80px; height: 80px; margin: 0 auto 24px; }
.modal-icon svg { width: 100%; height: 100%; }
.modal-box h3 { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.modal-box p { font-size: 15px; color: var(--text-sub); line-height: 1.7; margin-bottom: 28px; }
.modal-close { width: 100%; justify-content: center; }

/* =============================================
   ANIMATE ON SCROLL (minimal)
   ============================================= */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-content { gap: 40px; }
  .guarantee-inner { gap: 48px; }
  .join-form-wrap { padding: 40px 36px; }
}

/* nav-close 仅移动端显示 */
.nav-close { display: none; }

/* 移动端导航遮罩 */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,31,78,.45);
  backdrop-filter: blur(2px);
  z-index: 999;
}
.nav-backdrop.active { display: block; }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 24px 24px 32px;
    gap: 4px;
    box-shadow: -8px 0 40px rgba(0,0,0,.2);
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    z-index: 1002;
    overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  /* 关闭按钮 */
  .nav-close {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
  }
  .nav-close img { height: 32px; }
  .nav-close-btn {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-sub);
    background: var(--bg);
    flex-shrink: 0;
  }
  .nav-close-btn:hover { background: var(--border); }
  .nav-link { color: var(--text) !important; font-size: 16px; padding: 12px 14px; width: 100%; border-radius: 10px; }
  .nav-link:hover { background: var(--bg) !important; color: var(--primary) !important; }
  .nav-cta { background: var(--primary) !important; border-color: var(--primary) !important; color: #fff !important; width: 100%; justify-content: center; text-align: center; margin-top: 8px; }

  .hero-content { grid-template-columns: 1fr; text-align: center; padding-top: 100px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-perks { justify-content: center; }

  .highlights-grid { grid-template-columns: 1fr; }
  .features-layout { grid-template-columns: 1fr; }
  .features-preview { display: none; }
  .guarantee-inner { grid-template-columns: 1fr; gap: 40px; }
  .g-cards { grid-template-columns: 1fr 1fr; }
  .join-form-wrap { padding: 32px 20px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 12px; }
  .stat-divider { width: 60px; height: 1px; }
  .g-cards { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
}

/* Spin animation */
.spin { animation: rotate 1s linear infinite; }
@keyframes rotate { to { transform: rotate(360deg); } }
.hidden { display: none !important; }
