/* ══════════════════════════════════════════════════════════════
   MSVR GROUP — Website Styles
   Design language borrowed from the MSVR Rewards app:
   light blue-on-white, soft rounded cards, pill labels,
   royal-blue display type, gentle blue shadows.
   ══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Palette — sampled from the Rewards app screens */
  --blue-900: #1B3A8F;   /* deep headline blue */
  --blue-800: #2450C0;   /* display headings */
  --blue-700: #2563EB;
  --blue-500: #3F87F5;   /* primary buttons */
  --blue-300: #7FB0F7;
  --sky-150: #DCEAFB;
  --sky-100: #E9F1FC;    /* soft panels */
  --mist:    #F3F7FD;    /* page alt background */
  --white:   #ffffff;
  --slate:   #5C7699;    /* secondary text */
  --slate-light: #8AA2C0;
  --line:    #D9E5F4;
  --gold:    #FFC72C;    /* bee accent — used sparingly */
  --gold-dark: #E8AC00;

  --shadow-sm: 0 2px 10px rgba(36, 80, 192, 0.07);
  --shadow-md: 0 10px 30px rgba(36, 80, 192, 0.10);
  --shadow-lg: 0 24px 60px rgba(27, 58, 143, 0.16);

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --font-display: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: #22395C;
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  color: var(--blue-800);
  letter-spacing: -0.015em;
}

a { text-decoration: none; color: var(--blue-700); transition: all 0.25s ease; }
img { max-width: 100%; height: auto; }

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

/* Eyebrow label — the app's "MSVR REWARDS" / "CLAIM REWARD" device */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 14px;
}

/* ══════════════ HEADER ══════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1180px; margin: 0 auto;
}
.nav-links { display: flex; gap: 34px; list-style: none; }
.nav-links a {
  font-weight: 600; font-size: 15px; color: var(--slate);
  position: relative; padding: 4px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue-700); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 3px; background: var(--blue-500);
  border-radius: 3px; transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--blue-500); color: var(--white) !important;
  padding: 11px 26px; border-radius: 14px;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  box-shadow: 0 6px 16px rgba(63, 135, 245, 0.35);
}
.nav-cta:hover { background: var(--blue-700); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2.5px; background: var(--blue-800); border-radius: 4px; }

.mobile-nav {
  display: none; position: fixed; inset: 0; background: var(--white);
  z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
}
.mobile-nav.active { display: flex; }
.mobile-nav a { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--blue-800); }
.mobile-close { position: absolute; top: 20px; right: 24px; font-size: 34px; cursor: pointer; color: var(--blue-800); }

/* ══════════════ HERO ══════════════ */
.hero {
  padding: 150px 0 110px;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(63,135,245,0.14), transparent 65%),
    linear-gradient(180deg, var(--mist) 0%, var(--white) 90%);
  position: relative; overflow: hidden;
}
.hero-content { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.hero-text h1 { font-size: 52px; margin-bottom: 20px; color: var(--blue-800); }
.hero-text h1 .soft { color: var(--blue-500); }
.hero-text p { font-size: 18px; color: var(--slate); margin-bottom: 34px; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Small trust chips under hero copy */
.hero-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 30px; }
.chip {
  background: var(--white); border: 1px solid var(--line);
  padding: 8px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600; color: var(--blue-700);
  box-shadow: var(--shadow-sm);
}

/* ══════════════ BUTTONS ══════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 32px; border-radius: 16px;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  border: none; cursor: pointer; transition: all 0.28s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-700) 100%);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(63, 135, 245, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(63, 135, 245, 0.45); color: var(--white); }
.btn-secondary {
  background: var(--white); color: var(--blue-700);
  border: 1.5px solid var(--sky-150); box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { border-color: var(--blue-300); color: var(--blue-700); transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #3A2E00;
  box-shadow: 0 10px 24px rgba(255, 199, 44, 0.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(255, 199, 44, 0.5); color: #3A2E00; }

/* ══════════════ SECTIONS ══════════════ */
.section { padding: 100px 0; }
.section-alt { background: linear-gradient(180deg, var(--mist) 0%, var(--white) 100%); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-title { font-size: 38px; margin-bottom: 14px; }
.section-subtitle { color: var(--slate); font-size: 17px; }

/* ══════════════ STAT BAND ══════════════ */
.stats-band {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px;
}
.stat-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 26px 18px; text-align: center;
  box-shadow: var(--shadow-sm); transition: all 0.3s ease;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-card .stat-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--slate-light); margin-bottom: 6px;
}
.stat-card .stat-number {
  font-family: var(--font-display); font-size: 34px; font-weight: 800; color: var(--blue-800);
  line-height: 1.1;
}
.stat-card .stat-sub { font-size: 12.5px; color: var(--slate); margin-top: 4px; }

