/*
Theme Name: Ballpark Announcer
Theme URI: https://ballparkannouncerapp.com
Author: Ballpark Announcer LLC
Author URI: https://ballparkannouncerapp.com
Description: Official marketing theme for Ballpark Announcer — the AI-powered walkup intro generator for baseball and softball teams.
Version: 1.0.0
License: Private
Tags: one-page, sports, dark, marketing
Text Domain: ballpark-announcer
*/

/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:    #080c18;
  --navy2:   #0d1326;
  --navy3:   #111a35;
  --navy4:   #162040;
  --red:     #d91e2a;
  --red2:    #f02535;
  --red-glow:#ff3347;
  --cyan:    #00d4ff;
  --white:   #ffffff;
  --gray:    #a0aec0;
  --gray2:   #718096;
  --border:  rgba(255,255,255,0.08);
  --card-bg: rgba(255,255,255,0.04);
  --radius:  12px;
  --shadow:  0 4px 32px rgba(0,0,0,0.5);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: 'Oswald', sans-serif; letter-spacing: 0.02em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ===================== NAV ===================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8,12,24,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo img { height: 42px; }
.nav-logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.nav-logo-text span { color: var(--red2); }
.nav-links {
  display: flex; align-items: center; gap: 8px;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem; font-weight: 500;
  padding: 8px 16px; border-radius: 6px;
  color: var(--gray);
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.current-menu-item > a,
.nav-links .current_page_item > a {
  color: var(--white);
  background: var(--card-bg);
}
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a { color: var(--red2); }
.nav-cta {
  background: var(--red); color: var(--white) !important;
  padding: 10px 22px !important; border-radius: 8px !important;
  font-weight: 600 !important; letter-spacing: 0.03em;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--red2) !important; color: var(--white) !important; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0;
  background: var(--navy2);
  border-bottom: 1px solid var(--border);
  z-index: 999; padding: 16px 24px;
  flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem; font-weight: 500;
  padding: 12px 16px; border-radius: 8px;
  color: var(--gray);
  transition: all 0.2s;
  display: block;
}
.mobile-menu a:hover { color: var(--white); background: var(--card-bg); }
.mobile-menu .mobile-cta { color: var(--red2) !important; font-weight: 700; }

/* ===================== MAIN WRAPPER ===================== */
main, #main, .site-main { padding-top: 72px; }

