/* Golf Bump Website Styles - Based on Lovable Design */
/* Version 2.0 - Modern Static HTML Implementation */

/* ============================================
   CSS VARIABLES & ROOT
   ============================================ */
:root {
  /* Colors - Golf Bump Brand */
  --primary: #7CB342;
  --primary-hover: #6B9931;
  --primary-foreground: #ffffff;
  --background: #ffffff;
  --foreground: #29303D;
  --muted: #F0F0EE;
  --muted-foreground: #737373;
  --border: #D4D8DD;
  --card: #ffffff;
  --secondary: #F0F0EE;
  
  /* Spacing */
  --container-max: 1400px;
  --container-padding: 1rem;
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--foreground);
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.875rem; }
}

@media (min-width: 1024px) {
  h1 { font-size: 3.05rem; }
  h2 { font-size: 2.5rem; }
}

.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }
.text-balance { text-wrap: balance; }
.text-center { text-align: center; }

/* ============================================
   LAYOUT & CONTAINER
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

@media (min-width: 640px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(229, 229, 229, 0.4);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
}

.header-container {
  display: flex;
  height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .header-container {
    height: 5rem;
    padding-bottom: 0;
  }
}

.header-logo img {
  height: 3rem;
  width: auto;
}

@media (min-width: 768px) {
  .header-logo img {
    height: 3.5rem;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--foreground);
}

.nav-link.active {
  color: var(--primary);
}

.header-cta {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .header-cta {
    display: flex;
  }
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--foreground);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background-color: var(--background);
}

.mobile-menu.open {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-nav {
  padding: 0.75rem 0;
  display: flex;
  flex-direction: column;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted-foreground);
  border-bottom: 1px solid rgba(229, 229, 229, 0.5);
  transition: color 0.2s;
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--foreground);
}

.mobile-nav-link.active {
  color: var(--primary);
}

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--border);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: #16a34a;
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--foreground);
}

.btn-secondary:hover {
  background-color: #e5e5e5;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background-color: var(--muted);
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.btn-full {
  width: 100%;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: var(--shadow-lg);
}

.card-content {
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .card-content {
    padding: 2rem;
  }
}

/* ============================================
   APP STORE BUTTONS
   ============================================ */
.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-lg);
  transition: background-color 0.2s;
  min-height: 3.5rem;
}

.app-store-btn.apple {
  background-color: var(--foreground);
  color: var(--background);
}

.app-store-btn.apple:hover {
  background-color: #262626;
}

.app-store-btn.google {
  background-color: var(--muted);
  color: var(--muted-foreground);
  cursor: not-allowed;
}

.app-store-btn svg {
  width: 1.75rem;
  height: 1.75rem;
}

.app-store-btn-text {
  text-align: left;
}

.app-store-btn-text .small {
  font-size: 0.625rem;
  opacity: 0.7;
}

.app-store-btn-text .large {
  font-size: 1rem;
  font-weight: 600;
}

.app-store-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .app-store-buttons.horizontal {
    flex-direction: row;
  }
}

/* Small App Store Buttons */
.app-store-btn.sm {
  padding: 0.5rem 0.75rem;
  min-height: 2.5rem;
}

.app-store-btn.sm svg {
  width: 1.25rem;
  height: 1.25rem;
}

.app-store-btn.sm .app-store-btn-text .small {
  font-size: 0.5rem;
}

