/*
 * ===========================================================
 * Project      : PlayPerks
 * Company      : OCDLab
 * Version      : 1.0.0
 * Copyright    : © 2026 OCDLab. All Rights Reserved.
 *
 * Proprietary and Confidential.
 * This source code is the intellectual property of OCDLab.
 * Unauthorized copying, modification, distribution, disclosure,
 * reverse engineering, or use is strictly prohibited without
 * prior written permission from OCDLab.
 * ===========================================================
 */
/* ──────────────────────────────────────────────
   PlayPerks Documentation Website — styles.css
   ────────────────────────────────────────────── */

/* 1. CSS VARIABLES & RESET */
:root {
  --brand-purple: #5c5ce0;
  --brand-purple-dark: #4444c0;
  --brand-purple-light: #e8e8ff;
  --brand-violet: #7c3aed;
  --brand-green: #22c55e;
  --brand-pink: #f093fb;
  --brand-cyan: #00f2fe;
  --text-primary: #0f0f1a;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;
  --surface-0: #ffffff;
  --surface-1: #f8f9ff;
  --surface-2: #f1f0fe;
  --border: #e5e5f0;
  --border-strong: #d1d5db;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1), 0 8px 24px rgba(0,0,0,0.06);
  --shadow-colored: 0 8px 32px rgba(92,92,224,0.22);
  --font-body: 'Inter', 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 70px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--surface-0);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
code { font-family: 'JetBrains Mono', 'Fira Code', monospace; background: #f0f0fe; padding: 2px 6px; border-radius: 4px; font-size: 0.85em; color: var(--brand-purple); }

/* 2. LAYOUT UTILITIES */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

/* 3. GRADIENT TEXT */
.gradient-text {
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-violet), #f093fb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.btn-lg { padding: 15px 30px; font-size: 16px; border-radius: var(--radius-lg); }
.btn-sm { padding: 9px 18px; font-size: 14px; }

.btn-primary {
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-violet));
  color: #fff;
  box-shadow: var(--shadow-colored);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(92,92,224,0.35); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1.5px solid var(--border-strong);
}
.btn-ghost:hover { background: var(--surface-1); color: var(--text-primary); border-color: var(--brand-purple); }

.btn-white {
  background: #fff;
  color: var(--brand-purple);
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.18); }

.btn-ghost-white {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.6); }

/* 5. SECTION HEADERS */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: var(--brand-purple-light);
  color: var(--brand-purple);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   6. NAVIGATION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.nav-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-link:hover { color: var(--brand-purple); background: var(--surface-2); }

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 4px;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav-overlay.open { display: block; }
.mobile-nav-overlay.open .mobile-nav-drawer { transform: translateX(0); }
.mobile-nav-close {
  align-self: flex-end;
  background: var(--surface-1);
  border: none;
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-bottom: 16px;
}
.mobile-nav-link {
  display: block;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  text-decoration: none;
}
.mobile-nav-link:hover { background: var(--surface-2); color: var(--brand-purple); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   7. HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: calc(var(--nav-height) + 80px) 80px 80px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hero-bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}
.orb-1 { width: 600px; height: 600px; background: var(--brand-purple); top: -200px; right: -100px; animation: orbFloat1 12s ease-in-out infinite; }
.orb-2 { width: 400px; height: 400px; background: var(--brand-violet); bottom: -100px; left: -100px; animation: orbFloat2 15s ease-in-out infinite; }
.orb-3 { width: 300px; height: 300px; background: var(--brand-pink); top: 50%; left: 50%; animation: orbFloat3 10s ease-in-out infinite; }

@keyframes orbFloat1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-40px,30px)} }
@keyframes orbFloat2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(30px,-40px)} }
@keyframes orbFloat3 { 0%,100%{transform:translate(-50%,-50%)} 50%{transform:translate(-45%,-55%)} }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-purple-light);
  color: var(--brand-purple);
  border: 1px solid rgba(92,92,224,0.25);
  border-radius: 99px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  width: fit-content;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--brand-green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 3px rgba(34,197,94,0.2)} 50%{box-shadow:0 0 0 6px rgba(34,197,94,0.1)} }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat-item { display: flex; flex-direction: column; gap: 2px; }
.stat-number { font-size: 28px; font-weight: 900; color: var(--brand-purple); font-family: var(--font-display); }
.stat-label { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Hero Mockup */
.hero-visual { position: relative; display: flex; justify-content: center; }

.hero-mockup { position: relative; }

.mockup-browser {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.05);
  overflow: hidden;
  width: 440px;
  max-width: 100%;
}

