/* ==========================================================================
   CUCINI – Ultra Premium OnePage Design System
   ========================================================================== */

:root {
  --primary: #ff5722;
  --primary-hover: #ff7043;
  --primary-glow: rgba(255, 87, 34, 0.4);
  --accent: #ffb300;
  --accent-glow: rgba(255, 179, 0, 0.35);
  --success: #00e676;
  --success-glow: rgba(0, 230, 118, 0.35);
  --blue: #29b6f6;
  --purple: #ab47bc;

  --bg-dark: #0a0a0c;
  --bg-card: rgba(22, 22, 28, 0.7);
  --bg-card-hover: rgba(30, 30, 38, 0.85);
  --card-border: rgba(255, 255, 255, 0.08);
  --card-border-hover: rgba(255, 87, 34, 0.4);

  --text-main: #f8f9fa;
  --text-muted: #9aa0a6;
  --text-dim: #60646c;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 10px 30px var(--primary-glow);

  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* Glowing Ambient Blobs */
.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  animation: floatBlobs 18s ease-in-out infinite alternate;
}

.glow-1 {
  top: -100px;
  left: 20%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.35) 0%, transparent 70%);
}

.glow-2 {
  top: 900px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 179, 0, 0.25) 0%, transparent 70%);
  animation-delay: -5s;
}

.glow-3 {
  top: 2200px;
  left: -150px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.2) 0%, transparent 70%);
  animation-delay: -10s;
}

@keyframes floatBlobs {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(60px) scale(1.1); }
  100% { transform: translateY(-40px) scale(0.95); }
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, #ff5722 0%, #ff9100 50%, #ffb300 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ff5722 0%, #f4511e 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 87, 34, 0.6);
  background: linear-gradient(135deg, #ff6e40 0%, #ff5722 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border-color: var(--card-border);
  backdrop-filter: blur(12px);
}

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