/* ===================== HERO ===================== */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 80px 24px 60px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(217,30,42,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 60% 60% at 20% 80%, rgba(0,212,255,0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy2) 100%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(217,30,42,0.15);
  border: 1px solid rgba(217,30,42,0.3);
  color: var(--red2); font-size: 0.8rem; font-weight: 600;
  padding: 6px 14px; border-radius: 100px;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge::before { content: '⚾'; font-size: 0.9em; }
.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700; line-height: 1.05;
  margin-bottom: 20px;
}
.hero-title .line-red { color: var(--red2); }
.hero-title .line-cyan { color: var(--cyan); }
.hero-subtitle {
  font-size: 1.125rem; color: var(--gray);
  line-height: 1.7; margin-bottom: 36px;
  max-width: 480px;
}
.hero-buttons {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px;
  font-size: 0.95rem; font-weight: 600;
  cursor: pointer; border: none;
  transition: all 0.2s; white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(217,30,42,0.35);
}
.btn-primary:hover {
  background: var(--red2);
  box-shadow: 0 6px 32px rgba(217,30,42,0.5);
  transform: translateY(-1px);
}
.btn-secondary {
  background: var(--card-bg);
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
  border-color: var(--red2);
  color: var(--red2);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.hero-trust {
  display: flex; align-items: center; gap: 20px;
  margin-top: 28px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: var(--gray2);
}
.trust-item .icon { font-size: 1em; }

/* Hero Visual */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.hero-mascot-wrap {
  position: relative;
  width: 500px; height: 500px;
  display: flex; align-items: center; justify-content: center;
}
.hero-mascot-wrap::before {
  content: '';
  position: absolute; inset: -12px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    rgba(217,30,42,0.6) 15%,
    rgba(0,212,255,0.4) 35%,
    transparent 50%,
    rgba(217,30,42,0.3) 70%,
    rgba(0,212,255,0.5) 85%,
    transparent 100%
  );
  animation: spin-ring 8s linear infinite;
  z-index: 0;
}
.hero-mascot-wrap::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,30,42,0.22) 0%, rgba(0,212,255,0.06) 50%, transparent 72%);
  animation: pulse-glow 3s ease-in-out infinite;
  z-index: 0;
}
@keyframes spin-ring {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(0.98); }
  50%       { opacity: 1;   transform: scale(1.03); }
}
.hero-ring-mask {
  position: absolute; inset: 6px;
  border-radius: 50%;
  background: var(--navy);
  z-index: 1;
}
.hero-mascot-wrap img {
  width: 470px; height: 470px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 8px 40px rgba(217,30,42,0.5))
          drop-shadow(0 0 80px rgba(0,212,255,0.12));
  position: relative; z-index: 2;
  animation: badge-float 5s ease-in-out infinite;
}
@keyframes badge-float {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-10px); }
}
.hero-float-card {
  position: absolute;
  background: rgba(13,19,38,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.8rem;
  backdrop-filter: blur(12px);
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  z-index: 10;
}
.hero-float-1 { top: 6%; left: -14%; animation: float1 4s ease-in-out infinite; border-left: 3px solid var(--cyan); }
.hero-float-2 { bottom: 10%; right: -12%; animation: float2 5s ease-in-out infinite; border-left: 3px solid var(--red2); }
.hero-float-3 { top: 50%; left: -18%; transform: translateY(-50%); animation: float3 6s ease-in-out infinite; border-left: 3px solid #f6c90e; }
@keyframes float1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes float2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
@keyframes float3 { 0%,100% { transform: translateY(-50%) translateX(0); } 50% { transform: translateY(-50%) translateX(-6px); } }
.float-card-title { color: var(--gray2); font-size: 0.68rem; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.float-card-value { font-weight: 700; color: var(--cyan); font-size: 1rem; }
.float-card-value.red { color: var(--red2); }
.float-card-value.gold { color: #f6c90e; }
.float-card-sub { color: var(--gray); font-size: 0.7rem; margin-top: 2px; }

/* ===================== SECTION BASE ===================== */
section { padding: 100px 24px; }
.container { max-width: 1200px; margin: 0 auto; width: 100%; }
.section-label {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--red2); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700; line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem; color: var(--gray);
  line-height: 1.7; max-width: 560px;
}
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ===================== STATS BAR ===================== */
.stats-bar {
  background: var(--navy2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 24px;
}
.stats-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem; font-weight: 700;
  color: var(--white); line-height: 1;
  margin-bottom: 6px;
}
.stat-number span { color: var(--red2); }
.stat-label { font-size: 0.85rem; color: var(--gray2); }

/* ===================== FEATURES ===================== */
.features-section { background: var(--navy2); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.25s;
}
.feature-card:hover {
  border-color: rgba(217,30,42,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.feature-icon {
  width: 52px; height: 52px;
  background: rgba(217,30,42,0.12);
  border: 1px solid rgba(217,30,42,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 1.15rem; font-weight: 600;
  margin-bottom: 10px; line-height: 1.2;
}
.feature-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* ===================== HOW IT WORKS ===================== */
.how-it-works { background: var(--navy); }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute; top: 36px; left: calc(16.67% + 36px);
  right: calc(16.67% + 36px); height: 2px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red2) 100%);
  opacity: 0.3;
}
.step-item { text-align: center; padding: 0 32px; position: relative; }
.step-number {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--navy3);
  border: 2px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--red2);
  position: relative; z-index: 1;
  box-shadow: 0 0 24px rgba(217,30,42,0.2);
}
.step-title {
  font-size: 1.15rem; font-weight: 600;
  margin-bottom: 10px;
}
.step-desc { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* ===================== APP PREVIEW ===================== */
.app-preview {
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy3) 100%);
  overflow: hidden; position: relative;
}
.app-preview-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.app-store-buttons {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 32px;
}
.store-btn {
  display: flex; align-items: center; gap: 12px;
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 22px;
  transition: all 0.2s;
}
.store-btn:hover {
  border-color: rgba(217,30,42,0.3);
  background: var(--navy4);
  transform: translateY(-2px);
}
.store-btn-icon { font-size: 1.8rem; }
.store-btn-text small {
  display: block; font-size: 0.65rem;
  color: var(--gray2); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 2px;
}
.store-btn-text strong { font-size: 1rem; font-weight: 700; }

