/* ==========================================================================
   GLOF - THE INTELLIGENT GOLF STAT TRACKER (WEBSITE STYLESHEET)
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-dark: #090e0b;
  --bg-surface: #101812;
  --bg-card: #152219;
  --bg-card-hover: #1b2c20;
  --bg-card-glass: rgba(21, 34, 25, 0.75);
  
  --primary: #2e7d32;
  --primary-light: #4caf50;
  --primary-dark: #1b5e20;
  --accent-emerald: #00e676;
  --accent-mint: #69f0ae;
  --accent-gold: #fbc02d;
  --accent-blue: #29b6f6;
  --accent-orange: #ff9800;
  --accent-purple: #ab47bc;
  
  --text-primary: #f2f7f3;
  --text-secondary: #a3b8aa;
  --text-muted: #667d6e;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(0, 230, 118, 0.25);
  --border-card: rgba(255, 255, 255, 0.12);
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px rgba(0, 230, 118, 0.15);
  
  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Transitions */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-smooth);
  --transition-normal: 0.35s var(--ease-smooth);
  --transition-slow: 0.6s var(--ease-smooth);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-primary);
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(46, 125, 50, 0.18) 0%, transparent 60%),
    radial-gradient(circle at 10% 40%, rgba(0, 230, 118, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(251, 192, 45, 0.04) 0%, transparent 50%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

p {
  color: var(--text-secondary);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  outline: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--accent-emerald);
  color: #051408;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 230, 118, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-mint);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 230, 118, 0.45);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border-color: var(--border-card);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-emerald);
  transform: translateY(-2px);
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  padding: 0.85rem 0;
  background-color: rgba(9, 14, 11, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0, 230, 118, 0.25);
}

.brand-badge {
  font-size: 0.7rem;
  font-weight: 700;
  background-color: rgba(0, 230, 118, 0.15);
  color: var(--accent-emerald);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--accent-emerald);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 8.5rem 0 5rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(46, 125, 50, 0.25);
  border: 1px solid rgba(0, 230, 118, 0.3);
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-emerald);
  width: fit-content;
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.12;
}

.hero-title .highlight {
  color: var(--accent-emerald);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   INTERACTIVE PHONE DEMO FRAME
   ========================================================================== */
.phone-mockup-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-tabs-bar {
  display: flex;
  gap: 0.4rem;
  background: var(--bg-card);
  padding: 0.35rem;
  border-radius: 9999px;
  border: 1px solid var(--border-subtle);
  margin-bottom: 1.25rem;
  overflow-x: auto;
  max-width: 100%;
}

.phone-tab-btn {
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  background: transparent;
  color: var(--text-secondary);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.phone-tab-btn.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.4);
}

.phone-frame {
  width: 320px;
  height: 640px;
  background: #000;
  border-radius: 42px;
  border: 10px solid #233127;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 22px;
  background: #233127;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  z-index: 100;
  pointer-events: none;
}

.phone-screen {
  flex: 1;
  background: #0f1611;
  overflow-y: auto;
  color: #fff;
  padding: 2.2rem 0.9rem 0;
  display: flex;
  flex-direction: column;
  scrollbar-width: none;
}
.phone-screen::-webkit-scrollbar {
  display: none;
}

.p-screen-panel {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  animation: fadeIn 0.2s ease-in-out;
}

.p-screen-panel.active {
  display: flex;
}

/* Phone Screen: Top Bar */
.p-appbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1b5e20;
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

/* Phone UI Components */
.p-card {
  background: #16241b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.8rem;
}

.p-card-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-emerald);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.p-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.p-stat-box.interactive {
  cursor: pointer;
  transition: all var(--transition-fast);
}
.p-stat-box.interactive:hover {
  background: #192a1e;
  transform: translateY(-1px);
}

.p-appbar-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: none;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.p-appbar-btn:hover {
  background: rgba(255, 255, 255, 0.35);
}

.p-mini-icon-btn {
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.65rem;
  cursor: pointer;
}
.p-mini-icon-btn:hover {
  background: rgba(0, 0, 0, 0.6);
}