.btn-lg {
  padding: 16px 32px;
  font-size: 17px;
  border-radius: var(--radius-full);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-block {
  width: 100%;
}

.shadow-glow {
  box-shadow: 0 10px 25px var(--primary-glow);
}

/* Glassmorphic Cards */
.card-glass {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.card-glass:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

/* Section Common */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-header {
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  background: rgba(255, 87, 34, 0.12);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  border: 1px solid rgba(255, 87, 34, 0.25);
}

.section-title {
  font-size: 40px;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 18px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

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

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

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
}

.nav-link:hover {
  color: #ffffff;
}

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

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

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  padding: 160px 0 90px;
  position: relative;
  z-index: 1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  padding: 6px 14px 6px 8px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.badge-pill {
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.badge-text {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-title {
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}

.hero-subtitle {
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-subtitle strong {
  color: #fff;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--card-border);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 32px;
  background-color: var(--card-border);
}

/* Mockup Visual */
.hero-visual {
  position: relative;
}

.mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-glow {
  position: absolute;
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.4) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 0;
}

.mockup-img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 1;
  transition: var(--transition);
  animation: floatPhone 6s ease-in-out infinite alternate;
}

@keyframes floatPhone {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-14px) rotate(1deg); }
}

/* Floating Pills */
.floating-pill {
  position: absolute;
  z-index: 2;
  background: rgba(16, 16, 22, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  animation: floatPill 5s ease-in-out infinite alternate;
}

.float-1 {
  top: 15%;
  left: -20px;
  animation-delay: 0s;
}

.float-2 {
  bottom: 12%;
  right: -20px;
  animation-delay: -2.5s;
}

@keyframes floatPill {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.pill-icon {
  font-size: 20px;
  background: rgba(255, 255, 255, 0.08);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.pill-text strong {
  display: block;
  font-size: 13px;
  color: #fff;
}

.pill-text small {
  font-size: 11px;
  color: var(--text-muted);
}

/* ==========================================================================
   TRUST / PLATFORM BAR
   ========================================================================== */

.trust-bar {
  padding: 36px 0;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.015);
  text-align: center;
}

.trust-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition);
}

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

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dot-ig { background: #e1306c; box-shadow: 0 0 8px #e1306c; }
.dot-tt { background: #00f2fe; box-shadow: 0 0 8px #00f2fe; }
.dot-ck { background: #2e7d32; box-shadow: 0 0 8px #2e7d32; }
.dot-yt { background: #ff0000; box-shadow: 0 0 8px #ff0000; }
.dot-photo { background: var(--accent); box-shadow: 0 0 8px var(--accent); }
.dot-mic { background: var(--primary); box-shadow: 0 0 8px var(--primary); }

/* ==========================================================================
   INTERACTIVE AI SIMULATOR
   ========================================================================== */

.simulator-box {
  padding: 36px;
  border-radius: var(--radius-xl);
  border-color: rgba(255, 87, 34, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  background: linear-gradient(180deg, rgba(22, 22, 28, 0.85) 0%, rgba(14, 14, 18, 0.95) 100%);
}

.sim-controls {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sim-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.sim-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sim-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.sim-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.sim-btn.active {
  background: rgba(255, 87, 34, 0.15);
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 16px rgba(255, 87, 34, 0.25);
}

.sim-preview-grid {
  display: grid;
  grid-template-columns: 1fr auto 1.25fr;
  gap: 24px;
  align-items: center;
}

.sim-source-card, .sim-result-card {
  background: rgba(10, 10, 14, 0.6);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sim-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-indicator.live {
  width: 8px;
  height: 8px;
  background-color: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--success);
}

.sim-raw-content {
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  flex-grow: 1;
}

.sim-source-badge {
  font-family: monospace;
  font-size: 12px;
  color: var(--primary);
  margin-bottom: 10px;
  word-break: break-all;
}

.sim-raw-text {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
}

.sim-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  position: relative;
}

.pulse-circle {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 87, 34, 0.15);
  animation: pulseSim 2s infinite ease-out;
}

@keyframes pulseSim {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Parsed Result Card */
.sim-result-card {
  border-color: rgba(255, 87, 34, 0.3);
  box-shadow: 0 10px 30px rgba(255, 87, 34, 0.08);
}

.recipe-meta-top {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.badge-cat, .badge-time, .badge-servings {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.badge-cat {
  background: rgba(255, 87, 34, 0.15);
  color: var(--primary);
}

.sim-recipe-title {
  font-size: 22px;
  margin-bottom: 14px;
  color: #fff;
}

.sim-nutrition-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.nutri-tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--text-muted);
}

.nutri-tag strong {
  color: #fff;
}

.sim-section-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.sim-ingredients-list, .sim-steps-list {
  font-size: 13px;
  margin-bottom: 16px;
  padding-left: 18px;
  color: var(--text-muted);
}

.sim-ingredients-list {
  list-style-type: none;
  padding-left: 0;
}

.sim-ingredients-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.ing-amount {
  font-weight: 700;
  color: #fff;
  min-width: 60px;
}

.ing-cat {
  margin-left: auto;
  font-size: 11px;
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--text-dim);
}

.sim-steps-list li {
  margin-bottom: 6px;
  line-height: 1.5;
}

.sim-steps-list em {
  color: var(--primary);
  font-style: normal;
  font-weight: 600;
}

/* ==========================================================================
   FEATURES GRID
   ========================================================================== */

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

.feature-card {
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-hover);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.feature-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.icon-orange { background: rgba(255, 87, 34, 0.15); color: var(--primary); box-shadow: 0 0 20px rgba(255, 87, 34, 0.2); }
.icon-green { background: rgba(0, 230, 118, 0.15); color: var(--success); box-shadow: 0 0 20px rgba(0, 230, 118, 0.2); }
.icon-blue { background: rgba(41, 182, 246, 0.15); color: var(--blue); box-shadow: 0 0 20px rgba(41, 182, 246, 0.2); }
.icon-purple { background: rgba(171, 71, 188, 0.15); color: var(--purple); box-shadow: 0 0 20px rgba(171, 71, 188, 0.2); }
.icon-gold { background: rgba(255, 179, 0, 0.15); color: var(--accent); box-shadow: 0 0 20px rgba(255, 179, 0, 0.2); }
.icon-teal { background: rgba(0, 188, 212, 0.15); color: #00bcd4; box-shadow: 0 0 20px rgba(0, 188, 212, 0.2); }

.feature-title {
  font-size: 22px;
  margin-bottom: 12px;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.feature-list {
  list-style: none;
  border-top: 1px solid var(--card-border);
  padding-top: 16px;
}

.feature-list li {
  font-size: 13px;
  color: var(--text-main);
  padding: 4px 0;
  font-weight: 500;
}

/* ==========================================================================
   PORTION CALCULATOR
   ========================================================================== */

.calc-wrapper {
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
  border-color: rgba(255, 179, 0, 0.2);
}

.slider-container {
  margin: 36px 0;
  background: rgba(0, 0, 0, 0.25);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
}

.slider-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 16px;
}

.servings-badge {
  background: var(--primary);
  color: #fff;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 15px;
  box-shadow: 0 4px 14px var(--primary-glow);
}

.custom-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 0 16px var(--primary);
  border: 2px solid #fff;
  transition: transform 0.15s ease;
}

.custom-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.slider-marks {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 600;
}

.scaled-recipe-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--card-border);
  padding-bottom: 12px;
}

.badge-tag {
  font-size: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  color: var(--text-muted);
}

.ingredients-table-wrap {
  overflow-x: auto;
}

.calc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.calc-table th {
  text-align: left;
  padding: 10px 14px;
  color: var(--text-dim);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--card-border);
}

.calc-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.calc-table td strong {
  color: var(--accent);
  font-size: 15px;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.stars {
  color: #ffb300;
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.author-info strong {
  display: block;
  font-size: 14px;
  color: #fff;
}

.author-info small {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq-container {
  max-width: 800px;
}

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

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 28px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-icon {
  font-size: 24px;
  font-weight: 400;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 28px 24px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ==========================================================================
   DOWNLOAD CTA SECTION
   ========================================================================== */

.download-card {
  padding: 70px 40px;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at center, rgba(255, 87, 34, 0.15) 0%, rgba(22, 22, 28, 0.9) 70%);
  border-color: rgba(255, 87, 34, 0.4);
  box-shadow: 0 20px 80px rgba(255, 87, 34, 0.2);
}

.download-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.download-title {
  font-size: 44px;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.download-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 36px;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.download-features-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: #060608;
  border-top: 1px solid var(--card-border);
  padding: 80px 0 40px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.footer-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-copy {
  color: var(--text-dim);
  font-size: 12px;
}

.footer-links-col h4 {
  font-size: 15px;
  color: #fff;
  margin-bottom: 18px;
  font-weight: 700;
}

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

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

.footer-links-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

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

/* ==========================================================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .hero-subtitle {
    margin: 0 auto 36px;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .sim-preview-grid {
    grid-template-columns: 1fr;
  }
  .sim-arrow {
    transform: rotate(90deg);
    padding: 12px 0;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 14, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--card-border);
    transform: translateY(-150%);
    transition: var(--transition);
  }
  .nav-links.active {
    transform: translateY(0);
  }
  .mobile-menu-btn {
    display: flex;
  }
  .btn-nav {
    display: none;
  }
  .hero-title {
    font-size: 40px;
  }
  .section-title {
    font-size: 32px;
  }
  .simulator-box {
    padding: 20px;
  }
  .calc-wrapper {
    padding: 24px;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
}