/* Phone mockup */
.app-preview-phones {
  display: flex; align-items: flex-end; justify-content: center;
  gap: -20px; position: relative; height: 420px;
}
.phone-mockup {
  background: var(--navy3);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  position: absolute;
}
.phone-mockup.tall { width: 160px; height: 340px; right: 0; bottom: 0; z-index: 2; }
.phone-mockup.short { width: 160px; height: 300px; left: 0; bottom: 30px; z-index: 1; opacity: 0.85; }
.phone-screen {
  width: 100%; height: 100%;
  background: var(--navy);
  display: flex; flex-direction: column;
  align-items: center; padding: 16px 12px;
}
.phone-pill {
  background: rgba(217,30,42,0.15);
  border: 1px solid rgba(217,30,42,0.25);
  color: var(--red2); font-size: 0.55rem;
  padding: 4px 10px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 10px; font-weight: 600;
}
.phone-player-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  text-align: center; line-height: 1.1;
  margin-bottom: 12px;
}
.phone-waveform {
  display: flex; align-items: center; gap: 3px;
  height: 36px; margin-bottom: 12px;
}
.wave-bar {
  width: 4px; background: var(--red2);
  border-radius: 2px;
  animation: wave 1s ease-in-out infinite alternate;
}
@keyframes wave {
  from { transform: scaleY(0.4); }
  to   { transform: scaleY(1); }
}
.phone-mode-chips {
  display: flex; gap: 5px; flex-wrap: wrap; justify-content: center;
}
.phone-chip {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 100px; padding: 3px 8px;
  font-size: 0.55rem; font-weight: 600; color: var(--gray);
}
.phone-chip.active {
  background: rgba(217,30,42,0.15);
  border-color: rgba(217,30,42,0.3);
  color: var(--red2);
}

/* ===================== TESTIMONIALS ===================== */
.testimonials { background: var(--navy); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.testimonial-stars { color: #f6c90e; font-size: 1rem; margin-bottom: 14px; }
.testimonial-text {
  font-size: 0.925rem; color: var(--gray);
  line-height: 1.75; margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--red); display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9rem; }
.author-role { font-size: 0.75rem; color: var(--gray2); margin-top: 2px; }

/* ===================== PRICING ===================== */
.pricing-hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 80px 24px 60px;
  text-align: center;
}
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 800px; margin: 0 auto;
}
.pricing-card {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 40px 36px;
  display: flex; flex-direction: column;
  position: relative;
}
.pricing-card.featured {
  border-color: rgba(217,30,42,0.4);
  box-shadow: 0 0 60px rgba(217,30,42,0.12);
}
.pricing-badge {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--red2); margin-bottom: 14px;
}
.pricing-plan-name {
  font-size: 1.5rem; font-weight: 700; margin-bottom: 8px;
}
.pricing-plan-sub {
  font-size: 0.875rem; color: var(--gray);
  line-height: 1.65; margin-bottom: 24px;
}
.pricing-price {
  display: flex; align-items: baseline; gap: 2px;
  margin-bottom: 6px;
}
.price-dollar { font-size: 1.5rem; font-weight: 700; color: var(--gray); }
.price-amount { font-family: 'Oswald', sans-serif; font-size: 3.5rem; font-weight: 700; line-height: 1; }
.price-cents { font-size: 1.8rem; font-weight: 700; }
.price-period { font-size: 0.875rem; color: var(--gray); margin-left: 6px; }
.pricing-trial-note { font-size: 0.75rem; color: var(--gray2); margin-bottom: 24px; }
.pricing-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--gray); }
.pricing-features .check { color: #22c55e; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-cta { width: 100%; justify-content: center; margin-top: auto; }
.pricing-note { text-align: center; font-size: 0.72rem; color: var(--gray2); margin-top: 14px; }
.pricing-trust {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 24px; margin-top: 48px;
}
.pricing-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.875rem; color: var(--gray);
}
.pricing-trust-item .icon { font-size: 1.2rem; }