/* ══════════════ CARD GRID ══════════════ */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 26px; }
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 34px;
  transition: all 0.3s ease; box-shadow: var(--shadow-sm);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--sky-150); }
.card-icon {
  width: 54px; height: 54px; border-radius: 16px;
  background: linear-gradient(135deg, var(--sky-100) 0%, var(--sky-150) 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 22px; color: var(--blue-700);
}
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--slate); font-size: 15px; }

/* ══════════════ CHANNEL CARDS ══════════════ */
.channel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.channel-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow-sm); transition: all 0.3s ease;
  display: flex; flex-direction: column;
}
.channel-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.channel-tag {
  align-self: flex-start;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue-500); background: var(--sky-100);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 18px;
}
.channel-card h3 { font-size: 22px; margin-bottom: 10px; }
.channel-card > p { color: var(--slate); font-size: 15px; margin-bottom: 22px; }
.channel-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: auto; }
.metric {
  background: var(--mist); border-radius: var(--radius-sm); padding: 14px 12px; text-align: center;
}
.metric .m-value { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--blue-800); }
.metric .m-label { font-size: 11px; font-weight: 600; color: var(--slate); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }

/* ══════════════ PLATFORM (feature rows) ══════════════ */
.platform-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.platform-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.platform-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.platform-card h3 { font-size: 19px; margin: 16px 0 8px; }
.platform-card > p { color: var(--slate); font-size: 14.5px; margin-bottom: 16px; }
.feature-list { list-style: none; }
.feature-list li {
  font-size: 14px; color: #33507A; padding: 7px 0 7px 30px; position: relative;
  border-top: 1px dashed var(--line);
}
.feature-list li:first-child { border-top: none; }
.feature-list li::before {
  content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; left: 2px; top: 8px;
  color: var(--blue-500); font-size: 11px;
  background: var(--sky-100); width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ══════════════ PHONE MOCKUP — light app theme ══════════════ */
.phone-mockup {
  width: 280px; height: 560px;
  background: var(--blue-800);
  border-radius: 42px; padding: 11px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 32px;
  background: linear-gradient(180deg, #F5F9FF 0%, #E9F1FC 100%);
  overflow: hidden; display: flex; flex-direction: column;
  padding: 22px 18px; color: #22395C;
}
.app-header {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue-500); margin-bottom: 10px;
}
.app-title { font-family: var(--font-display); font-size: 19px; font-weight: 800; color: var(--blue-800); margin-bottom: 16px; }
.app-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 16px; padding: 14px; margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(36, 80, 192, 0.06);
}
.app-card-label {
  font-size: 10px; font-weight: 700; color: var(--slate-light);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.app-card-value { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--blue-800); }
.app-card-small { font-size: 12px; color: var(--slate); }
.app-btn {
  background: var(--blue-500); color: var(--white); text-align: center;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  padding: 13px; border-radius: 14px; margin-top: auto;
  box-shadow: 0 6px 14px rgba(63,135,245,0.35);
}
.app-pill {
  display: inline-block; padding: 5px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 600;
}
.pill-blue { background: var(--sky-100); color: var(--blue-700); }
.pill-gold { background: #FFF3D1; color: #8A6400; }

/* Floating badges around the hero phone */
.hero-visual { display: flex; justify-content: center; position: relative; }
.float-badge {
  position: absolute; background: var(--white);
  border: 1px solid var(--line); border-radius: 16px;
  padding: 12px 18px; box-shadow: var(--shadow-md);
  font-size: 13px; font-weight: 600; color: var(--blue-800);
  display: flex; align-items: center; gap: 10px;
  animation: floaty 5s ease-in-out infinite;
}
.float-badge i { color: var(--blue-500); }
.float-badge.fb-1 { top: 8%; left: -4%; animation-delay: 0s; }
.float-badge.fb-2 { bottom: 14%; right: -6%; animation-delay: 1.6s; }
.float-badge.fb-3 { top: 46%; right: -12%; animation-delay: 3s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ══════════════ SHOWCASE GRID ══════════════ */
.showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; align-items: start; }
.showcase-item { text-align: center; }
.showcase-item h4 { margin-top: 18px; font-size: 17px; }
.showcase-item p { color: var(--slate); font-size: 14px; margin-top: 6px; }

/* ══════════════ REWARDS / SPIN WHEEL ══════════════ */
.rewards-section {
  background:
    radial-gradient(700px 400px at 15% 20%, rgba(63,135,245,0.10), transparent 60%),
    linear-gradient(180deg, var(--white) 0%, var(--mist) 100%);
}
.rewards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.rewards-copy h2 { font-size: 38px; margin-bottom: 16px; }
.rewards-copy > p { color: var(--slate); font-size: 17px; margin-bottom: 26px; }

.reward-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 26px; }
.reward-stat {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 18px 20px; box-shadow: var(--shadow-sm);
}
.reward-stat .m-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate-light);
}
.reward-stat .m-value { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--blue-800); }

