:root {
  /* MuscliKnot Premium Dark Theme */
  --bg-main: #050505;
  --bg-surface: #0a0a0a;
  --bg-card: #121212;
  --bg-glass: rgba(18, 18, 18, 0.6);
  --bg-glass-heavy: rgba(10, 10, 10, 0.85);
  
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.65);
  --text-tertiary: rgba(255, 255, 255, 0.45);
  
  --accent-primary: #f96b06; 
  --accent-secondary: #ff8c3a;
  --accent-glow: rgba(249, 107, 6, 0.35);
  --accent-soft: rgba(249, 107, 6, 0.1);
  
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-bright: rgba(255, 255, 255, 0.15);
  
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-full: 999px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.6);
  
  --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Utilities */
.glass-panel {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.gradient-text {
  background: linear-gradient(135deg, #fff 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

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

/* Buttons */
button {
  font-family: var(--font-main);
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
  color: #000;
  padding: 14px 32px;
  box-shadow: 0 10px 25px -5px var(--accent-glow);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -5px rgba(249, 107, 6, 0.5);
  filter: brightness(1.1);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  padding: 12px 28px;
  border: 1px solid var(--border-glass-bright);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.lg-btn {
  padding: 16px 40px;
  font-size: 1.05rem;
}

.full-width {
  width: 100%;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: var(--bg-glass-heavy);
  backdrop-filter: blur(20px);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-glass);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.navbar .logo {
  font-size: 1.8rem;
  gap: 14px;
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.navbar .logo-img {
  width: 44px;
  height: 44px;
}

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

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

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a.login-link {
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.store-badge img {
  height: 40px;
  width: auto;
  border-radius: 6px;
  transition: var(--transition-smooth);
}

.store-badge:hover img {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  display: none; /* Controlled by media query */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.mobile-menu-btn span {
  width: 20px;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 160px 24px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 100%;
  background: 
    radial-gradient(circle at 50% 0%, rgba(249, 107, 6, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 30%, rgba(249, 107, 6, 0.05) 0%, transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(255, 140, 58, 0.05) 0%, transparent 30%);
  z-index: -1;
  pointer-events: none;
  filter: blur(80px);
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: var(--accent-soft);
  border: 1px solid rgba(249, 107, 6, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--accent-primary);
  font-weight: 600;
  margin-bottom: 32px;
  box-shadow: 0 4px 15px rgba(249, 107, 6, 0.1);
}

.pill-badge .dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-primary);
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 0.95;
  margin-bottom: 32px;
  max-width: 1000px;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-secondary);
  max-width: 700px;
  margin-bottom: 48px;
  line-height: 1.5;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  margin-bottom: 100px;
  align-items: center;
  justify-content: center;
}

.hero-store-badge img {
  height: 52px;
  width: auto;
  border-radius: 10px;
  transition: var(--transition-smooth);
}

.hero-store-badge:hover img {
  transform: translateY(-2px);
}


/* Hero Mockup */
.hero-mockup {
  width: 100%;
  max-width: 340px;
  perspective: 2000px;
  margin: 0 auto;
}

.mockup-panel {
  background: #000;
  border: 12px solid #1a1a1a;
  border-radius: 48px;
  transform: rotateX(10deg) translateY(0);
  box-shadow: 
    0 50px 100px rgba(0, 0, 0, 0.9), 
    0 0 150px rgba(249, 107, 6, 0.05),
    inset 0 0 2px 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: var(--transition-smooth);
  position: relative;
}

.mockup-panel:hover {
  transform: rotateX(0) translateY(-20px) scale(1.02);
  box-shadow: 0 70px 140px rgba(0, 0, 0, 0.9), 0 0 200px rgba(249, 107, 6, 0.1);
}

.mockup-header {
  height: 40px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}

.mockup-notch {
  width: 100px;
  height: 24px;
  background: #000;
  border-radius: 12px;
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.1);
}

.mockup-content {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  overflow: hidden;
  background: #000;
  position: relative;
}

.app-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mockup-gloss {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
  z-index: 15;
}

.visual-anatomy-preview {
  position: relative;
  height: 280px !important;
  background: #050505 !important;
  border: 1px solid var(--border-glass) !important;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.8);
}

.anatomy-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.anatomy-silhouette {
  height: 80%;
  color: var(--accent-secondary);
  filter: drop-shadow(0 0 10px rgba(249, 107, 6, 0.2));
  z-index: 2;
}

.scanner-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
  box-shadow: 0 0 20px var(--accent-primary);
  z-index: 3;
  animation: scan 4s ease-in-out infinite;
}

@keyframes scan {
  0%, 100% { top: 10%; opacity: 0.2; }
  50% { top: 90%; opacity: 1; }
}

.hotspot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--accent-primary);
  border-radius: 50%;
  z-index: 4;
  box-shadow: 0 0 15px var(--accent-primary);
}

