/* ==============================
   WONDERMATES — styles.css
   ============================== */

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

:root {
  --bg:      #080810;
  --bg2:     #0D0D1A;
  --bg3:     #10101E;
  --accent:  #FF4757;
  --accent2: #FF6B35;
  --grad:    linear-gradient(135deg, #FF4757 0%, #FF6B35 100%);
  --white:   #FFFFFF;
  --muted:   #8892A4;
  --dim:     #3A4459;
  --border:  rgba(255, 71,  87,  0.20);
  --borderS: rgba(255, 255, 255, 0.07);
  --shadow:  0 24px 64px rgba(0,0,0,.55);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* === UTILITIES === */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.section      { padding: 100px 0; }
.section-sm   { padding: 64px 0; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  background: rgba(255,71,87,.12);
  color: var(--accent);
  border: 1px solid rgba(255,71,87,.28);
  margin-bottom: 18px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 28px rgba(255,71,87,.38);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(255,71,87,.5); }

.btn-ghost {
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.18);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); border-color: rgba(255,255,255,.35); }

.btn-sm { padding: 10px 20px; font-size: 14px; }

/* Store buttons */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px;
  border-radius: 14px;
  border: 1.5px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
  color: #fff;
  transition: all .25s;
  cursor: pointer;
}
.store-btn:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.3); transform: translateY(-2px); }
.store-btn .sb-icon { font-size: 28px; line-height: 1; }
.store-btn .sb-text .sb-sub  { font-size: 10px; color: var(--muted); display: block; line-height: 1.2; }
.store-btn .sb-text .sb-name { font-size: 16px; font-weight: 700; display: block; }

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 18px 0;
  transition: all .3s ease;
}
.navbar.scrolled {
  background: rgba(8,8,16,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--borderS);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.3px;
}
.nav-logo img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  object-fit: contain;
  flex-shrink: 0;
  background: #ffffff;
  padding: 3px;
}
.logo-fallback {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: #fff;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }

.nav-right { display: flex; align-items: center; gap: 10px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .28s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 950;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .store-btn { font-size: 14px; }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  position: relative;
  overflow: hidden;
}
.hero-glow-1 {
  position: absolute;
  top: -100px; right: -150px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,71,87,.13) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  bottom: -200px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 580px; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.4); }
}
.eyebrow-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.hero h1 {
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 22px;
}
.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--borderS);
}
.hstat-num {
  font-size: 26px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.hstat-lbl { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* === PHONE MOCKUP === */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.phone-wrap {
  position: relative;
  display: inline-block;
}
.phone-glow {
  position: absolute;
  inset: -50px;
  background: radial-gradient(ellipse, rgba(255,71,87,.22) 0%, transparent 68%);
  border-radius: 50%;
  animation: glow-breathe 3.5s ease-in-out infinite;
}
@keyframes glow-breathe {
  0%,100% { opacity: .7; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.06); }
}
.phone-frame {
  width: 254px;
  height: 510px;
  background: linear-gradient(160deg, #12121F 0%, #080810 100%);
  border-radius: 44px;
  border: 2px solid rgba(255,71,87,.32);
  box-shadow: 0 0 0 1px rgba(255,255,255,.05), 0 32px 80px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.08);
  overflow: hidden;
  position: relative;
}
.phone-notch {
  width: 90px; height: 26px;
  background: var(--bg);
  border-radius: 0 0 18px 18px;
  margin: 0 auto;
  position: relative; z-index: 2;
}
.phone-screen { padding: 10px 14px 20px; }

/* Mock App UI */
.m-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.m-title { font-size: 15px; font-weight: 800; }
.m-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--grad); }

