/* ==========================================================
   Maluszek.app – Official Landing Page Stylesheet
   Design Philosophy: Warm, Parent-Centric, Ultra-Modern
   ========================================================== */

:root {
  /* Brand Palettes */
  --primary: #FE7B05;
  --primary-hover: #E46B00;
  --primary-light: #FFF2E8;
  --primary-glow: rgba(254, 123, 5, 0.25);
  
  --navy-900: #12122B;
  --navy-800: #1A1A42;
  --navy-700: #2C2C5E;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  
  --bg-page: #FDFBF9;
  --bg-card: #FFFFFF;
  --bg-card-alt: #F7F5F0;
  --border-light: rgba(26, 26, 66, 0.08);
  --border-hover: rgba(254, 123, 5, 0.3);

  /* Functional Accents */
  --feed-color: #FE7B05;
  --sleep-color: #8B5CF6;
  --diaper-color: #0EA5E9;
  --sound-color: #10B981;

  /* Red Mode (Melatonin-Safe) */
  --red-mode-bg: #120907;
  --red-mode-surface: #1E100C;
  --red-mode-surface-2: #2B1610;
  --red-mode-accent: #FF5A36;
  --red-mode-text: #FFB5A0;
  --red-mode-muted: #B36856;
  --red-mode-border: rgba(255, 90, 54, 0.25);

  /* Layout */
  --max-w: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-subtle: 0 4px 20px rgba(26, 26, 66, 0.04);
  --shadow-card: 0 8px 30px rgba(26, 26, 66, 0.06);
  --shadow-float: 0 20px 40px rgba(254, 123, 5, 0.15);
  --shadow-phone: 0 25px 60px -15px rgba(26, 26, 66, 0.22);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-page);
  color: var(--navy-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}

h1, h2, h3, h4, .brand-name {
  font-family: 'Outfit', sans-serif;
  color: var(--navy-800);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

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

img, svg {
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* Atmospheric Glows */
.glow-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: -1;
}

.glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(254, 123, 5, 0.12) 0%, rgba(254, 123, 5, 0) 70%);
  top: -100px;
  right: -50px;
}

.glow-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, rgba(139, 92, 246, 0) 70%);
  top: 40%;
  left: -200px;
}

/* ==========================================================
   NAVIGATION
   ========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 251, 249, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  font-weight: 700;
}

.brand-logo {
  border-radius: 10px;
  box-shadow: 0 4px 12px var(--primary-glow);
}

.brand-tld {
  color: var(--primary);
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy-700);
  transition: color 0.2s;
}

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

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background-color: var(--navy-800);
  border-radius: 2px;
  transition: 0.2s;
}

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #FE7B05 0%, #FF9E40 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(254, 123, 5, 0.35);
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--navy-800);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
}

.btn-secondary:hover {
  border-color: var(--border-hover);
  background: #FAF9F6;
  transform: translateY(-2px);
}

.btn-white {
  background: #FFFFFF;
  color: var(--navy-900);
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  background: #FDFBF9;
}

.btn-header {
  padding: 10px 20px;
  font-size: 0.9rem;
}

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

.btn-xl {
  padding: 20px 36px;
  font-size: 1.15rem;
}

.btn-text {
  display: block;
}

.btn-subtext {
  display: block;
  font-size: 0.75rem;
  opacity: 0.85;
  font-weight: 400;
}

/* ==========================================================
   HERO SECTION
   ========================================================== */
.hero-section {
  padding: 60px 0 90px;
  position: relative;
}

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

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--primary-light);
  color: var(--primary-hover);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(254, 123, 5, 0.15);
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

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

.hero-subtitle {
  font-size: 1.18rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.9rem;
  color: var(--navy-700);
  font-weight: 500;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================
   PHONE MOCKUP & LIVE THEME TOGGLE
   ========================================================== */
.hero-mockup-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.mockup-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  background: #FFFFFF;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-subtle);
  border: 1px solid var(--border-light);
}

.controls-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.theme-switcher-pills {
  display: flex;
  gap: 4px;
}

.pill-btn {
  background: transparent;
  border: none;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s;
}

.pill-btn.active {
  background: var(--navy-800);
  color: #FFFFFF;
}

/* Phone Frame */
.phone-frame {
  width: 320px;
  height: 650px;
  background: #FFFFFF;
  border-radius: 46px;
  border: 10px solid #1E222D;
  box-shadow: var(--shadow-phone);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 22px;
  background: #1E222D;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  z-index: 10;
}

