/* ==========================================================================
   CRVY Club Landing Page Stylesheet
   Design Philosophy: Premium, dark-mode, glassmorphic, micro-animations,
   styled with Outfit & Inter typography, and copper accent glows.
   ========================================================================== */

/* --- Custom Variables & Theme System --- */
:root {
  --bg-base: #060608;
  --bg-surface: #0e0e11;
  --bg-surface-elevated: #16161c;
  
  /* Primary Accent: Copper/Peach */
  --accent-rgb: 212, 129, 102;
  --accent: rgb(var(--accent-rgb));
  --accent-light: #e09982;
  --accent-glow: rgba(var(--accent-rgb), 0.15);
  --accent-glow-strong: rgba(var(--accent-rgb), 0.4);
  
  /* Neutral Palette */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-light: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --glass-bg: rgba(14, 14, 17, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);

  /* Fonts */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout and Transitions */
  --max-width: 1200px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* --- Reset & Global Defaults --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, input {
  font-family: inherit;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-surface-elevated);
  border-radius: 5px;
  border: 2px solid var(--bg-base);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* --- Glowing Background Orbs --- */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  mix-blend-mode: screen;
}

.orb-1 {
  width: 600px;
  height: 600px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, var(--accent-glow-strong) 0%, transparent 70%);
  animation: floatOrb1 20s infinite alternate ease-in-out;
}

.orb-2 {
  width: 500px;
  height: 500px;
  top: 800px;
  left: -150px;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.12) 0%, transparent 70%);
  animation: floatOrb2 25s infinite alternate ease-in-out;
}

@keyframes floatOrb1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-80px, 50px) scale(1.1); }
}

@keyframes floatOrb2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(100px, -60px) scale(1.05); }
}

/* --- Typography Utilities --- */
.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-light) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.section-title {
  font-family: var(--font-title);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.section-sub {
  color: var(--text-secondary);
  font-size: 1.125rem;
  font-weight: 400;
}

/* --- Glassmorphism Buttons & Components --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}

.badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

/* --- Header / Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  height: 70px;
  background: rgba(6, 6, 8, 0.85);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.nav-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 8px rgba(212, 129, 102, 0.15));
  transition: var(--transition-smooth);
}

.logo:hover .logo-img {
  transform: scale(1.03);
  filter: drop-shadow(0 0 12px rgba(212, 129, 102, 0.35));
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition-fast);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: rgba(212, 129, 102, 0.1);
  border: 1px solid rgba(212, 129, 102, 0.3);
  color: #fff;
  padding: 0.65rem 1.25rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
}

.nav-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
  transform: translateY(-2px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  z-index: 1;
}

.hero-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 4.25rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-weight: 400;
  max-width: 580px;
}

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

/* --- App Store & Google Play Store Buttons --- */
.store-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #000;
  border: 1px solid var(--border-light);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  transition: var(--transition-smooth);
  color: #fff;
  cursor: pointer;
}

.store-icon {
  font-size: 1.75rem;
  color: #fff;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.store-btn-text span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.store-btn-text strong {
  font-size: 0.95rem;
  font-weight: 600;
}

.store-btn:hover {
  background: var(--bg-surface-elevated);
  border-color: var(--accent);
  box-shadow: 0 10px 30px var(--accent-glow);
  transform: translateY(-3px);
}

.store-btn.dark {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.store-btn.dark:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent);
}

/* --- Smartphone Showcase Frame --- */
.hero-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* 3D Premium Smartphone Container */
.phone-frame {
  width: 300px;
  height: 610px;
  background: #09090b;
  border-radius: 44px;
  padding: 10px;
  box-shadow: 
    0px 25px 50px -12px rgba(0, 0, 0, 0.6),
    0 0 0 4px #27272a, /* phone bezel */
    0 0 0 8px #09090b,
    0 0 40px var(--accent-glow);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.phone-frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #09090c;
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Dynamic Island */
.phone-screen::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 85px;
  height: 24px;
  background: #000;
  border-radius: 12px;
  z-index: 100;
}

/* Simulated Screen Header */
.screen-header {
  padding: 44px 1.25rem 0.75rem 1.25rem;
  background: #121217;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
}

.screen-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #fff;
}

.screen-sub {
  font-size: 0.6rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-top: 1px;
}

/* Chat container inside mockup */
.chat-container {
  flex: 1;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
}