/* ===================== FAQ ===================== */
.faq-section { background: var(--navy2); }
.faq-grid { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left;
  background: none; border: none;
  color: var(--white); cursor: pointer;
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1rem; font-weight: 600;
  font-family: 'Inter', sans-serif;
  gap: 16px;
}
.faq-question .faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--card-bg); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: var(--gray);
  transition: transform 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--red2); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.925rem; color: var(--gray); line-height: 1.75;
}

/* ===================== DOWNLOAD PAGE ===================== */
.download-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy2) 60%, var(--navy) 100%);
  padding: 80px 24px 100px;
  text-align: center; position: relative; overflow: hidden;
}
.download-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(217,30,42,0.1) 0%, transparent 65%);
}
.download-badge-wrap {
  display: flex; gap: 24px; justify-content: center;
  flex-wrap: wrap; margin-top: 48px;
  position: relative; z-index: 1;
}
.download-store-btn {
  display: flex; align-items: center; gap: 16px;
  background: var(--navy3);
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 18px 32px;
  cursor: pointer; transition: all 0.25s;
  min-width: 220px; text-decoration: none;
}
.download-store-btn:hover {
  border-color: var(--red);
  background: var(--navy4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(217,30,42,0.2);
}
.download-store-btn .store-icon { font-size: 2.4rem; }
.download-store-btn .store-info small {
  display: block; font-size: 0.7rem;
  color: var(--gray2); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 3px;
}
.download-store-btn .store-info strong { font-size: 1.2rem; font-weight: 700; }
.download-phones {
  max-width: 1100px; margin: 80px auto 0;
  display: grid; grid-template-columns: 1fr 400px 1fr;
  gap: 32px; align-items: center;
}
.download-features-col { display: flex; flex-direction: column; gap: 20px; }
.download-feature-row {
  display: flex; gap: 14px; align-items: flex-start;
}
.download-feature-row.right { flex-direction: row-reverse; text-align: right; }
.dl-feat-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(217,30,42,0.1);
  border: 1px solid rgba(217,30,42,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.dl-feat-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.dl-feat-desc { font-size: 0.8rem; color: var(--gray); line-height: 1.5; }
.phone-center-wrap { display: flex; justify-content: center; }
.phone-center-mockup {
  width: 220px; height: 460px;
  background: var(--navy);
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 60px rgba(217,30,42,0.15);
}
.phone-center-screen {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #0d1326 0%, #080c18 100%);
  display: flex; flex-direction: column;
  padding: 20px 14px;
}
.phone-status-bar {
  display: flex; justify-content: space-between;
  font-size: 0.55rem; color: var(--gray2);
  margin-bottom: 16px; padding: 0 4px;
}
.phone-app-logo { text-align: center; margin-bottom: 12px; }
.phone-app-logo img { height: 44px; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(217,30,42,0.4)); }
.phone-app-title {
  font-family: 'Oswald', sans-serif;
  text-align: center; font-size: 0.85rem;
  color: var(--gray); margin-bottom: 16px;
}
.phone-announcement-card {
  background: rgba(217,30,42,0.08);
  border: 1px solid rgba(217,30,42,0.2);
  border-radius: 10px; padding: 12px;
  margin-bottom: 12px;
}
.phone-ann-label { font-size: 0.55rem; color: var(--red2); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.phone-ann-text { font-family: 'Oswald', sans-serif; font-size: 0.85rem; line-height: 1.2; }
.phone-waveform-sm {
  display: flex; align-items: center; gap: 2px;
  height: 28px; padding: 0 4px;
  background: rgba(0,212,255,0.05);
  border-radius: 8px; margin-bottom: 12px;
}
.phone-controls { display: flex; justify-content: center; gap: 16px; margin-top: auto; }
.phone-ctrl-btn {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}
.phone-ctrl-btn.main {
  width: 48px; height: 48px; font-size: 1.1rem;
  background: var(--red);
  box-shadow: 0 4px 16px rgba(217,30,42,0.4);
}
.phone-ctrl-btn.secondary { background: rgba(255,255,255,0.05); border: 1px solid var(--border); }
.qr-section { background: var(--navy2); padding: 80px 24px; text-align: center; }
.qr-cards { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 48px; }
.qr-card { background: var(--navy3); border: 1px solid var(--border); border-radius: 16px; padding: 32px 40px; text-align: center; }
.qr-box { width: 140px; height: 140px; background: var(--white); border-radius: 12px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: #333; text-align: center; padding: 10px; line-height: 1.4; }
.qr-platform { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.qr-sub { font-size: 0.8rem; color: var(--gray2); }

/* ===================== CONTACT PAGE ===================== */
.contact-hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 80px 24px 60px;
  text-align: center;
}
.contact-layout { background: var(--navy2); padding: 80px 24px; }
.contact-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 60px; align-items: start;
}
.contact-info h3 { font-size: 1.4rem; margin-bottom: 16px; }
.contact-info p { font-size: 0.9rem; color: var(--gray); line-height: 1.75; margin-bottom: 32px; }
.contact-channels { display: flex; flex-direction: column; gap: 16px; }
.contact-channel {
  display: flex; align-items: center; gap: 14px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 16px 20px;
}
.channel-icon { width: 40px; height: 40px; border-radius: 8px; background: rgba(217,30,42,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.channel-label { font-size: 0.75rem; color: var(--gray2); margin-bottom: 2px; }
.channel-value { font-size: 0.9rem; font-weight: 600; }
.contact-form { background: var(--navy3); border: 1px solid var(--border); border-radius: 16px; padding: 40px; }
.form-row { margin-bottom: 20px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.form-label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 16px;
  color: var(--white); font-size: 0.925rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
  outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray2); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--red); }
.form-select { cursor: pointer; appearance: none; }
.form-select option { background: var(--navy2); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }

/* Contact form notice */
.wpcf7-response-output { display: none !important; }
.form-success-msg {
  text-align: center; color: #22c55e;
  font-weight: 600; padding: 12px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 8px; margin-top: 12px;
  display: none;
}

/* ===================== CTA BANNER ===================== */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, #8b0000 100%);
  padding: 80px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M40 20a20 20 0 110 40 20 20 0 010-40z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 16px; position: relative; }
.cta-banner p { font-size: 1.05rem; opacity: 0.85; margin-bottom: 36px; position: relative; }
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-white { background: var(--white); color: var(--red); font-weight: 700; }
.btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-ghost:hover { border-color: var(--white); transform: translateY(-2px); }

/* ===================== FOOTER ===================== */
footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 60px 24px 32px;
}
.footer-top {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand img { height: 44px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; color: var(--gray2); line-height: 1.7; max-width: 260px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; cursor: pointer;
  transition: all 0.2s;
}
.social-btn:hover { background: rgba(217,30,42,0.15); border-color: rgba(217,30,42,0.3); }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray2); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.875rem; color: var(--gray); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 28px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.8rem; color: var(--gray2); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.8rem; color: var(--gray2); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: flex; justify-content: center; }
  .hero-mascot-wrap { width: 380px; height: 380px; }
  .hero-mascot-wrap img { width: 360px; height: 360px; }
  .hero-float-1, .hero-float-3 { left: 0; }
  .hero-float-2 { right: 0; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 20px; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .app-preview-inner { grid-template-columns: 1fr; }
  .app-preview-phones { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .download-phones { grid-template-columns: 1fr; }
  .download-features-col { display: none; }
  .phone-center-wrap { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row-2 { grid-template-columns: 1fr; }
  section { padding: 64px 24px; }
}

/* ===================== WP ADMIN BAR OFFSET ===================== */
.admin-bar nav { top: 32px; }
.admin-bar .mobile-menu { top: 104px; }
@media (max-width: 782px) {
  .admin-bar nav { top: 46px; }
  .admin-bar .mobile-menu { top: 118px; }
}