.m-card {
  background: rgba(255,71,87,.09);
  border: 1px solid rgba(255,71,87,.18);
  border-radius: 14px;
  padding: 13px;
  margin-bottom: 9px;
}
.m-dest { font-size: 13px; font-weight: 800; margin-bottom: 2px; }
.m-date { font-size: 10px; color: var(--muted); margin-bottom: 8px; }
.m-row  { display: flex; justify-content: space-between; align-items: center; }
.m-avatars { display: flex; }
.m-av {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--bg2);
  margin-left: -5px;
  background: var(--grad);
}
.m-av:first-child { margin-left: 0; background: #4ECDC4; }
.m-av:nth-child(2){ background: #45B7D1; }
.m-av:nth-child(3){ background: var(--grad); }
.m-badge {
  font-size: 9px; font-weight: 700;
  padding: 3px 7px;
  border-radius: 50px;
  background: rgba(255,71,87,.2);
  color: var(--accent);
}
.m-swipe {
  text-align: center;
  font-size: 10px;
  color: var(--dim);
  margin-top: 14px;
  letter-spacing: .5px;
}
.m-tabs {
  display: flex;
  justify-content: space-around;
  margin-top: 16px;
  padding-top: 10px;
  border-top: 1px solid var(--borderS);
}
.m-tab { font-size: 18px; opacity: .45; cursor: pointer; }
.m-tab.active { opacity: 1; }

/* Floating badges */
.float-badge {
  position: absolute;
  background: var(--bg3);
  border: 1px solid var(--borderS);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 8px 28px rgba(0,0,0,.45);
  animation: floaty 3.5s ease-in-out infinite;
  white-space: nowrap;
}
.float-badge-1 { bottom: 22%; left: -130px; animation-delay: 0s; }
.float-badge-2 { top: 18%;  right: -140px; animation-delay: 1s; }
@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.fb-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
}
.fb-name  { font-size: 12px; font-weight: 700; color: #fff; }
.fb-sub   { font-size: 10px; color: var(--muted); }

/* === SECTION HEADER === */
.section-hd { text-align: center; margin-bottom: 64px; }
.section-hd h2 {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 900;
  letter-spacing: -1.2px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-hd p { font-size: 17px; color: var(--muted); max-width: 500px; margin: 0 auto; }

/* === FEATURE CARDS === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}
.feat-card {
  background: var(--bg3);
  border: 1px solid var(--borderS);
  border-radius: 24px;
  padding: 32px 28px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.feat-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,71,87,.5), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.feat-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,.35), 0 0 50px rgba(255,71,87,.07); border-color: var(--border); }
.feat-card:hover::after { opacity: 1; }

.feat-icon {
  width: 54px; height: 54px;
  border-radius: 15px;
  background: rgba(255,71,87,.1);
  border: 1px solid rgba(255,71,87,.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.feat-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 10px; }
.feat-card p  { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* === SOCIAL PROOF === */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 72px;
  border: 1px solid var(--borderS);
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg2);
}
.stat-cell {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid var(--borderS);
  transition: background .2s;
}
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: var(--bg3); }
.stat-num {
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-lbl { font-size: 14px; color: var(--muted); }

/* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.testi-card {
  background: var(--bg2);
  border: 1px solid var(--borderS);
  border-radius: 22px;
  padding: 26px 24px;
}
.testi-stars { color: var(--accent); font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }
.testi-text  { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-av {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px;
  flex-shrink: 0;
}
.testi-name   { font-size: 13px; font-weight: 700; }
.testi-handle { font-size: 11px; color: var(--dim); margin-top: 1px; }

/* === CTA BAND === */
.cta-band {
  background: var(--bg2);
  border-top: 1px solid var(--borderS);
  border-bottom: 1px solid var(--borderS);
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.cta-band p { font-size: 17px; color: var(--muted); margin-bottom: 38px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* === FOOTER === */
.footer {
  background: var(--bg2);
  padding: 72px 0 32px;
  border-top: 1px solid var(--borderS);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin: 14px 0 22px;
  max-width: 270px;
}
.footer-socials { display: flex; gap: 10px; }
.f-soc {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--borderS);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: var(--muted);
  transition: all .2s;
}
.f-soc:hover { background: rgba(255,71,87,.14); border-color: var(--border); color: var(--accent); transform: translateY(-2px); }

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a { font-size: 14px; color: var(--muted); transition: color .2s; }
.footer-col ul a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--borderS);
}
.footer-bottom p { font-size: 13px; color: var(--dim); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font-size: 13px; color: var(--dim); transition: color .2s; }
.footer-legal a:hover { color: var(--muted); }

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding: 148px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 360px;
  background: radial-gradient(ellipse, rgba(255,71,87,.13) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
  position: relative;
}
.page-hero p { font-size: 18px; color: var(--muted); max-width: 500px; margin: 0 auto; position: relative; }

/* === FEATURES PAGE DETAIL === */
.feat-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.feat-detail.rev { direction: rtl; }
.feat-detail.rev > * { direction: ltr; }
.feat-detail-body { max-width: 480px; }
.feat-detail-body h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: -.6px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.feat-detail-body p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 22px; }
.feat-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 9px;
}
.feat-bullets li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
  flex-shrink: 0;
}