.chat-message {
  max-width: 85%;
  font-size: 0.75rem;
  line-height: 1.4;
  opacity: 0;
  animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.chat-message.user {
  align-self: flex-end;
  background: #272730;
  color: #f1f5f9;
  padding: 0.65rem 0.85rem;
  border-radius: 16px 16px 4px 16px;
  animation-delay: 0.5s;
}

.chat-message.ai {
  align-self: flex-start;
  display: flex;
  gap: 0.5rem;
  max-width: 90%;
  animation-delay: 1.8s;
}

.ai-avatar {
  width: 24px;
  height: 24px;
  background: rgba(212, 129, 102, 0.15);
  border: 1px solid rgba(212, 129, 102, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.ai-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.ai-bubble {
  background: #181822;
  border: 1px solid rgba(255, 255, 255, 0.03);
  color: #e2e8f0;
  padding: 0.75rem;
  border-radius: 4px 16px 16px 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.ai-bubble p {
  margin-bottom: 0.5rem;
}

/* Match Card inside phone chat */
.matched-venue {
  background: #22222e;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: slideUpFade 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 3s;
}

.venue-image {
  height: 80px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?q=80&w=400') center/cover;
}

.venue-info {
  padding: 0.5rem 0.65rem;
}

.venue-name {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
}

.venue-meta {
  font-size: 0.6rem;
  color: var(--text-secondary);
}

@keyframes slideUpFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  from {
    opacity: 0;
    transform: translateY(12px);
  }
}

/* --- Features Section --- */
.features {
  padding: 100px 0;
  position: relative;
  background: #08080b;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Glassmorphic Feature Cards */
.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2.5rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(var(--accent-rgb), 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.feature-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(212, 129, 102, 0.08);
  border: 1px solid rgba(212, 129, 102, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.feature-icon-wrap ion-icon {
  font-size: 1.5rem;
  color: var(--accent);
  transition: var(--transition-smooth);
}

.feature-card h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  letter-spacing: -0.01em;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card:hover .feature-icon-wrap {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 15px var(--accent-glow-strong);
}

.feature-card:hover .feature-icon-wrap ion-icon {
  color: #fff;
  transform: rotate(5deg) scale(1.1);
}

/* --- AI Concierge Showcase Section (Split Screen) --- */
.concierge-highlight {
  padding: 100px 0;
  background: #060608;
  position: relative;
}

.concierge-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.concierge-showcase {
  display: flex;
  justify-content: center;
  position: relative;
}

/* Glassmorphic Mockup Chat Box */
.chat-ui-box {
  width: 100%;
  max-width: 440px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.chat-ui-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #e09982);
}

.chat-ui-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: pulse 2s infinite;
}

.chat-ui-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 1.5rem;
}

.chat-ui-row {
  max-width: 85%;
  padding: 0.85rem 1.1rem;
  font-size: 0.85rem;
  line-height: 1.5;
}

.chat-ui-row.user {
  align-self: flex-end;
  background: #272732;
  color: #f8fafc;
  border-radius: 18px 18px 4px 18px;
  border: 1px solid rgba(255,255,255,0.02);
}

.chat-ui-row.ai {
  align-self: flex-start;
  background: rgba(212, 129, 102, 0.05);
  border: 1px solid rgba(212, 129, 102, 0.15);
  color: #f1f5f9;
  border-radius: 18px 18px 18px 4px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.concierge-content h2 {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.concierge-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.concierge-bullets {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bullet {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}

.bullet ion-icon {
  font-size: 1.25rem;
  color: var(--accent);
}

/* --- CTA Banner Section --- */
.cta-banner {
  padding: 100px 0;
  background: #08080b;
  position: relative;
  overflow: hidden;
}

.cta-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem;
  background: radial-gradient(circle at bottom right, rgba(var(--accent-rgb), 0.12) 0%, transparent 60%), rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-light);
  border-radius: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.cta-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.01) 0%, transparent 100%);
  border-radius: 32px;
  pointer-events: none;
}

.cta-content {
  max-width: 580px;
}

.cta-content h2 {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.cta-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-qr-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  padding: 1.5rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

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

/* Premium CSS QR Pattern representation */
.qr-pattern {
  width: 140px;
  height: 140px;
  background: 
    radial-gradient(circle at 10% 10%, #fff 2%, transparent 3%),
    radial-gradient(circle at 90% 10%, #fff 2%, transparent 3%),
    radial-gradient(circle at 10% 90%, #fff 2%, transparent 3%),
    repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(255,255,255,0.15) 4px, rgba(255,255,255,0.15) 8px),
    linear-gradient(135deg, var(--bg-surface-elevated), #1a1a24);
  border-radius: 12px;
  border: 4px solid #fff;
  position: relative;
}

/* Simulated QR Corner Eyes */
.qr-pattern::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  width: 32px;
  height: 32px;
  border: 8px solid #000;
  background: #fff;
  outline: 4px solid #fff;
  box-shadow: 
    78px 0 0 -8px #000, 78px 0 0 -4px #fff, 78px 0 0 0px #fff,
    0 78px 0 -8px #000, 0 78px 0 -4px #fff, 0 78px 0 0px #fff;
}

.qr-label {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.1em;
}

/* --- Footer --- */
.footer {
  background: #040405;
  border-top: 1px solid var(--border-light);
  padding: 80px 0 40px 0;
  position: relative;
  z-index: 1;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem 4rem 2rem;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
}

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

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 6rem;
}

.links-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.links-col h4 {
  font-family: var(--font-title);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.links-col a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 400;
}

.links-col a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 2rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* --- Responsive Adaptations (Mobile & Tablet) --- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 5rem;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .concierge-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .concierge-content {
    order: -1;
    text-align: center;
  }
  .bullet {
    justify-content: center;
  }
  .cta-container {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
  }
  .cta-content {
    max-width: 100%;
  }
  .cta-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .navbar {
    height: 70px;
  }
  .nav-links {
    display: none; /* Hide standard links on mobile simple layout */
  }
  .hero-title {
    font-size: 3.25rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .footer-container {
    flex-direction: column;
    gap: 3rem;
  }
  .footer-links {
    gap: 4rem;
    width: 100%;
    justify-content: space-between;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.75rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .store-btn {
    width: 100%;
    justify-content: center;
  }
}
