/* ==========================================================================
   VajraFit Landing Page Premium Style Sheet
   ========================================================================== */

/* Custom Variables */
:root {
  --bg-primary: #030712;
  --bg-secondary: #0b0f19;
  --card-bg: rgba(17, 24, 39, 0.65);
  --card-border: rgba(255, 255, 255, 0.07);
  
  --text-primary: #f9fafb;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  
  --accent-purple: #8b5cf6;
  --accent-purple-glow: rgba(139, 92, 246, 0.25);
  --accent-blue: #3b82f6;
  --accent-blue-glow: rgba(59, 130, 246, 0.25);
  --accent-green: #10b981;
  --accent-green-glow: rgba(16, 185, 129, 0.15);
  --accent-red: #ef4444;
  --accent-red-glow: rgba(239, 68, 68, 0.15);
  
  --gradient-main: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-speed: 0.3s;
  --ease-custom: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background Glow Orbs */
.glow-orb {
  position: absolute;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  top: 10%;
  right: -10%;
  background: var(--accent-purple);
}
.orb-2 {
  top: 60%;
  left: -15%;
  background: var(--accent-blue);
}

/* Layout Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition-speed) var(--ease-custom);
  border: 1px solid transparent;
}

.btn-lg {
  padding: 14px 30px;
  font-size: 16px;
  border-radius: 10px;
}

.btn-primary {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 26px rgba(139, 92, 246, 0.55);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.1);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* Typography Utilities */
.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 99px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #c084fc;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

/* Header */
header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  background: rgba(3, 7, 18, 0.7);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
}

.logo-text {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.logo-cyan {
  color: #38bdf8;
  font-weight: 800;
}

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

nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition-speed);
}
nav a:hover {
  color: var(--text-primary);
}

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

/* Currency Dropdown Selector */
.currency-selector {
  position: relative;
}

.currency-trigger {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  transition: all var(--transition-speed);
}
.currency-trigger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.chevron-icon {
  opacity: 0.6;
  transition: transform var(--transition-speed);
}

.currency-selector.open .chevron-icon {
  transform: rotate(180deg);
}

.currency-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #111827;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 6px;
  min-width: 130px;
  display: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.currency-dropdown.show {
  display: block;
  animation: dropdownFade 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.currency-option {
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-speed);
}
.currency-option:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
}
.currency-option.active {
  background: rgba(139, 92, 246, 0.15);
  color: #c084fc;
  font-weight: 600;
}

/* Hero Section */
.hero-section {
  padding: 80px 0 100px 0;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.hero-content h1 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.app-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.badge-icon {
  color: var(--accent-green);
  font-weight: bold;
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.image-glow {
  position: absolute;
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
  filter: blur(50px);
  opacity: 0.3;
  top: 5%;
  z-index: 1;
}

.hero-mockup {
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
  position: relative;
  animation: floatMockup 6s ease-in-out infinite;
}

@keyframes floatMockup {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 38px;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 36px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-speed) var(--ease-custom);
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.icon-purple {
  background: var(--accent-purple-glow);
  color: #a78bfa;
}
.icon-blue {
  background: var(--accent-blue-glow);
  color: #60a5fa;
}
.icon-green {
  background: var(--accent-green-glow);
  color: #34d399;
}
.icon-red {
  background: var(--accent-red-glow);
  color: #f87171;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

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

/* AI Coach Section */
.coach-section {
  padding: 100px 0;
}

.coach-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.coach-info h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.coach-info p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 15px;
}

.interactive-prompt-list {
  margin-top: 30px;
}

.prompt-instruction {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.prompt-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  text-align: left;
  display: block;
  width: 100%;
  margin-bottom: 10px;
  transition: all var(--transition-speed);
}
.prompt-chip:hover {
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.25);
  color: var(--text-primary);
  transform: translateX(4px);
}

/* Chat Simulator UI */
.chat-simulator {
  background: #0f172a;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  height: 480px;
  display: flex;
  flex-direction: column;
}

.chat-header {
  padding: 16px 20px;
  background: #1e293b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 14px;
}

.chat-bot-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.chat-bot-info {
  display: flex;
  flex-direction: column;
}

.chat-bot-name {
  font-weight: 600;
  font-size: 14px;
  font-family: var(--font-heading);
}

.chat-bot-status {
  font-size: 11px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-green);
  box-shadow: 0 0 8px var(--accent-green);
}