.phone-screen {
  flex: 1;
  background: #FDFBF9;
  padding: 36px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  transition: background 0.4s ease;
}

/* Mockup Elements: Day Mode */
.mockup-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
}

.baby-profile-chip {
  display: flex;
  align-items: center;
  gap: 8px;
}

.baby-avatar {
  font-size: 1.4rem;
  background: #FFE5D3;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.baby-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-800);
}

.baby-age {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 600;
  color: #10B981;
  background: #ECFDF5;
  padding: 4px 8px;
  border-radius: var(--radius-pill);
}

.status-dot {
  width: 6px;
  height: 6px;
  background: #10B981;
  border-radius: 50%;
}

.mockup-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 12px 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-light);
  transition: all 0.3s;
}

.wake-window-card {
  border-left: 4px solid var(--primary);
}

.card-row-between {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  margin-bottom: 4px;
}

.card-tag {
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
}

.time-countdown {
  font-weight: 600;
  color: #0284C7;
  background: #E0F2FE;
  padding: 2px 6px;
  border-radius: 4px;
}

.wake-timer {
  font-size: 0.85rem;
  color: var(--navy-800);
  margin-bottom: 8px;
}

.progress-bar {
  height: 6px;
  background: #F1EDE7;
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #FE7B05, #FF9E40);
  border-radius: 10px;
}

.mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mockup-action-tile {
  background: #FFFFFF;
  padding: 12px 10px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.3s;
}

.active-action {
  border-color: var(--primary);
  background: #FFF9F5;
}

.tile-icon {
  font-size: 1.3rem;
  margin-bottom: 2px;
}

.tile-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy-800);
}

.tile-stat {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.tile-badge {
  font-size: 0.62rem;
  font-weight: 600;
  padding: 2px 6px;
  background: #F1EDE7;
  color: var(--navy-700);
  border-radius: 4px;
  align-self: flex-start;
  margin-top: 4px;
}

.playing-badge {
  background: #DCFCE7;
  color: #15803D;
}

.mockup-night-banner {
  display: none;
  background: var(--red-mode-surface-2);
  border: 1px solid var(--red-mode-border);
  padding: 8px 12px;
  border-radius: 8px;
  text-align: center;
}

.mockup-night-banner span {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red-mode-accent);
}

.mockup-night-banner small {
  font-size: 0.65rem;
  color: var(--red-mode-text);
}

.mockup-bottom-nav {
  margin-top: auto;
  background: #FFFFFF;
  padding: 10px 8px;
  border-radius: 12px;
  display: flex;
  justify-content: space-around;
  border: 1px solid var(--border-light);
}

.nav-item {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
}

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

/* ==========================================================
   PHONE MOCKUP: NIGHT RED MODE STATE
   ========================================================== */
.phone-frame.night-mode {
  border-color: #000000;
  box-shadow: 0 25px 60px -10px rgba(255, 90, 54, 0.25);
}

.phone-frame.night-mode .phone-screen {
  background: var(--red-mode-bg);
}

.phone-frame.night-mode .baby-avatar {
  background: var(--red-mode-surface-2);
}

.phone-frame.night-mode .baby-name {
  color: var(--red-mode-text);
}

.phone-frame.night-mode .baby-age,
.phone-frame.night-mode .tile-stat,
.phone-frame.night-mode .nav-item {
  color: var(--red-mode-muted);
}

.phone-frame.night-mode .status-indicator {
  background: var(--red-mode-surface);
  color: var(--red-mode-accent);
}

.phone-frame.night-mode .status-dot {
  background: var(--red-mode-accent);
}

.phone-frame.night-mode .mockup-card,
.phone-frame.night-mode .mockup-action-tile,
.phone-frame.night-mode .mockup-bottom-nav {
  background: var(--red-mode-surface);
  border-color: var(--red-mode-border);
}

.phone-frame.night-mode .wake-timer,
.phone-frame.night-mode .tile-title {
  color: var(--red-mode-text);
}

.phone-frame.night-mode .card-tag,
.phone-frame.night-mode .nav-item.active {
  color: var(--red-mode-accent);
}

.phone-frame.night-mode .time-countdown,
.phone-frame.night-mode .tile-badge {
  background: var(--red-mode-surface-2);
  color: var(--red-mode-text);
}

.phone-frame.night-mode .progress-bar {
  background: var(--red-mode-surface-2);
}

.phone-frame.night-mode .progress-fill {
  background: var(--red-mode-accent);
}

.phone-frame.night-mode .mockup-night-banner {
  display: block;
}

