/* Listock - Exact App Design System Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #3f51b5; /* App Royal Blue */
  --primary-hover: #303f9f;
  --primary-glow: rgba(63, 81, 181, 0.08);
  
  --secondary: #e5a638; /* App Warm Gold */
  --secondary-hover: #d49527;
  --secondary-glow: rgba(229, 166, 56, 0.18);
  
  --bg-app: #f4f6f9; /* App Light Grey Background */
  --bg-white: #ffffff;
  --text-dark: #1e293b;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-white: #ffffff;
  --border-light: #e2e8f0;
  
  /* Category Accent Colors from Screenshots */
  --cat-frais: #3f51b5;
  --cat-frais-bg: #f0f4fa;
  --cat-legumes: #4caf50;
  --cat-legumes-bg: #f0f7f2;
  --cat-surgeles: #00bcd4;
  --cat-surgeles-bg: #f0f8fa;
  --cat-epicerie: #ff9800;
  --cat-epicerie-bg: #fdfbf7;
  
  --font-family: 'Outfit', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 16px;
  --border-radius-lg: 24px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

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

body.dark-page {
  background-color: var(--bg-app);
  color: var(--text-secondary);
}

body.dark-page p {
  color: var(--text-secondary);
}

body.dark-page h1, 
body.dark-page h2, 
body.dark-page h3, 
body.dark-page h4 {
  color: var(--primary);
}

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

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

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

body.dark-page header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border-light);
}

header.scrolled {
  padding: 6px 0;
  box-shadow: 0 10px 30px rgba(63, 81, 181, 0.08);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition);
}

header.scrolled .nav-wrapper {
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--secondary); /* App Gold Title */
}

.logo img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(63, 81, 181, 0.15);
}

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

.nav-links a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
}

body.dark-page .nav-links a {
  color: var(--text-secondary);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--secondary);
}

.btn-download-nav {
  background: var(--primary);
  color: var(--text-white) !important;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(63, 81, 181, 0.2);
}

.btn-download-nav:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 170px 0 80px 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(63, 81, 181, 0.05) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(229, 166, 56, 0.1) 0%, transparent 40%);
}

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

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

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-glow);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  width: fit-content;
  margin-bottom: 24px;
  border: 1px solid rgba(63, 81, 181, 0.12);
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: var(--primary);
}

.hero-content h1 span {
  color: var(--secondary);
}

.hero-content p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-playstore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--primary);
  color: var(--text-white);
  padding: 12px 28px;
  border-radius: 14px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(63, 81, 181, 0.25);
  border: 1px solid var(--primary-hover);
}

.btn-playstore:hover {
  transform: translateY(-2px);
  background-color: var(--primary-hover);
  box-shadow: 0 8px 25px rgba(63, 81, 181, 0.35);
}

.btn-playstore svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-white);
  color: var(--primary);
  padding: 12px 28px;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-light);
}

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

/* Phone Mockup Canvas matching App TopBar and NavigationBar */
.hero-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-container {
  width: 325px;
  height: 650px;
  border-radius: 40px;
  background: #1e293b;
  padding: 10px;
  box-shadow: 0 25px 60px -15px rgba(63, 81, 181, 0.25);
  border: 4px solid #334155;
  position: relative;
  z-index: 2;
}

.mockup-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(229, 166, 56, 0.18) 0%, rgba(63, 81, 181, 0.08) 50%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.mockup-screen {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background-color: var(--bg-app);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

/* Exact TopAppBar matching App Screenshot: Blue bar with MENU, Listock Gold, Exit */
.mockup-header {
  height: 54px;
  background: var(--primary); /* #3F51B5 */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.mockup-menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  cursor: pointer;
}

.mockup-title-gold {
  font-size: 18px;
  font-weight: 800;
  color: var(--secondary); /* Bold Gold #E5A638 */
  letter-spacing: -0.3px;
}

.mockup-logout-btn {
  font-size: 16px;
  color: #ffffff;
  cursor: pointer;
}

/* Mockup UI Body */
.mockup-body {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  transition: opacity 0.15s ease-in-out;
  position: relative;
}

/* App Category Items with Colored Left Accent Bar */
.app-item-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.app-item-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.app-item-card.frais { background-color: var(--cat-frais-bg); }
.app-item-card.frais::before { background-color: var(--cat-frais); }

.app-item-card.legumes { background-color: var(--cat-legumes-bg); }
.app-item-card.legumes::before { background-color: var(--cat-legumes); }

.app-item-card.surgeles { background-color: var(--cat-surgeles-bg); }
.app-item-card.surgeles::before { background-color: var(--cat-surgeles); }

.app-item-card.epicerie { background-color: var(--cat-epicerie-bg); }
.app-item-card.epicerie::before { background-color: var(--cat-epicerie); }

.app-checkbox {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid #64748b;
  display: inline-block;
  cursor: pointer;
  position: relative;
}

.app-checkbox.checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.app-checkbox.checked::after {
  content: '✓';
  position: absolute;
  top: -3px;
  left: 2px;
  font-size: 12px;
  color: white;
  font-weight: bold;
}

.app-cross-icon {
  font-size: 14px;
  color: #94a3b8;
  cursor: pointer;
}

.app-cross-icon:hover {
  color: #ef4444;
}

/* Floating Action Button (+ FAB) in Gold */
.mockup-fab {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--secondary); /* #E5A638 */
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(229, 166, 56, 0.4);
  cursor: pointer;
  z-index: 10;
  user-select: none;
  transition: var(--transition);
}

