/* CSS Root Variables & Brand Tokens */
:root {
  --primary: #e17b31;
  --primary-hover: #c8651f;
  --primary-light: #fdf5ef;
  --primary-rgb: 225, 123, 49;
  
  --secondary: #2c3e50;
  --secondary-hover: #1a252f;
  --secondary-light: #f4f6f7;
  
  --green: #2ecc71;
  --green-light: #ebfbf2;
  --red: #e74c3c;
  --red-light: #fdf2f1;
  
  --bg-cream: #faf9f6;
  --bg-white: #ffffff;
  
  --text-dark: #1e1d1b;
  --text-muted: #6f6d6a;
  --border-light: #eae8e3;
  
  --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 50px rgba(225, 123, 49, 0.08);
  --shadow-flat: 0 4px 0px rgba(0, 0, 0, 0.1);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  --max-width: 1200px;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

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

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

button, input, select {
  font-family: inherit;
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Background Glowing Blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.45;
  animation: float-blob 20s infinite alternate ease-in-out;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background-color: #fcecd6;
  top: -100px;
  right: -50px;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background-color: #fdf5ef;
  top: 600px;
  left: -150px;
  animation-delay: -5s;
}

.blob-3 {
  width: 350px;
  height: 350px;
  background-color: #f5f0e6;
  bottom: 200px;
  right: -50px;
  animation-delay: -10s;
}

@keyframes float-blob {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -30px) scale(1.1); }
  100% { transform: translate(-30px, 40px) scale(0.95); }
}

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

/* Utility Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  gap: 8px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-white);
  box-shadow: 0 4px 14px rgba(225, 123, 49, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 123, 49, 0.4);
}

.btn-secondary {
  background-color: var(--bg-white);
  color: var(--primary);
  border: 2px solid var(--border-light);
}

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

.btn-tertiary {
  background-color: transparent;
  color: var(--text-dark);
  font-weight: 500;
}

.btn-tertiary:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.btn-full {
  width: 100%;
  padding: 16px;
}

.btn-icon {
  width: 18px;
  height: 18px;
}

/* Header & Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(250, 249, 246, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(234, 232, 227, 0.6);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

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

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

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

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

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
}

/* Mobile Sidebar Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: var(--bg-white);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
  z-index: 2000;
  padding: 40px 24px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  right: 0;
}

.close-menu {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-link {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}

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

.mobile-btn-download {
  margin-top: 20px;
}

/* Hero Section */
.hero-section {
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 48px;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--primary-light);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(225, 123, 49, 0.15);
}

.badge-icon {
  width: 14px;
  height: 14px;
}