.chat-body {
  padding: 20px;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.message {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  animation: messageSlideIn 0.25s var(--ease-custom);
}

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

.message-bot {
  background: #1e293b;
  color: var(--text-primary);
  border-top-left-radius: 2px;
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.message-user {
  background: var(--accent-purple);
  color: white;
  border-top-right-radius: 2px;
  align-self: flex-end;
}

.chat-footer {
  padding: 16px 20px;
  background: #1e293b;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.chat-input-placeholder {
  color: var(--text-muted);
  font-size: 13px;
  flex-grow: 1;
  user-select: none;
}

.chat-send-btn {
  background: var(--accent-purple);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-speed);
}
.chat-send-btn:hover {
  background: #7c3aed;
}

/* Comparison Table */
.comparison-section {
  padding: 100px 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.comparison-table th, .comparison-table td {
  padding: 20px 24px;
  text-align: left;
  font-size: 14px;
}

.comparison-table th {
  background-color: #111827;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  border-bottom: 2px solid var(--card-border);
}

.comparison-table td {
  border-bottom: 1px solid var(--card-border);
  background-color: rgba(17, 24, 39, 0.4);
}

.vector-title {
  font-weight: 600;
  color: var(--text-primary);
}

.highlighted-col {
  background-color: rgba(139, 92, 246, 0.05) !important;
  border-left: 1px solid rgba(139, 92, 246, 0.15);
  border-right: 1px solid rgba(139, 92, 246, 0.15);
  color: var(--text-primary);
}

th.highlighted-col {
  background-color: rgba(139, 92, 246, 0.12) !important;
  color: #c084fc;
}

/* Pricing Section */
.pricing-section {
  padding: 100px 0;
}

.billing-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}

.toggle-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-speed);
}
.toggle-label.active {
  color: var(--text-primary);
  font-weight: 600;
}

.badge-saving {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 99px;
  margin-left: 4px;
  font-family: var(--font-heading);
}

.billing-toggle-btn {
  width: 50px;
  height: 28px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  cursor: pointer;
  transition: background var(--transition-speed);
}

.billing-toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  transition: transform var(--transition-speed) var(--ease-custom);
}

.billing-toggle-btn.yearly {
  background: var(--accent-purple);
}
.billing-toggle-btn.yearly .billing-toggle-knob {
  transform: translateX(22px);
}

.pricing-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--transition-speed), border var(--transition-speed);
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
}

.pricing-card.featured {
  border-color: var(--accent-purple);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}
.pricing-card.featured::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-main);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
}

.plan-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.plan-price {
  font-size: 40px;
  font-family: var(--font-heading);
  font-weight: 800;
  display: flex;
  align-items: baseline;
  margin-bottom: 8px;
}

.currency-symbol {
  font-size: 24px;
  font-weight: 600;
  margin-right: 4px;
}

.price-period {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-left: 4px;
}

.billed-annually-subtext {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
  min-height: 18px;
}

.plan-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 30px;
  min-height: 44px;
}

.pricing-card hr {
  border: 0;
  border-top: 1px solid var(--card-border);
  margin-bottom: 30px;
}

.plan-features {
  list-style: none;
  margin-bottom: 40px;
  flex-grow: 1;
}

.plan-features li {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-features li span {
  font-weight: bold;
}
.plan-features li:not(.disabled) span {
  color: var(--accent-purple);
}
.plan-features li.disabled {
  color: var(--text-muted);
  text-decoration: line-through;
}
.plan-features li.disabled span {
  color: var(--text-muted);
}

/* FAQ Accordion */
.faq-section {
  padding: 100px 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.faq-accordion-container {
  max-width: 760px;
  margin: 40px auto 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--card-border);
  margin-bottom: 8px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  padding: 24px 8px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-heading);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: color var(--transition-speed);
}
.faq-question:hover {
  color: #c084fc;
}

.accordion-chevron {
  transition: transform var(--transition-speed) var(--ease-custom);
  opacity: 0.6;
}

.faq-item.open .accordion-chevron {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--accent-purple);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-speed) var(--ease-custom);
}

.faq-answer p {
  padding: 0 8px 24px 8px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

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

.cta-banner-grid {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 24px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-banner-content h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.cta-banner-content p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
}

.cta-banner-btn-container {
  flex-shrink: 0;
}

/* Footer */
footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--card-border);
  padding: 80px 0 60px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.8fr);
  gap: 60px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 16px;
  max-width: 250px;
}

.footer-brand .copyright {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 24px;
}

.footer-links h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.footer-links a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 12px;
  transition: color var(--transition-speed);
}
.footer-links a:hover {
  color: var(--text-primary);
}

/* Scroll Animation Reveal Classes */
.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-custom), transform 0.6s var(--ease-custom);
}

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

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .app-badges {
    justify-content: center;
  }
  
  .coach-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    flex-direction: column;
    max-width: 450px;
  }
  
  .comparison-table {
    display: block;
    overflow-x: auto;
  }
  
  .cta-banner-grid {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr repeat(3, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  nav {
    display: none; /* Handled via mobile toggle */
  }
  
  .header-actions {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .mobile-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: transform var(--transition-speed), opacity var(--transition-speed);
  }
  
  .nav-container {
    height: 70px;
  }
  
  .hero-content h1 {
    font-size: 38px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