.p-voice-badge {
  background: var(--accent-emerald);
  color: #000;
  border: none;
  font-size: 0.68rem;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.p-voice-badge:hover {
  background: var(--accent-mint);
  transform: scale(1.05);
}
.p-voice-badge.recording {
  background: #ef5350;
  color: #fff;
  animation: pulse 1s infinite alternate;
}

.p-voice-active-box {
  background: rgba(239, 83, 80, 0.15);
  border: 1px dashed #ef5350;
  border-radius: 8px;
  padding: 0.5rem;
  font-size: 0.65rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: fadeIn 0.3s ease;
}

.p-pulse-dot {
  width: 8px;
  height: 8px;
  background: #ef5350;
  border-radius: 50%;
  animation: pulse 0.8s infinite alternate;
}

@keyframes pulse {
  0% { transform: scale(0.85); opacity: 0.7; }
  100% { transform: scale(1.15); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Pill Button Groups in Phone */
.p-pill-group {
  display: flex;
  gap: 4px;
  margin-top: 0.35rem;
  flex-wrap: wrap;
}

.p-pill-btn {
  background: #111b14;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.p-pill-btn:hover {
  background: #1c2c20;
  color: #fff;
}

.p-pill-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--accent-emerald);
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(46, 125, 50, 0.4);
}

.p-pill-btn.active.gold {
  background: #fbc02d;
  color: #000;
  border-color: #fbc02d;
}

.p-pill-btn.active.orange {
  background: #f57c00;
  color: #fff;
  border-color: #f57c00;
}

.p-cta-btn {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.6rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all var(--transition-fast);
  margin-top: auto;
}
.p-cta-btn:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}

/* Heatmap in Phone */
.p-heatmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 0.4rem;
}
.p-heat-cell {
  background: rgba(255, 152, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 0.45rem 0.2rem;
  border-radius: 6px;
  text-align: center;
  font-size: 0.65rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: inherit;
}
.p-heat-cell:hover {
  background: rgba(255, 152, 0, 0.25);
  transform: scale(1.03);
}
.p-heat-cell.warm {
  background: rgba(255, 152, 0, 0.22);
  color: #ffb74d;
}
.p-heat-cell.hit {
  background: rgba(46, 125, 50, 0.35);
  border: 1px solid var(--accent-emerald);
  color: var(--accent-emerald);
  font-weight: 700;
}
.p-heat-cell.selected {
  outline: 2px solid #fff;
  outline-offset: -1px;
}

/* Coach Comparison in Phone */
.p-comp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
}
.p-badge-better {
  background: rgba(0, 230, 118, 0.2);
  color: var(--accent-emerald);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
}

/* Bottom Navigation inside Phone */
.p-bottom-nav {
  display: flex;
  justify-content: space-around;
  background: #09100b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.4rem 0.2rem;
  border-radius: 0 0 28px 28px;
  margin: 0.5rem -0.9rem -1rem;
}

.p-nav-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.75rem;
  padding: 2px 6px;
  transition: all var(--transition-fast);
}

.p-nav-tab small {
  font-size: 0.55rem;
  margin-top: 2px;
}

.p-nav-tab.active {
  color: var(--accent-emerald);
  font-weight: 700;
}
.p-nav-tab:hover {
  color: #fff;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.section-padding {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-emerald);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.feature-card {
  background: var(--bg-card-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 2rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-md);
}

.feature-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0, 230, 118, 0.12);
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ==========================================================================
   COACHING COMPARISON DEEP DIVE
   ========================================================================== */
.coach-section {
  background: linear-gradient(180deg, transparent 0%, rgba(27, 94, 32, 0.12) 50%, transparent 100%);
}

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

.coach-visual-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.comp-table th {
  text-align: left;
  padding: 0.75rem;
  background: rgba(46, 125, 50, 0.25);
  color: var(--accent-emerald);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comp-table td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.coach-quote-box {
  margin-top: 1.25rem;
  background: rgba(0, 230, 118, 0.08);
  border-left: 3px solid var(--accent-emerald);
  padding: 1rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.88rem;
  color: var(--text-primary);
}

/* ==========================================================================
   WAITLIST / EARLY ACCESS SECTION
   ========================================================================== */
.waitlist-card {
  background: linear-gradient(135deg, #132719 0%, #0d1a11 100%);
  border: 1px solid rgba(0, 230, 118, 0.35);
  border-radius: 28px;
  padding: 4rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.waitlist-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.waitlist-form {
  display: flex;
  max-width: 480px;
  margin: 2rem auto 1rem;
  gap: 0.75rem;
}

.waitlist-input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-card);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition-fast);
}

.waitlist-input:focus {
  border-color: var(--accent-emerald);
  box-shadow: 0 0 16px rgba(0, 230, 118, 0.3);
}

.form-success-msg {
  display: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-emerald);
  margin-top: 1rem;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card-glass);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  font-size: 1.25rem;
  transition: transform var(--transition-fast);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-emerald);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  padding: 0 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  padding-bottom: 1.25rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem;
  background-color: var(--bg-dark);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand-col {
  max-width: 320px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.footer-links-col h4 {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-link {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--accent-emerald);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 960px) {
  .hero-grid, .coach-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero-description {
    margin: 0 auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .hero-stats-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .waitlist-form {
    flex-direction: column;
  }
  .phone-frame {
    width: 100%;
    max-width: 300px;
    height: 580px;
  }
}