.hero-title {
  font-size: 48px;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.benefit-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ebfbf2;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon i {
  width: 14px;
  height: 14px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  width: 100%;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
  width: 100%;
}

.playstore-badge {
  height: 48px;
}

.user-stats {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: var(--text-muted);
}

.stars {
  display: flex;
  gap: 2px;
  color: #f39c12;
  margin-bottom: 4px;
}

.star-filled {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

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

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.hero-img {
  width: 100%;
  border-radius: var(--radius-xl);
  transform: perspective(800px) rotateY(-5deg) rotateX(5deg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.hero-img:hover {
  transform: scale(1.02);
}

/* Floating widgets on hero */
.floating-widget {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  animation: bounce 6s infinite alternate ease-in-out;
}

.widget-1 {
  bottom: 30px;
  left: -40px;
}

.widget-2 {
  top: 40px;
  right: -30px;
  animation-delay: -3s;
}

.widget-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.widget-icon.orange {
  background-color: var(--primary-light);
  color: var(--primary);
}

.widget-icon.green {
  background-color: var(--green-light);
  color: var(--green);
}

.widget-icon i {
  width: 20px;
  height: 20px;
}

.widget-text {
  display: flex;
  flex-direction: column;
}

.widget-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.widget-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

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

/* Section Common Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-title {
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
}

/* Live Demo Section */
.demo-section {
  padding: 100px 0;
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.preset-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.preset-title {
  font-weight: 600;
  color: var(--text-muted);
  margin-right: 8px;
}

.preset-btn {
  background-color: var(--bg-cream);
  border: 1.5px solid var(--border-light);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.preset-btn:hover, .preset-btn.active {
  background-color: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

/* Demo App Card UI Layout */
.demo-card-wrapper {
  max-width: 980px;
  margin: 0 auto;
}

.demo-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background-color: var(--bg-cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.demo-card-inputs {
  padding: 40px;
  border-right: 1px solid var(--border-light);
  background-color: var(--bg-white);
}

.demo-card-outputs {
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.demo-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 12px;
}

.demo-card-title i {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

/* Form Styling */
.form-group {
  margin-bottom: 20px;
}

.form-group label, .input-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  font-size: 15px;
  font-weight: 500;
  background-color: var(--bg-cream);
  transition: var(--transition);
  color: var(--text-dark);
}

.form-control:focus {
  border-color: var(--primary);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(225, 123, 49, 0.1);
}

.input-prefix-wrapper, .input-suffix-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-prefix {
  position: absolute;
  left: 16px;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 14px;
}

.input-prefix-wrapper input {
  padding-left: 42px;
}

.input-suffix {
  position: absolute;
  right: 16px;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 14px;
}

.input-suffix-wrapper input {
  padding-right: 50px;
}

/* Ingredients Table / List */
.ingredients-list-wrapper {
  margin-bottom: 24px;
}

.ingredients-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}

.ingredient-row-input {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.3fr;
  gap: 10px;
  align-items: center;
}

.ingredient-row-input .form-control {
  padding: 10px 12px;
  font-size: 14px;
}

.btn-delete-item {
  background: none;
  border: none;
  color: var(--red);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: var(--transition);
}

.btn-delete-item:hover {
  opacity: 1;
  transform: scale(1.15);
}

.btn-add-item {
  background: none;
  border: 1.5px dashed var(--border-light);
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  padding: 10px;
  border-radius: var(--radius-md);
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-add-item:hover {
  border-color: var(--primary);
  background-color: var(--primary-light);
}

.btn-add-item i {
  width: 16px;
  height: 16px;
}

.other-costs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}

/* Outputs Panel styling */
.hpp-display-card {
  background: linear-gradient(135deg, #1e1d1b 0%, #2c2b29 100%);
  color: var(--bg-white);
  padding: 24px;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
  box-shadow: 0 10px 25px rgba(30, 29, 27, 0.15);
  position: relative;
  overflow: hidden;
}

.hpp-display-card::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(225, 123, 49, 0.15);
  filter: blur(20px);
}

.hpp-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--border-light);
  display: block;
  margin-bottom: 6px;
}

.hpp-value {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.hpp-breakdown {
  display: flex;
  gap: 16px;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
  color: #b0afae;
}

.hpp-breakdown b {
  color: var(--bg-white);
}

/* Slider styling */
.slider-group {
  margin-bottom: 28px;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 14px;
}

.slider-percent {
  color: var(--primary);
  font-size: 18px;
  font-weight: 800;
}

.custom-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 5px;
  background: var(--border-light);
  outline: none;
  margin-bottom: 8px;
}

.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(225, 123, 49, 0.5);
  transition: var(--transition);
}

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

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Results Grid */
.price-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.price-result-box {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 16px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
}

.price-box-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.price-box-value {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 2px;
}

.text-orange {
  color: var(--primary);
}

.text-green {
  color: var(--green);
}

.price-box-sub {
  font-size: 10px;
  color: var(--text-muted);
}

/* AI Insight Box (Kata Finno) */
.ai-insight-box {
  background-color: var(--primary-light);
  border: 1px solid rgba(225, 123, 49, 0.15);
  padding: 20px;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
  position: relative;
}

.ai-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.ai-avatar {
  font-size: 20px;
}

.ai-meta {
  display: flex;
  flex-direction: column;
}

.ai-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
}

.ai-status {
  font-size: 10px;
  color: var(--text-muted);
}

.ai-content {
  font-size: 13.5px;
  color: #5d5a55;
  font-weight: 500;
  line-height: 1.5;
}

/* Core Features Grid Section */
.features-section {
  padding: 100px 0;
}

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

.feature-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(225, 123, 49, 0.3);
}

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

.feature-icon-wrapper.orange {
  background-color: var(--primary-light);
  color: var(--primary);
}

.feature-icon-wrapper i {
  width: 28px;
  height: 28px;
}

.feature-card-title {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

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

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

.showcase-layout {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 60px;
  align-items: start;
}

.showcase-tabs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.showcase-tab {
  background-color: var(--bg-cream);
  border: 1px solid var(--border-light);
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.showcase-tab:hover, .showcase-tab.active {
  background-color: var(--bg-white);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.tab-number {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--border-light);
  transition: var(--transition);
}

.showcase-tab.active .tab-number {
  color: var(--primary);
}

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

.tab-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.tab-desc {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* App Screenshot Frame */
.showcase-mockup-wrapper {
  display: flex;
  justify-content: center;
  position: sticky;
  top: 100px;
}

.showcase-screenshot-frame {
  position: relative;
  width: 300px;
  min-height: 580px;
}

.showcase-screenshot {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
  display: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.showcase-screenshot.active {
  display: block;
  opacity: 1;
  position: relative;
}

.phone-frame {
  width: 320px;
  height: 640px;
  border: 12px solid #2c3e50;
  border-radius: 40px;
  background-color: #2c3e50;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.phone-screen {
  flex: 1;
  background-color: var(--bg-cream);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.phone-home-indicator {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 4px;
  border-radius: 10px;
  background-color: var(--text-muted);
  z-index: 10;
}

.screen-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1;
}

.screen-content.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Micro App Styles (Inside mockup) */
.screen-header-app {
  padding: 16px;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 4px;
}

.back-icon-app {
  width: 18px;
  height: 18px;
  color: var(--text-dark);
}

.app-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-avatar i {
  width: 14px;
  height: 14px;
}

.screen-body {
  padding: 16px;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 30px;
}

.search-bar-app {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-muted);
}

.search-icon-app {
  width: 12px;
  height: 12px;
}

.app-section-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 4px;
}

.app-product-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-product-img {
  font-size: 20px;
  width: 36px;
  height: 36px;
  background-color: var(--bg-cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.app-product-name {
  font-size: 12px;
  font-weight: 700;
}

.app-product-hpp {
  font-size: 10px;
  color: var(--text-muted);
}

.app-product-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.app-price-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
}

.app-margin-badge {
  font-size: 9px;
  background-color: var(--green-light);
  color: var(--green);
  padding: 1px 6px;
  border-radius: 50px;
  font-weight: 700;
}

.app-btn-add {
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 12px;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 600;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: auto;
}

.app-btn-add i {
  width: 14px;
  height: 14px;
}

/* App mock layout for Resep */
.app-form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.app-form-group label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
}

.app-input-mock {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px;
  font-size: 12px;
  font-weight: 600;
}

.app-section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}

.app-small-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dark);
}

.app-action-text {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
}

.app-ingredient-row {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
}

.app-ingredient-row span:last-child {
  font-weight: 700;
  color: var(--text-muted);
}

.app-cost-grid-mock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.app-cost-box {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 8px;
  display: flex;
  flex-direction: column;
}

.app-cost-box span {
  font-size: 9px;
  color: var(--text-muted);
}

.app-cost-box b {
  font-size: 11px;
  color: var(--text-dark);
}

.app-footer-button {
  background-color: var(--primary);
  color: var(--bg-white);
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 12px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.app-footer-button i {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* App mock layout for Analisis AI */
.app-bep-banner {
  background-color: var(--primary-light);
  border: 1.5px solid rgba(225, 123, 49, 0.15);
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: center;
}

.app-bep-title {
  font-size: 10px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.app-bep-target {
  font-size: 16px;
  color: var(--text-dark);
}

.app-bep-target b {
  color: var(--primary);
}

.app-bep-desc {
  font-size: 9px;
  color: var(--text-muted);
}

.app-ai-avatar-card {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-top: 6px;
}

.app-ai-icon {
  font-size: 18px;
  width: 32px;
  height: 32px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-ai-speech {
  flex: 1;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px;
}

.app-ai-bubble-title {
  font-size: 10px;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}

.app-ai-speech p {
  font-size: 10.5px;
  line-height: 1.4;
  color: var(--text-dark);
}

.app-action-list-mock {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.action-item-mock {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.action-item-mock i {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

/* App mock layout for Bahan Baku */
.app-ingredient-item-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ingredient-info-mock {
  display: flex;
  flex-direction: column;
}

.ingredient-name-mock {
  font-size: 12px;
  font-weight: 700;
}

.ingredient-detail-mock {
  font-size: 9px;
  color: var(--text-muted);
}

.ingredient-unit-price-mock {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
}

/* FAQ Accordion Section */
.faq-section {
  padding: 100px 0;
}

.faq-accordion-wrapper {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-header-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.faq-header-btn:hover {
  color: var(--primary);
}

.faq-icon-arrow {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.faq-icon-arrow i {
  width: 18px;
  height: 18px;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-item.active .faq-body {
  max-height: 1000px; /* arbitrary high number for transitions */
  padding-bottom: 24px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0), padding 0.3s ease;
}

/* CTA Download Banner Section */
.cta-download-section {
  padding: 100px 0;
  background-color: #1e1d1b;
  color: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.cta-download-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(225, 123, 49, 0.15);
  filter: blur(80px);
  z-index: 1;
}

.cta-download-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

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

.cta-desc {
  font-size: 18px;
  color: #b0afae;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-badges {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.store-badge-link {
  transition: var(--transition);
}

.store-badge-link:hover {
  transform: scale(1.05);
}

.store-badge-img {
  height: 60px;
}

.cta-disclaimer {
  font-size: 12px;
  color: #787570;
}

/* Footer styling */
.footer {
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-light);
  padding: 80px 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-img {
  width: 36px;
  height: 36px;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background-color: var(--bg-cream);
  color: var(--text-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.footer-socials a:hover {
  background-color: var(--primary);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.footer-socials a i {
  width: 18px;
  height: 18px;
}

.footer-links-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.link-group-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.footer-link-group a {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-link-group a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 30px 0;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Responsiveness - Tablets & Mobiles */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .hero-benefits {
    align-items: flex-start;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-badges {
    justify-content: center;
  }
  
  .demo-card {
    grid-template-columns: 1fr;
  }
  
  .demo-card-inputs {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }
  
  .showcase-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .showcase-mockup-wrapper {
    order: -1;
    position: static;
  }

  .showcase-screenshot-frame {
    width: 260px;
    margin: 0 auto;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
  }
  
  .menu-toggle {
    display: block;
    font-size: 24px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-ctas .btn {
    width: 100%;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .cta-title {
    font-size: 28px;
  }
  
  .footer-links-side {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-badges {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  
  .preset-title {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .other-costs-grid {
    grid-template-columns: 1fr;
  }
  
  .ingredient-row-input {
    grid-template-columns: 1.5fr 1fr 1fr 0.3fr;
  }
  
  .price-results-grid {
    grid-template-columns: 1fr;
  }
}

/* Future Roadmap Teaser Banner */
.roadmap-teaser {
  margin-top: 56px;
  grid-column: 1 / -1;
  background-color: var(--primary-light);
  border: 1.5px dashed rgba(225, 123, 49, 0.4);
  padding: 30px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: left;
}

.roadmap-icon {
  font-size: 40px;
  background-color: var(--bg-white);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.roadmap-content h4 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 8px;
}

.roadmap-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .roadmap-teaser {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 24px;
  }
}