.mockup-browser-bar {
  background: #f5f5f5;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.url-bar { flex: 1; background: #fff; border-radius: 6px; padding: 6px 12px; font-size: 12px; color: var(--text-muted); margin-left: 8px; border: 1px solid var(--border); }

.mockup-content { padding: 20px; }

.game-preview-card {
  background: var(--surface-1);
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid var(--border);
}
.game-preview-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.game-icon-badge { font-size: 28px; }
.game-preview-title { font-weight: 800; font-size: 15px; }
.game-preview-sub { font-size: 12px; color: var(--text-muted); }

.game-preview-screen {
  background: linear-gradient(160deg, #1a0a4a, #2d1b69, #1a0a4a);
  border-radius: 10px;
  padding: 16px;
  position: relative;
  overflow: hidden;
  min-height: 120px;
  margin-bottom: 12px;
}

.bubble-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}

.bubble {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  animation: bubbleFloat 3s ease-in-out infinite;
}
.b1{background:#f093fb;animation-delay:0s}
.b2{background:#4facfe;animation-delay:.1s}
.b3{background:#43e97b;animation-delay:.2s}
.b4{background:#f6d365;animation-delay:.3s}
.b5{background:#f093fb;animation-delay:.4s}
.b6{background:#4facfe;animation-delay:.5s}
.b7{background:#43e97b;animation-delay:.6s}
.b8{background:#f6d365;animation-delay:.7s}
.b9{background:#f093fb;animation-delay:.8s}
.b10{background:#4facfe;animation-delay:.9s}
.b11{background:#43e97b;animation-delay:1s}
.b12{background:#f6d365;animation-delay:1.1s}

@keyframes bubbleFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }

.bubble.burst {
  animation: bubbleBurst 0.4s ease-out forwards;
}

@keyframes bubbleBurst {
  0% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0px rgba(255,255,255,0.7);
  }
  50% {
    transform: scale(1.4);
    opacity: 0.8;
    box-shadow: 0 0 15px 10px rgba(255,255,255,0);
  }
  100% {
    transform: scale(2);
    opacity: 0;
    box-shadow: 0 0 0 0px rgba(255,255,255,0);
  }
}

.score-overlay {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 11px;
  color: #fff;
  font-weight: 600;
}

.game-cta-bar {
  display: flex;
  gap: 8px;
  align-items: center;
}
.player-input {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  color: var(--text-muted);
}
.play-btn {
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-violet));
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

/* Floating cards */
.floating-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  min-width: 180px;
  animation: floatCard 4s ease-in-out infinite;
}
.floating-card strong { display: block; font-size: 13px; font-weight: 700; color: var(--text-primary); }
.floating-card small { display: block; font-size: 11px; color: var(--text-muted); }
.reward-icon { font-size: 20px; }

.reward-card { bottom: 20px; left: -60px; animation-delay: 0.5s; }
.email-card { top: 30px; right: -50px; animation-delay: 1.5s; }

@keyframes floatCard { 0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(-8px) rotate(1deg)} }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   8. SOCIAL PROOF STRIP
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.social-proof-strip {
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
}

.trust-badge-icon { font-size: 18px; flex-shrink: 0; }

.trust-badge-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}

.trust-divider {
  width: 1px;
  height: 28px;
  background: var(--border-strong);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   9. FEATURES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.features-section { background: var(--surface-0); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(92,92,224,0.03));
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(92,92,224,0.25);
}
.feature-card:hover::before { opacity: 1; }

.feature-card--large {
  grid-column: span 2;
  background: linear-gradient(135deg, #f8f7ff, #fff);
  border-color: rgba(92,92,224,0.2);
}

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.feature-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}
.feature-list li {
  font-size: 13.5px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   10. GAMES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.games-section { background: var(--surface-1); }

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

.game-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
  border: 1px solid rgba(255,255,255,0.5);
}
.game-card:hover { transform: translateY(-6px); }
.game-card-inner { display: flex; flex-direction: column; height: 100%; background: #fff; }

.game-card-header {
  padding: 48px 36px;
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
}

.shooter-gradient { background: linear-gradient(135deg, #1a0a4a, #4a1a7a, #2d1b69); }
.runner-gradient { background: linear-gradient(135deg, #0a2a1a, #1a4a2a, #0d3320); }

/* Real game banner image header — fixed equal size on both cards */
.game-banner-header {
  padding: 0;
  position: relative;
  height: 260px;       /* fixed height — same for both cards */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  flex-shrink: 0;
}
.game-banner-header .game-number {
  position: absolute;
  top: 12px;
  left: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 6px;
  padding: 4px 10px;
  z-index: 2;
}
.game-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* fills the fixed-height box, crops edges equally */
  object-position: center;  /* always centred */
  display: block;
  transition: transform 0.45s ease;
}
.game-card:hover .game-banner-img {
  transform: scale(1.05);
}

.game-number {
  font-size: 80px;
  font-weight: 900;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  position: absolute;
  bottom: -10px;
  left: 20px;
  font-family: var(--font-display);
}

/* Bubble visualization in card header */
.game-visual-bubbles {
  position: relative;
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vis-bubble {
  position: absolute;
  border-radius: 50%;
  animation: visBubbleFloat 4s ease-in-out infinite;
}
.vb1{width:50px;height:50px;background:rgba(240,147,251,0.85);top:0;left:20%;animation-delay:0s}
.vb2{width:40px;height:40px;background:rgba(79,172,254,0.85);top:20px;left:45%;animation-delay:0.3s}
.vb3{width:45px;height:45px;background:rgba(67,233,123,0.85);top:5px;left:68%;animation-delay:0.6s}
.vb4{width:38px;height:38px;background:rgba(246,211,101,0.85);top:60px;left:10%;animation-delay:0.9s}
.vb5{width:52px;height:52px;background:rgba(240,147,251,0.7);top:55px;left:35%;animation-delay:1.2s}
.vb6{width:36px;height:36px;background:rgba(79,172,254,0.7);top:65px;left:62%;animation-delay:1.5s}
@keyframes visBubbleFloat {0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
.shooter-cannon { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); font-size: 28px; }

/* Runner visualization */
.game-visual-runner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.runner-lane {
  display: flex;
  align-items: center;
  gap: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px 24px;
  width: 100%;
  position: relative;
}
.runner-char { font-size: 32px; animation: runnerBounce 0.5s ease-in-out infinite alternate; }
@keyframes runnerBounce {0%{transform:translateY(0)}100%{transform:translateY(-8px)}}
.runner-obstacle { font-size: 24px; animation: obstacleMove 2s linear infinite; }
.runner-obstacle.r2 { animation-delay: 0.8s; font-size: 28px; }
@keyframes obstacleMove {0%{transform:translateX(20px)}100%{transform:translateX(-160px)}}
.runner-score-badge {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 8px 18px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

.game-card-body { padding: 32px 36px; flex: 1; }

.game-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}
.game-tagline {
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-purple);
  margin-bottom: 16px;
}
.game-desc {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}

.game-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.tag {
  background: var(--brand-purple-light);
  color: var(--brand-purple);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
}
.tag-runner { background: #dcfce7; color: #15803d; }

.game-info-row { display: flex; gap: 20px; flex-wrap: wrap; }
.game-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   11. HOW IT WORKS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hiw-section { background: var(--surface-0); }

.steps-wrapper { position: relative; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.steps-connector {
  position: absolute;
  top: 52px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-purple), var(--brand-violet), var(--brand-pink));
  z-index: 0;
  opacity: 0.3;
}

.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 24px 28px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-colored);
  border-color: rgba(92,92,224,0.3);
}

.step-number {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.step-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--brand-purple-light), #e8e0ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--brand-purple);
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px rgba(92,92,224,0.15), var(--shadow-sm);
}

.step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   12. SCREENSHOTS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.screenshots-section { background: var(--surface-1); }

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  margin-bottom: 28px;
}

.screenshot-slot {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1.5px dashed var(--border-strong);
  min-height: 220px;
  transition: all var(--transition);
}
.screenshot-slot:hover { border-color: var(--brand-purple); box-shadow: var(--shadow-md); }
.screenshot-slot--main { grid-column: span 2; min-height: 280px; }
.screenshot-slot img { width: 100%; height: 100%; object-fit: cover; }

.screenshot-placeholder {
  height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  text-align: center;
  gap: 10px;
}
.ph-icon { font-size: 36px; }
.ph-title { font-size: 15px; font-weight: 700; color: var(--text-primary); }
.ph-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; max-width: 280px; }
.ph-hint { font-size: 11px; color: var(--text-muted); background: var(--surface-1); padding: 4px 10px; border-radius: 6px; }

.screenshots-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--brand-purple-light);
  border: 1px solid rgba(92,92,224,0.2);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-size: 13.5px;
  color: var(--brand-purple);
  line-height: 1.6;
}
.screenshots-note svg { flex-shrink: 0; margin-top: 2px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   13. PRICING
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.pricing-section { background: var(--surface-0); }

.billing-toggle {
  display: flex;
  align-items: center;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 6px;
  width: fit-content;
  margin: 0 auto 48px;
  gap: 4px;
}

.toggle-btn {
  padding: 10px 28px;
  border: none;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: var(--text-secondary);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.toggle-btn.active {
  background: #fff;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.save-badge {
  background: #dcfce7;
  color: #15803d;
  border-radius: 99px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto 32px;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.pricing-card--popular {
  border-color: var(--brand-purple);
  box-shadow: var(--shadow-colored);
  transform: scale(1.03);
}
.pricing-card--popular:hover { transform: scale(1.03) translateY(-4px); }

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-violet));
  color: #fff;
  border-radius: 99px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.plan-desc { font-size: 13.5px; color: var(--text-muted); margin-bottom: 24px; }

.plan-price-wrap {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin-bottom: 4px;
}
.plan-price-currency { font-size: 22px; font-weight: 800; color: var(--text-primary); margin-bottom: 6px; }
.plan-price-amount { font-size: 54px; font-weight: 900; line-height: 1; color: var(--text-primary); font-family: var(--font-display); }
.plan-price-per { font-size: 18px; color: var(--text-muted); margin-bottom: 6px; font-weight: 400; }
.plan-price-sub { font-size: 12px; color: var(--text-muted); margin-bottom: 28px; }

.plan-cta {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 28px;
  transition: all var(--transition);
  text-decoration: none;
}
.plan-cta--free { background: #f3f4f6; color: var(--text-secondary); }
.plan-cta--free:hover { background: #e9eaec; }
.plan-cta--primary { background: linear-gradient(135deg, var(--brand-purple), var(--brand-violet)); color: #fff; box-shadow: var(--shadow-colored); }
.plan-cta--primary:hover { transform: translateY(-1px); box-shadow: 0 8px 28px rgba(92,92,224,0.35); }
.plan-cta--outline { background: var(--brand-purple-light); color: var(--brand-purple); border: 1.5px solid rgba(92,92,224,0.2); }
.plan-cta--outline:hover { background: var(--surface-2); }

.plan-features { display: flex; flex-direction: column; gap: 12px; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-secondary); }
.check { color: var(--brand-green); font-weight: 700; flex-shrink: 0; }

.pricing-note { text-align: center; font-size: 13px; color: var(--text-muted); margin: 0 auto; max-width: 480px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   13b. CUSTOMER JOURNEY
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.journey-section { background: var(--surface-1); }

.journey-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 780px;
  margin: 0 auto 56px;
}

.journey-step {
  display: grid;
  grid-template-columns: 72px 32px 1fr;
  align-items: flex-start;
  gap: 0 20px;
  position: relative;
}

/* coloured icon circle */
.journey-step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 1;
  position: relative;
  transition: transform var(--transition);
}
.journey-step:hover .journey-step-icon { transform: scale(1.08); }

/* vertical connector line + arrowhead */
.journey-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 72px; /* start below icon */
  padding-bottom: 0;
  height: 100%;
  min-height: 60px;
}
.journey-arrow::before {
  content: '';
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, var(--border-strong), var(--brand-purple));
  opacity: 0.35;
  min-height: 40px;
}
.journey-arrow::after {
  content: '▼';
  color: var(--brand-purple);
  opacity: 0.4;
  font-size: 12px;
  margin-top: 2px;
}
.journey-arrow--last::before { background: transparent; }
.journey-arrow--last::after { display: none; }

/* step body text */
.journey-step-body {
  padding: 12px 0 48px;
}

.journey-step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-purple);
  margin-bottom: 6px;
}

.journey-step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.journey-step-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 520px;
}

/* "And the cycle continues" callout */
.journey-cycle-callout {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, #f8f7ff, #fff);
  border: 1.5px solid rgba(92,92,224,0.2);
  border-radius: var(--radius-xl);
  padding: 24px 32px;
  max-width: 780px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.cycle-icon {
  font-size: 36px;
  flex-shrink: 0;
  animation: cycleRotate 3s linear infinite;
}
@keyframes cycleRotate { to { transform: rotate(360deg); } }

.cycle-text {
  font-size: 15.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.cycle-text strong {
  display: block;
  color: var(--text-primary);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

/* Responsive */
@media (max-width: 600px) {
  .journey-step {
    grid-template-columns: 56px 24px 1fr;
    gap: 0 12px;
  }
  .journey-step-icon { width: 56px; height: 56px; font-size: 24px; }
  .journey-arrow { padding-top: 56px; }
  .journey-cycle-callout { flex-direction: column; text-align: center; padding: 20px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   14. FAQ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.faq-section { background: var(--surface-1); }

.faq-grid {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
}
.faq-item:hover { border-color: rgba(92,92,224,0.3); box-shadow: var(--shadow-sm); }
.faq-item.open { border-color: rgba(92,92,224,0.3); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text-primary);
  user-select: none;
}

.faq-arrow {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.75;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   15. CTA BANNER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cta-banner {
  background: linear-gradient(135deg, #1a0a4a 0%, #2d1b69 40%, #4a1a7a 70%, #1a0a4a 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
}
.cta-orb-1 { width: 400px; height: 400px; background: #f093fb; top: -100px; right: -50px; animation: orbFloat1 10s ease-in-out infinite; }
.cta-orb-2 { width: 300px; height: 300px; background: #4facfe; bottom: -80px; left: -40px; animation: orbFloat2 12s ease-in-out infinite; }

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-icon { font-size: 56px; margin-bottom: 24px; display: block; animation: iconBounce 2s ease-in-out infinite; }
@keyframes iconBounce { 0%,100%{transform:translateY(0) rotate(-5deg)} 50%{transform:translateY(-10px) rotate(5deg)} }

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.cta-subtitle { font-size: 18px; color: rgba(255,255,255,0.75); margin-bottom: 44px; max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.cta-disclaimer { font-size: 13px; color: rgba(255,255,255,0.45); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   16. FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.footer {
  background: var(--text-primary);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-logo-text { color: #fff; }
.footer-brand-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin: 16px 0 20px; max-width: 340px; }

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--brand-purple);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-email:hover { color: #8080ff; }

.footer-links-group { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.footer-col-title { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.9); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }

.footer-col-links { display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col-links a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-copy a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-copy a:hover { color: rgba(255,255,255,0.8); }

.footer-badges { display: flex; gap: 12px; }
.shopify-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   17. SCROLL REVEAL ANIMATION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   18. RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding: calc(var(--nav-height) + 60px) 40px 60px; }
  .hero-badge { margin: 0 auto 28px; }
  .hero-subtitle { margin: 0 auto 40px; }
  .hero-cta-group { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { justify-content: center; margin-top: 20px; }
  .email-card { top: -20px; right: -30px; }
  .reward-card { bottom: -10px; left: -30px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card--large { grid-column: span 2; }
  .games-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: calc(var(--nav-height) + 40px) 20px 40px; gap: 40px; }
  .mockup-browser { width: 340px; }
  .floating-card { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card--large { grid-column: span 1; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-connector { display: none; }
  .screenshots-grid { grid-template-columns: 1fr; }
  .screenshot-slot--main { grid-column: span 1; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-card--popular { transform: none; }
  .pricing-card--popular:hover { transform: translateY(-4px); }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links-group { grid-template-columns: repeat(2, 1fr); }
  .section-tag { font-size: 11px; }
}

@media (max-width: 480px) {
  .hero-title { letter-spacing: -1px; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .hero-stats { gap: 16px; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-links-group { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .social-proof-strip { flex-direction: column; gap: 16px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .billing-toggle { width: 100%; justify-content: center; }
}

/* ─────────── CONTACT SECTION ─────────── */
.contact-section {
  background: var(--bg-secondary);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
  margin-top: 48px;
}

/* Info cards column */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(92, 92, 224, 0.12);
}

.contact-info-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  line-height: 1.5;
}

a.contact-info-value {
  color: var(--accent);
  transition: opacity 0.2s;
}

a.contact-info-value:hover {
  opacity: 0.75;
}

/* Form card */
.contact-form-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.contact-input,
.contact-textarea {
  background: var(--bg-primary);
  border: 1.5px solid var(--border-color);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: none;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: var(--text-muted);
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(92, 92, 224, 0.15);
}

.contact-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  font-size: 15px;
  padding: 14px 24px;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-info {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .contact-info-card {
    flex: 1 1 220px;
  }
}

@media (max-width: 600px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-card {
    padding: 24px;
  }
  .contact-info {
    flex-direction: column;
  }
}