.feat-visual {
  background: var(--bg2);
  border: 1px solid var(--borderS);
  border-radius: 28px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 40px;
}
.feat-visual::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 260px; height: 160px;
  background: radial-gradient(ellipse, rgba(255,71,87,.12) 0%, transparent 70%);
}
.feat-visual-emoji { font-size: 72px; line-height: 1; margin-bottom: 18px; display: block; }
.feat-visual-label { font-size: 17px; font-weight: 700; color: #fff; }
.feat-visual-sub   { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* Pro box */
.pro-box {
  background: var(--bg2);
  border: 1px solid var(--borderS);
  border-radius: 32px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pro-box::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 500px; height: 250px;
  background: radial-gradient(ellipse, rgba(255,71,87,.14) 0%, transparent 70%);
}
.pro-box h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 14px;
  position: relative;
}
.pro-box > p {
  font-size: 16px;
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 40px;
  position: relative;
}
.pro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
  position: relative;
}
.pro-item {
  background: rgba(255,71,87,.06);
  border: 1px solid rgba(255,71,87,.14);
  border-radius: 18px;
  padding: 22px 16px;
  text-align: center;
}
.pro-item .p-icon { font-size: 30px; margin-bottom: 10px; }
.pro-item .p-name { font-size: 13px; font-weight: 700; }

/* === LEGAL PAGES === */
.legal-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 140px 24px 100px;
}
.legal-wrap h1 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.legal-updated {
  font-size: 13px;
  color: var(--dim);
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--borderS);
}
.legal-section { margin-bottom: 38px; }
.legal-section h2 { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.legal-section p, .legal-section li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 10px;
}
.legal-section ul { padding-left: 20px; list-style: disc; }
.legal-section ol { padding-left: 20px; list-style: decimal; }
.legal-section a { color: var(--accent); }
.legal-section a:hover { text-decoration: underline; }
.legal-section strong { color: #fff; font-weight: 600; }

/* === CONTACT PAGE === */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.about-col h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  letter-spacing: -.7px;
  line-height: 1.2;
  margin-bottom: 18px;
}
.about-col p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
.contact-items { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.c-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg2);
  border: 1px solid var(--borderS);
  border-radius: 16px;
  transition: border-color .2s;
}
.c-item:hover { border-color: var(--border); }
.c-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: rgba(255,71,87,.1);
  border: 1px solid rgba(255,71,87,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}
.c-label { font-size: 11px; color: var(--dim); text-transform: uppercase; letter-spacing: .5px; font-weight: 600; }
.c-value { font-size: 14px; color: #fff; font-weight: 500; margin-top: 2px; }
.c-value a { color: #fff; }
.c-value a:hover { color: var(--accent); }

.socials-col h3 { font-size: 18px; font-weight: 800; margin-bottom: 18px; }
.social-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.soc-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg2);
  border: 1px solid var(--borderS);
  border-radius: 16px;
  transition: all .22s;
}
.soc-card:hover { border-color: var(--border); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.3); }
.soc-card-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,71,87,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.soc-card-name   { font-size: 13px; font-weight: 700; }
.soc-card-handle { font-size: 11px; color: var(--dim); margin-top: 2px; }

/* === SCROLL ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .10s; }
.delay-2 { transition-delay: .20s; }
.delay-3 { transition-delay: .30s; }
.delay-4 { transition-delay: .40s; }

/* === DIVIDER === */
.divider {
  width: 60px; height: 3px;
  background: var(--grad);
  border-radius: 2px;
  margin: 0 auto 20px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .float-badge { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feat-detail { gap: 48px; }
  .pro-box { padding: 48px 32px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }

  .hero .container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-content { max-width: 100%; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-ctas  { justify-content: center; }
  .hero-stats { justify-content: center; }

  .stats-row { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid var(--borderS); }
  .stat-cell:last-child { border-bottom: none; }

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

  .feat-detail { grid-template-columns: 1fr; gap: 36px; }
  .feat-detail.rev { direction: ltr; }

  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .social-cards { grid-template-columns: 1fr; }

  .pro-box { padding: 36px 24px; border-radius: 22px; }
  .legal-wrap { padding: 120px 20px 80px; }

  .page-hero { padding: 120px 0 60px; }
}

@media (max-width: 480px) {
  .hero h1    { letter-spacing: -1px; }
  .hero-ctas  { flex-direction: column; align-items: center; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .cta-btns   { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal  { flex-wrap: wrap; justify-content: center; }
}