/* ==========================================================
   BENTO GRID / CORE ADVANTAGES
   ========================================================== */
.section {
  padding: 100px 0;
}

.section-header {
  max-width: 680px;
  margin: 0 auto 60px;
}

.text-center {
  text-align: center;
}

.section-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
}

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

.bento-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-float);
}

.bento-highlight {
  grid-column: span 2;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF9F5 100%);
  border-color: rgba(254, 123, 5, 0.2);
}

.bento-red-card {
  background: linear-gradient(135deg, #1C0F0A 0%, #120907 100%);
  border-color: rgba(255, 90, 54, 0.3);
  color: #FFE6DF;
}

.bento-red-card h3 {
  color: #FFFFFF;
}

.bento-red-card p {
  color: #FFB5A0;
}

.bento-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #FFF2E8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.bento-icon-wrapper.red-glow {
  background: rgba(255, 90, 54, 0.18);
}

.bento-emoji {
  font-size: 1.6rem;
}

.bento-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.bento-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.pill-chip {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  background: var(--bg-card-alt);
  color: var(--navy-800);
  border-radius: var(--radius-pill);
}

.bento-red-card .pill-chip {
  background: rgba(255, 90, 54, 0.2);
  color: #FFB5A0;
}

/* ==========================================================
   MODULES DETAILED GRID
   ========================================================== */
.modules-section {
  background: #FAF8F5;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.modules-tabs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.module-item {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 30px 24px;
  border: 1px solid var(--border-light);
  display: flex;
  gap: 20px;
  transition: all 0.25s ease;
}

.module-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-card);
}

.module-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: rgba(254, 123, 5, 0.35);
  line-height: 1;
}

.module-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.module-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================
   PWA INSTALL GUIDE BANNER
   ========================================================== */
.install-section {
  padding: 60px 0;
}

.install-banner {
  background: linear-gradient(135deg, #1A1A42 0%, #2A2A6B 100%);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  color: #FFFFFF;
  box-shadow: 0 20px 50px rgba(26, 26, 66, 0.2);
}

.badge-light {
  background: rgba(255, 255, 255, 0.15);
  color: #FED7AA;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.install-text {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 40px;
}

.install-text h2 {
  font-size: 2.4rem;
  color: #FFFFFF;
  margin: 16px 0 12px;
}

.install-text p {
  color: #CBD5E1;
  font-size: 1.05rem;
}

.install-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto 40px;
}

.install-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 24px;
  backdrop-filter: blur(10px);
}

.platform-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.install-card h4 {
  font-size: 1.2rem;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.step-list {
  padding-left: 20px;
  color: #E2E8F0;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-list strong {
  color: #FED7AA;
}

/* ==========================================================
   FAQ ACCORDION
   ========================================================== */
.faq-container {
  max-width: 780px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.accordion-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s;
}

.accordion-item:hover {
  border-color: rgba(254, 123, 5, 0.25);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--navy-800);
  text-align: left;
  cursor: pointer;
  gap: 16px;
}

.chevron {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  color: var(--primary);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.accordion-item.open .accordion-panel {
  padding-bottom: 22px;
}

.accordion-item.open .chevron {
  transform: rotate(180deg);
}

/* ==========================================================
   FINAL CTA BANNER
   ========================================================== */
.final-cta-section {
  padding: 40px 0 100px;
}

.final-cta-card {
  background: linear-gradient(135deg, #FFF5ED 0%, #FFFFFF 100%);
  border: 2px solid rgba(254, 123, 5, 0.2);
  border-radius: var(--radius-xl);
  padding: 70px 30px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.final-cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.final-cta-content h2 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.final-cta-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.cta-microcopy {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  background: #111126;
  color: #94A3B8;
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand-col .brand-name {
  color: #FFFFFF;
}

.footer-tagline {
  margin-top: 14px;
  max-width: 320px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links-col h4 {
  color: #FFFFFF;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  text-align: center;
  font-size: 0.82rem;
  color: #64748B;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
}

/* ==========================================================
   RESPONSIVE DESIGN
   ========================================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-cta-group, .hero-trust-row {
    justify-content: center;
  }

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

  .bento-highlight {
    grid-column: span 2;
  }

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

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .site-header .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
  }

  .site-header .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .bento-grid, .modules-tabs-grid, .install-cards-grid {
    grid-template-columns: 1fr;
  }

  .bento-highlight {
    grid-column: span 1;
  }

  .install-banner {
    padding: 40px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
}