.app-store-btn.sm .app-store-btn-text .large {
  font-size: 0.75rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(200, 220, 240, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
}

.hero .container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .hero .container {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

@media (min-width: 1024px) {
  .hero .container {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero-content {
  text-align: center;
  order: 2;
}

@media (min-width: 768px) {
  .hero-content {
    text-align: left;
    order: 1;
    max-width: 42rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    max-width: 48rem;
  }
}

.hero-content h1 {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-content h1 {
    margin-bottom: 1.5rem;
  }
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  max-width: 36rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-buttons {
    align-items: flex-start;
  }
}

.hero-buttons .app-store-buttons {
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-buttons .app-store-buttons {
    justify-content: flex-start;
  }
}

.hero-buttons .btn-outline {
  align-self: center;
  background-color: #ffffff;
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .hero-buttons .btn-outline {
    align-self: flex-start;
  }
}

.hero-image {
  order: 1;
}

@media (min-width: 768px) {
  .hero-image {
    order: 2;
  }
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  max-height: 300px;
}

@media (min-width: 768px) {
  .hero-image-wrapper {
    max-height: 400px;
  }
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Decorative */
.hero-decorative {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-decorative-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: rgba(34, 197, 94, 0.05);
  border-radius: 50%;
  filter: blur(60px);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.section-bg {
  background-color: rgba(245, 245, 245, 0.3);
}

.section-title {
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .section-title {
    margin-bottom: 1rem;
  }
}

.section-subtitle {
  font-size: 1rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1.125rem;
  }
}

.section-header {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .section-header {
    margin-bottom: 4rem;
  }
}

/* ============================================
   GRIDS
   ============================================ */
.grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .grid { gap: 1.5rem; }
}

.grid-2 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

.grid-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.grid-4 {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================
   SOCIAL PROOF BAR
   ============================================ */
.social-proof {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-color: rgba(245, 245, 245, 0.5);
}

.social-proof .container {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media (min-width: 768px) {
  .social-proof .container {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.social-proof-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .social-proof-grid {
    flex-direction: row;
    gap: 3rem;
  }
}

.social-proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .social-proof-item {
    font-size: 1rem;
  }
}

.social-proof-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

@media (min-width: 768px) {
  .social-proof-item svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.social-proof-item strong {
  font-weight: 600;
}

.social-proof-divider {
  display: none;
  width: 1px;
  height: 1.5rem;
  background-color: var(--border);
}

@media (min-width: 768px) {
  .social-proof-divider {
    display: block;
  }
}

/* ============================================
   ICON BOX
   ============================================ */
.icon-box {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-2xl);
  background-color: rgba(124, 179, 66, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.icon-box svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.icon-box.sm {
  width: 3rem;
  height: 3rem;
}

.icon-box.sm svg {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-box-inline {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-xl);
  background-color: rgba(124, 179, 66, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box-inline svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

/* ============================================
   BADGE / TAG
   ============================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background-color: rgba(34, 197, 94, 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
}

.badge svg {
  width: 1rem;
  height: 1rem;
}

/* ============================================
   FOR CLUBS PAGE STYLES
   ============================================ */
.hero-clubs {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center 30%;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to right, var(--background) 0%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,0.33) 100%);
}

.hero-content-left {
  max-width: 40rem;
}

/* Outcome Cards */
.outcome-card {
  background: var(--card);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 2rem;
}

.outcome-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.outcome-card.alt .outcome-card-grid {
  direction: rtl;
}

.outcome-card.alt .outcome-card-content {
  direction: ltr;
}

.outcome-card-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.outcome-card-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.outcome-card-desc {
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.outcome-metric {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.outcome-metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.outcome-metric-label {
  color: var(--muted);
  font-size: 0.875rem;
}

.outcome-card-image {
  position: relative;
  min-height: 300px;
}

.outcome-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .outcome-card-grid {
    grid-template-columns: 1fr;
  }
  
  .outcome-card.alt .outcome-card-grid {
    direction: ltr;
  }
  
  .outcome-card-content {
    padding: 2rem;
    order: 1;
  }
  
  .outcome-card-image {
    order: 0;
    min-height: 200px;
  }
}

/* Trust List */
.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 1rem;
}

.trust-list li svg {
  flex-shrink: 0;
}

/* Stat Values */
.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.stat-icon {
  margin-bottom: 0.5rem;
}

/* Form Styles */
.demo-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  color: var(--foreground);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3e%3c/path%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.hero-about {
  padding-top: 6rem;
  padding-bottom: 4rem;
}

/* Origin Story Card */
.origin-story-card {
  background: var(--card);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.origin-story-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
}

.origin-story-visual {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  text-align: center;
  gap: 1.5rem;
}

.origin-story-icon {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.origin-story-content {
  padding: 3rem;
}

.origin-story-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.origin-story-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.origin-story-text p {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.75;
}

.origin-story-text em {
  color: var(--foreground);
  font-weight: 500;
  font-style: italic;
}

.origin-story-text .highlight {
  color: var(--foreground);
  font-weight: 600;
}

@media (max-width: 768px) {
  .origin-story-grid {
    grid-template-columns: 1fr;
  }
  
  .origin-story-visual {
    padding: 2rem;
  }
  
  .origin-story-content {
    padding: 2rem;
  }
}

/* Team Photo Placeholder */
.team-photo-placeholder {
  background: var(--muted-bg);
  border-radius: var(--radius-xl);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--border);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--foreground);
  color: var(--background);
}

.footer .container {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .footer .container {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}

.footer-brand {
  grid-column: span 2;
}

@media (min-width: 1024px) {
  .footer-brand {
    grid-column: span 1;
  }
}

.footer-brand img {
  height: 2.5rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .footer-brand img {
    margin-bottom: 1rem;
  }
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 20rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .footer-brand p {
    margin-bottom: 1.5rem;
  }
}

.footer-app-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .footer-app-buttons {
    flex-direction: row;
  }
}

.footer-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: background-color 0.2s;
}

.footer-app-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.footer-app-btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.footer-app-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-app-btn-text {
  text-align: left;
}

.footer-app-btn-text .small {
  font-size: 0.5rem;
  opacity: 0.7;
}

.footer-app-btn-text .large {
  font-size: 0.875rem;
  font-weight: 500;
}

.footer-section h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--background);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--background);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--background);
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ============================================
   PERSONA CARDS
   ============================================ */
.persona-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.persona-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.persona-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.persona-card-content {
  padding: 1.5rem;
}

.persona-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.persona-card-tagline {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.persona-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ============================================
   BUMP EXPLAINER
   ============================================ */
.bump-explainer {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.bump-explainer-content {
  max-width: 48rem;
  margin: 0 auto;
}

.bump-explainer-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: rgba(34, 197, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.bump-explainer-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
}

/* ============================================
   AUDIENCE SPLIT CARDS
   ============================================ */
.audience-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media (min-width: 768px) {
  .audience-card {
    padding: 2.5rem;
  }
}

.audience-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .audience-card h3 {
    font-size: 1.875rem;
  }
}

.audience-card p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.audience-card ul {
  list-style: none;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.audience-card ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.audience-card ul li::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  background-color: var(--primary);
  border-radius: 50%;
}

.audience-card.highlight {
  border-color: rgba(34, 197, 94, 0.2);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works-grid {
  max-width: 56rem;
  margin: 0 auto;
}

.how-it-works-item {
  text-align: center;
  position: relative;
}

.how-it-works-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(34, 197, 94, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

@media (min-width: 768px) {
  .how-it-works-icon {
    width: 5rem;
    height: 5rem;
    margin-bottom: 1.5rem;
  }
}

.how-it-works-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

@media (min-width: 768px) {
  .how-it-works-icon svg {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.how-it-works-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .how-it-works-item h3 {
    font-size: 1.125rem;
  }
}

.how-it-works-item p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ============================================
   SCENARIO CARDS (For Golfers Page)
   ============================================ */
/* Container for scenario cards with 10px spacing */
.scenario-cards-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.scenario-card {
  overflow: hidden;
}

.scenario-card.alt {
  background-color: rgba(245, 245, 245, 0.3);
}

.scenario-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 1024px) {
  .scenario-card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.scenario-card-content {
  padding: 2rem;
}

@media (min-width: 768px) {
  .scenario-card-content {
    padding: 2.5rem;
  }
}

.scenario-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .scenario-card h3 {
    font-size: 1.875rem;
  }
}

.scenario-card-desc {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.scenario-card-quote {
  background-color: rgba(0, 0, 0, 0.03);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 1rem;
}

.scenario-card-quote p {
  font-size: 0.875rem;
  font-style: italic;
}

.scenario-card-image {
  position: relative;
  min-height: 200px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .scenario-card-image {
    min-height: 280px;
  }
}

@media (min-width: 1024px) {
  .scenario-card-image {
    min-height: 320px;
  }
}

.scenario-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Reversed layout for alternate cards */
@media (min-width: 1024px) {
  .scenario-card.alt .scenario-card-content {
    order: 2;
  }
  .scenario-card.alt .scenario-card-image {
    order: 1;
  }
}

/* ============================================
   OUTCOME CARDS (For Clubs Page)
   ============================================ */
.outcome-card {
  overflow: hidden;
}

.outcome-card-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .outcome-card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.outcome-card-content {
  padding: 2rem;
}

@media (min-width: 768px) {
  .outcome-card-content {
    padding: 2.5rem;
  }
}

.outcome-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .outcome-card h3 {
    font-size: 1.875rem;
  }
}

.outcome-card-desc {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.outcome-card-metric {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  background-color: rgba(34, 197, 94, 0.1);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
}

.outcome-card-metric .number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.outcome-card-metric .label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.outcome-card-image {
  position: relative;
  min-height: 200px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .outcome-card-image {
    min-height: 280px;
  }
}

@media (min-width: 1024px) {
  .outcome-card-image {
    min-height: 320px;
  }
}

.outcome-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Reversed layout */
@media (min-width: 1024px) {
  .outcome-card.reversed .outcome-card-content {
    order: 2;
  }
  .outcome-card.reversed .outcome-card-image {
    order: 1;
  }
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

input, select, textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background-color: var(--background);
  color: var(--foreground);
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

input::placeholder, textarea::placeholder {
  color: var(--muted-foreground);
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23737373' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-align: center;
  margin-top: 1rem;
}

/* ============================================
   STAT CARDS
   ============================================ */
.stat-card {
  text-align: center;
  padding: 1.5rem;
}

.stat-card .number {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-card .label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ============================================
   CHECK LIST
   ============================================ */
.check-list {
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.check-list li svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

/* ============================================
   FEATURE ROW
   ============================================ */
.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-row .icon-box-inline {
  flex-shrink: 0;
}

.feature-row-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-row-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--background), rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.7));
}

.cta-content {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }

.mx-auto { margin-left: auto; margin-right: auto; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.hidden { display: none; }

@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
}

@media (min-width: 768px) {
  .md\:hidden { display: none; }
  .md\:block { display: block; }
  .md\:flex { display: flex; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

/* ============================================
   NEW BUMP EXPLAINER SECTION (Full Version)
   ============================================ */
.bump-explainer-section {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
}

.bump-explainer-header {
  margin-bottom: 2.5rem;
}

/* Badge Pill */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background-color: rgba(34, 197, 94, 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.badge-pill svg {
  width: 1rem;
  height: 1rem;
}

/* Bump Flow Card */
.bump-flow-card {
  padding: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .bump-flow-card {
    padding: 3rem;
  }
}

.bump-flow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .bump-flow-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}

.bump-flow-step {
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  transition: background-color 0.2s;
  border-bottom: 1px solid var(--border);
}

.bump-flow-step:last-child {
  border-bottom: none;
}

@media (min-width: 768px) {
  .bump-flow-step {
    border-bottom: none;
    border-right: 1px solid var(--border);
    padding: 2rem;
  }
  
  .bump-flow-step:last-child {
    border-right: none;
  }
}

.bump-flow-step.highlight {
  background-color: rgba(124, 179, 66, 0.08);
}

.bump-flow-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .bump-flow-emoji {
    font-size: 3.5rem;
  }
}

.bump-flow-step h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.bump-flow-step p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* When to Bump */
.when-to-bump {
  margin-top: 3rem;
}

.when-to-bump h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.when-to-bump-grid {
  margin-top: 1.5rem;
}

.when-to-bump-card {
  padding: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .when-to-bump-card {
    padding: 2rem;
  }
}

.when-to-bump-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-xl);
  background-color: rgba(34, 197, 94, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.when-to-bump-icon svg {
  color: var(--primary);
}

.when-to-bump-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.when-to-bump-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ============================================
   PERSONA SECTION (Updated)
   ============================================ */
.persona-section {
  background-color: rgba(245, 245, 245, 0.3);
}

.persona-grid {
  gap: 1.5rem;
}

.persona-card {
  padding: 0;
  overflow: hidden;
}

.persona-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .persona-image {
    height: 200px;
  }
}

.persona-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.persona-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

.persona-icon-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.persona-icon-badge svg {
  color: var(--primary);
  width: 1.25rem;
  height: 1.25rem;
}

.persona-content {
  padding: 1.5rem;
}

.persona-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.persona-tagline {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.persona-story {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-style: italic;
}

/* ============================================
   AUDIENCE SECTION (Updated)
   ============================================ */
.section-muted {
  background-color: rgba(245, 245, 245, 0.5);
}

.audience-grid {
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .audience-grid {
    gap: 2rem;
  }
}

.audience-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-xl);
  background-color: rgba(34, 197, 94, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.audience-icon svg {
  color: var(--primary);
}

.audience-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.audience-list li::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  background-color: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5rem;
}