.wheel-stage {
  background: var(--white); border: 1px solid var(--line); border-radius: 28px;
  padding: 40px; box-shadow: var(--shadow-lg); text-align: center;
  position: relative;
}
.wheel-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--line); border-radius: 100px;
  padding: 8px 20px; font-family: var(--font-display); font-weight: 700; font-size: 14px;
  color: var(--blue-800); box-shadow: var(--shadow-sm); margin-bottom: 26px;
}
.wheel-badge i { color: var(--blue-500); }

.wheel-wrap { position: relative; width: 320px; height: 320px; margin: 0 auto; }
.wheel-pointer {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0; z-index: 3;
  border-left: 16px solid transparent; border-right: 16px solid transparent;
  border-top: 26px solid var(--blue-800);
  filter: drop-shadow(0 3px 4px rgba(27,58,143,0.3));
}
.wheel {
  width: 100%; height: 100%; border-radius: 50%;
  background: conic-gradient(
    var(--blue-500) 0deg 45deg,
    #F0F6FF 45deg 90deg,
    var(--blue-800) 90deg 135deg,
    #E2EDFC 135deg 180deg,
    var(--blue-500) 180deg 225deg,
    #F0F6FF 225deg 270deg,
    var(--blue-800) 270deg 315deg,
    #E2EDFC 315deg 360deg
  );
  border: 12px solid var(--white);
  box-shadow: 0 0 0 1px var(--line), 0 18px 44px rgba(27, 58, 143, 0.22), inset 0 0 30px rgba(27,58,143,0.12);
  position: relative;
  transition: transform 4.2s cubic-bezier(0.15, 0.9, 0.28, 1);
}
.wheel-label {
  position: absolute; top: 50%; left: 50%;
  transform-origin: 0 0;
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  background: rgba(255,255,255,0.82); color: var(--blue-800);
  padding: 4px 12px; border-radius: 100px;
  box-shadow: 0 2px 6px rgba(27,58,143,0.15);
}
.wheel-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 92px; height: 92px; border-radius: 50%;
  background: linear-gradient(160deg, var(--blue-500), var(--blue-800));
  border: 6px solid var(--white);
  color: var(--white); font-family: var(--font-display); font-weight: 800; font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2;
  box-shadow: 0 10px 24px rgba(36, 80, 192, 0.4);
  transition: transform 0.2s ease;
}
.wheel-center:hover { transform: translate(-50%, -50%) scale(1.06); }
.wheel-result {
  margin-top: 26px; border-top: 1px solid var(--line); padding-top: 22px;
}
.wheel-result .app-header { margin-bottom: 4px; }
.wheel-result h4 { font-size: 20px; }
.wheel-result p { font-size: 14px; color: var(--slate); }