.mockup-fab:hover {
  transform: scale(1.08);
}

/* Bottom Navigation Bar (Royal Blue #3F51B5 with 4 App Tabs) */
.mockup-tabs {
  height: 58px;
  background: var(--primary); /* #3F51B5 */
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 8px;
  font-weight: 700;
  cursor: pointer;
  width: 20%; /* 5 Tabs: Liste, Stock, Repas, Budget, Orga */
  transition: var(--transition);
  text-align: center;
}

.mockup-tab.active {
  color: var(--secondary); /* App Gold #E5A638 for selected item */
}

.mockup-tab span:first-child {
  font-size: 16px;
}

/* Recipe Cards & Badges for Idées Repas screen */
.recipe-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  padding: 10px;
  margin-bottom: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.recipe-card.match-100 {
  border-color: #a7f3d0;
}

.recipe-badge-100 {
  font-size: 8px;
  font-weight: 800;
  background: #d1e7dd;
  color: #0f5132;
  padding: 2px 8px;
  border-radius: 12px;
}

.recipe-badge-partial {
  font-size: 8px;
  font-weight: 800;
  background: #fff3cd;
  color: #664d03;
  padding: 2px 8px;
  border-radius: 12px;
}

.recipe-chip-green {
  font-size: 8px;
  font-weight: 700;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
  padding: 2px 6px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

/* Interactive Presentation Slideshow (App Showcase) */
.showcase {
  padding: 100px 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}

.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  background: var(--bg-app);
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 45px rgba(63, 81, 181, 0.04);
  margin-top: 40px;
}

.slides-wrapper {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  padding: 50px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: center;
}

.slide-visual {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-light);
  padding: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  max-width: 360px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.slide-visual img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
}

.slide-details h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.slide-details p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.slide-details ul {
  list-style: none;
}

.slide-details li {
  margin-bottom: 14px;
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

.slide-details li::before {
  content: '✓';
  color: var(--secondary);
  font-weight: 800;
  font-size: 16px;
}

.slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
}

.slider-arrows {
  display: flex;
  gap: 12px;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  transition: var(--transition);
  user-select: none;
}

.slider-arrow:hover {
  background: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 5px;
}

/* Features Section */
.features {
  padding: 100px 0;
  background-color: var(--bg-app);
}

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

.section-header h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1.2px;
  margin-bottom: 16px;
  color: var(--primary);
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 30px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(63, 81, 181, 0.08);
  border-color: var(--secondary);
}

.feature-img-wrapper {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--border-light);
}

.feature-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.feature-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  background: var(--primary-glow);
  color: var(--primary);
  border: 1px solid rgba(63, 81, 181, 0.12);
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  color: var(--primary);
}

.feature-card p {
  font-size: 15px;
  color: var(--text-secondary);
}

/* How It Works Section */
.how-it-works {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 24px auto;
  box-shadow: 0 6px 15px rgba(63, 81, 181, 0.25);
}

.step-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--primary);
}

.step-card p {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 280px;
  margin: 0 auto;
}

/* Contact / Support Section */
.support {
  padding: 100px 0;
  background-color: var(--bg-app);
}

.support-wrapper {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.support-info h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--primary);
}

.support-info p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 16px;
}

.support-channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.support-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-light);
}

.support-channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--primary-glow);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.support-channel-details h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}

.support-channel-details p {
  font-size: 14px;
  margin-bottom: 0;
}

/* Form Styles */
.support-form-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary);
}

.form-group input, 
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  background-color: var(--bg-app);
  font-family: var(--font-family);
  font-size: 15px;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-group input:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px var(--secondary-glow);
}

.btn-submit {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: var(--primary);
  color: var(--text-white);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(63, 81, 181, 0.2);
  transition: var(--transition);
}

.btn-submit:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

/* Legal Documents Layout (Privacy, Terms, Mentions) */
.legal-container {
  padding: 160px 0 100px 0;
  max-width: 800px;
  margin: 0 auto;
}

.legal-header {
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 24px;
}

.legal-header h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -1px;
  color: var(--primary);
}

.legal-date {
  color: var(--text-muted);
  font-size: 14px;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 32px 0 16px 0;
  letter-spacing: -0.5px;
  color: var(--primary);
}

.legal-content p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.legal-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
  color: var(--text-secondary);
}

.legal-content li {
  margin-bottom: 8px;
}

/* Footer */
footer {
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 30px 0;
  border-top: 1px solid var(--primary-hover);
}

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

.footer-logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--secondary); /* Gold Title */
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-links h4, 
.footer-contact h4 {
  color: var(--text-white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

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

.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .tagline {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-content h1 {
    font-size: 42px;
  }
  
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-mockup {
    order: -1;
  }
  
  .slide {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 24px;
  }
  
  .slider-controls {
    padding: 20px 24px;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .support-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 30px 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: var(--transition);
  }
  
  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .btn-download-nav {
    width: 100%;
    text-align: center;
  }
  
  .hero {
    padding: 120px 0 60px 0;
  }
  
  .hero-content h1 {
    font-size: 36px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-playstore, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .support-form-card {
    padding: 24px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