.hotspot::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 1px solid var(--accent-primary);
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

.hotspot.p1 { top: 35%; left: 48%; animation-delay: 0.2s; }
.hotspot.p2 { top: 55%; left: 52%; animation-delay: 0.5s; }
.hotspot.p3 { top: 75%; left: 45%; animation-delay: 0.8s; }

.scan-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(249, 107, 6, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 107, 6, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 1;
}

.bento-card:hover .scanner-line {
  animation-duration: 2s;
  box-shadow: 0 0 30px var(--accent-primary);
}

.bento-card:hover .anatomy-silhouette {
  color: var(--accent-primary);
  transform: scale(1.05);
  transition: all 0.5s ease;
}

/* Sections Common */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.section-header p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bento-card {
  padding: 40px;
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.bento-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-glow);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(249, 107, 6, 0.05);
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(249, 107, 6, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card.col-span-2 {
  grid-column: span 2;
}

.card-content {
  z-index: 2;
  flex: 1;
}

.card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  margin-top: 16px;
}

.card-content p {
  font-size: 0.95rem;
}

.icon-wrapper {
  width: 52px;
  height: 52px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.flex-row {
  display: flex;
  gap: 40px;
  align-items: center;
}

@media (max-width: 768px) {
  .flex-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

.text-side {
  flex: 1;
}

.visual-side {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* Bento Visuals */
.visual-equipment {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px;
  align-items: center;
  justify-content: center;
}

.eq-pill {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: 99px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.eq-pill.active {
  background: rgba(249, 107, 6, 0.1);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.bento-visual {
  margin-top: 32px;
  height: 160px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  position: relative;
  overflow: hidden;
}

.visual-body-map {
  display: flex;
  align-items: center;
  justify-content: center;
}

.body-point {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--text-secondary);
  border-radius: 50%;
  opacity: 0.5;
}

.body-point.p1 { top: 30%; left: 40%; }
.body-point.p2 { top: 50%; left: 60%; background: var(--accent-primary); opacity: 1; box-shadow: 0 0 15px var(--accent-primary); }
.body-point.p3 { top: 70%; left: 45%; }

.active-glow {
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(249, 107, 6, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(249, 107, 6, 0); }
  100% { box-shadow: 0 0 0 0 rgba(249, 107, 6, 0); }
}

.visual-list {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-list-item {
  height: 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 12px;
}

.mock-list-item::after {
  content: '';
  height: 4px;
  width: 40%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
}

.mock-list-item.highlight {
  background: linear-gradient(90deg, rgba(249, 107, 6, 0.15), transparent);
  border-left: 3px solid var(--accent-primary);
}

.mock-list-item.highlight::after {
  background: rgba(249, 107, 6, 0.3);
  width: 60%;
}

.mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 120px;
}

.chart-line {
  position: absolute;
  width: 120%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
  top: 60%;
  left: -10%;
  opacity: 0.4;
  transform: rotate(-15deg);
  filter: blur(1px);
}

.bar {
  width: 32px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px 6px 2px 2px;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bar.active {
  background: linear-gradient(180deg, var(--accent-secondary), var(--accent-primary));
  box-shadow: 0 10px 20px rgba(249, 107, 6, 0.3);
}

.h-90 { height: 90%; }
.h-70 { height: 70%; }
.h-50 { height: 50%; }
.h-30 { height: 30%; }


/* How It Works Section */
.how-it-works-section {
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.step-item {
  text-align: left;
  display: flex;
  flex-direction: column;
  padding: 48px 40px;
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.step-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(249, 107, 6, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.step-item:hover {
  transform: translateY(-8px);
  border-color: var(--accent-glow);
  box-shadow: var(--shadow-lg), 0 10px 40px rgba(249, 107, 6, 0.08);
}

.step-item:hover::before {
  opacity: 1;
}

.step-item-number {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
  margin-bottom: 32px;
  transition: var(--transition-smooth);
}

.step-item:hover .step-item-number {
  color: rgba(249, 107, 6, 0.05);
  -webkit-text-stroke: 1px var(--accent-primary);
  transform: scale(1.05) translateX(5px);
}

.step-item h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.step-item p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 32px;
  flex-grow: 1;
}

.step-item-arrow {
  align-self: flex-start;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: var(--transition-smooth);
  margin-top: auto;
}

.step-item:hover .step-item-arrow {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #000;
  transform: translateX(10px);
}

.step-item-arrow svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.step-item:hover .step-item-arrow svg {
  transform: scale(1.1);
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  padding: 56px 40px;
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.pricing-card.premium {
  border: 1px solid var(--accent-glow);
  background: linear-gradient(180deg, rgba(249, 107, 6, 0.05) 0%, rgba(10, 10, 10, 0) 100%), var(--bg-surface);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(249, 107, 6, 0.03);
}

.pricing-card.premium::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--accent-primary);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 40px;
  transform: rotate(45deg);
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--border-glass-bright);
}

.pricing-card.premium:hover {
  border-color: var(--accent-primary);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.price {
  margin-bottom: 24px;
}

.price span {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.04em;
}

.plan-desc {
  font-size: 0.95rem;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-glass);
}

.features-list {
  margin-bottom: 40px;
  flex: 1;
}

.features-list li {
  margin-bottom: 16px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.features-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23f96b06' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-glass);
  padding: 100px 24px 48px;
  background: var(--bg-surface);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

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

.footer-brand p {
  margin-top: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.link-group h4 {
  margin-bottom: 24px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
}

.link-group a {
  display: block;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.link-group a:hover {
  color: var(--accent-primary);
  transform: translateX(5px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--border-glass);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-tertiary);
}

/* Page Standard Formatting (for Privacy Policy) */
.page-header {
  padding: 180px 24px 60px;
  text-align: center;
  border-bottom: 1px solid var(--border-glass);
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.page-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.page-content p, .page-content ul {
  margin-bottom: 24px;
}

.page-content ul {
  padding-left: 20px;
  list-style: disc;
}

.page-content li {
  margin-bottom: 8px;
  color: var(--text-secondary);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up {
  animation: fadeInUp 1s ease forwards;
}

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

/* Form Styles */
.form-container {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 650px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-weight: 500;
  display: block;
}

.form-group input[type="email"],
.form-group input[type="text"],
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass-bright);
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--text-primary);
  font-family: var(--font-main);
  transition: var(--transition-fast);
}

.form-group input[type="email"]:focus,
.form-group input[type="text"]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.form-group textarea {
  min-height: 140px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 40px;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--accent-primary);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  cursor: pointer;
}

.form-note {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  
  .bento-card.col-span-2 {
    grid-column: span 1;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .nav-links, .desktop-btn {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-main);
    padding: 100px 24px;
    z-index: 999;
    align-items: center;
    gap: 40px;
  }

  .nav-links.active a {
    font-size: 1.5rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }
  
  .hero-store-badge img {
    height: 48px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand, .footer-links {
    max-width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }
}