/* ══════════════ NETWORKS ══════════════ */
.network-row { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.network-tile {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 22px 40px; font-family: var(--font-display); font-weight: 800; font-size: 19px;
  box-shadow: var(--shadow-sm); transition: all 0.3s ease;
}
.network-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.net-vodacom { color: #e60000; }
.net-telkom { color: #0099ff; }
.net-mtn { color: #E8AC00; }
.net-cellc { color: #1B1B1B; }

/* ══════════════ FOOTPRINT ══════════════ */
.footprint-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.province-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.province-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.province-card h4 {
  font-size: 15px; margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
}
.province-card h4 i { color: var(--blue-500); font-size: 13px; }
.town-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.town-chips span {
  background: var(--mist); color: #3A5A87;
  font-size: 11.5px; font-weight: 600;
  padding: 4px 11px; border-radius: 100px;
}

/* ══════════════ CTA ══════════════ */
.cta-section {
  background: linear-gradient(140deg, var(--blue-800) 0%, var(--blue-700) 55%, var(--blue-500) 100%);
  padding: 90px 0; text-align: center; color: var(--white);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -40%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
}
.cta-section h2 { color: var(--white); font-size: 38px; margin-bottom: 14px; }
.cta-section p { opacity: 0.85; font-size: 18px; margin-bottom: 34px; max-width: 620px; margin-left: auto; margin-right: auto; }

/* ══════════════ FOOTER ══════════════ */
.footer { background: #0F2456; color: rgba(255,255,255,0.7); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer h4 { color: var(--white); font-size: 15px; margin-bottom: 16px; }
.footer p { font-size: 14px; line-height: 1.8; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; font-size: 13px;
}
.footer-socials { display: flex; gap: 16px; }
.footer-socials a { color: rgba(255,255,255,0.6); font-size: 18px; }
.footer-socials a:hover { color: var(--gold); }

/* ══════════════ ABOUT PAGE ══════════════ */
.about-hero {
  padding: 150px 0 90px;
  background:
    radial-gradient(700px 380px at 80% 0%, rgba(63,135,245,0.13), transparent 60%),
    linear-gradient(180deg, var(--mist) 0%, var(--white) 100%);
  text-align: center;
}
.about-hero h1 { font-size: 50px; margin-bottom: 16px; }
.about-hero p { font-size: 18px; color: var(--slate); max-width: 660px; margin: 0 auto; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card {
  text-align: center; padding: 34px 22px;
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: all 0.3s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 58px; height: 58px; border-radius: 18px; margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--sky-100), var(--sky-150));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--blue-700);
}
.value-card h4 { font-size: 18px; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--slate); }

.story-panel {
  background: linear-gradient(160deg, var(--sky-100), var(--white));
  border: 1px solid var(--line); border-radius: 28px;
  padding: 48px; text-align: center; box-shadow: var(--shadow-sm);
}

/* ══════════════ CONTACT PAGE ══════════════ */
.contact-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 7px; color: var(--blue-900); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 15px; color: #22395C;
  transition: all 0.25s ease; background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(63, 135, 245, 0.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }

.contact-info-card {
  background: linear-gradient(160deg, var(--sky-100), var(--white));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-sm);
}
.contact-info-item { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-info-item i {
  color: var(--blue-500); font-size: 15px; margin-top: 2px;
  background: var(--white); width: 34px; height: 34px; min-width: 34px;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
}
.contact-info-item h4 { font-size: 14px; margin-bottom: 3px; }
.contact-info-item p { color: var(--slate); font-size: 14px; }

.form-success { display: none; text-align: center; padding: 48px 30px; }
.form-success.active { display: block; }
.form-success i { font-size: 52px; color: var(--blue-500); margin-bottom: 16px; }

/* ══════════════ ANIMATIONS ══════════════ */
.fade-in { opacity: 0; transform: translateY(22px); transition: all 0.65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  .float-badge { animation: none; }
  html { scroll-behavior: auto; }
}

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-chips { justify-content: center; }
  .hero-visual { margin-top: 50px; }
  .stats-band { grid-template-columns: repeat(3, 1fr); }
  .channel-grid, .platform-grid, .rewards-grid { grid-template-columns: 1fr; }
  .rewards-grid { gap: 44px; }
  .showcase-grid { grid-template-columns: 1fr; gap: 48px; }
  .footprint-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .float-badge.fb-3 { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 125px 0 70px; }
  .hero-text h1 { font-size: 34px; }
  .section { padding: 64px 0; }
  .section-title { font-size: 29px; }
  .about-hero h1 { font-size: 36px; }
  .cta-section h2 { font-size: 30px; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: 1fr; }
  .footprint-grid, .footer-grid, .values-grid { grid-template-columns: 1fr; }
  .channel-metrics { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .phone-mockup { width: 240px; height: 480px; }
  .wheel-wrap { width: 260px; height: 260px; }
  .wheel-stage { padding: 26px 18px; }
  .float-badge { display: none; }
  .footer-bottom { flex-direction: column; gap: 14px; }
}
