/* ==========================================================================
   DESIGN SYSTEM & CUSTOM STYLES: Dapur Kuliner Pakndut
   ========================================================================== */

/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* Variables */
:root {
  /* Color Tokens matching Flutter App Theme */
  --red: #C0321A;
  --red-rgb: 192, 50, 26;
  --red-dark: #8B1A0A;
  --red-light: #F91605;
  --orange: #F5A524;
  --orange-rgb: 245, 165, 36;
  --orange-dark: #E8920A;
  --cream: #F7F0E6;
  --white: #FFFFFF;
  --text-black: #1C1C1C;
  --text-mid: #555555;
  --text-gray: #888888;
  --success: #2BB84A;
  --error: #CC2A2A;

  /* Premium Background Gradients */
  --grad-primary: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  --grad-accent: linear-gradient(135deg, #FF9F43 0%, var(--orange) 100%);
  --grad-light: linear-gradient(185deg, #FFF9F2 0%, var(--cream) 100%);
  --grad-dark: linear-gradient(135deg, #2E0B06 0%, #150301 100%);

  /* UI Tokens */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 25px -5px rgba(139, 26, 10, 0.08), 0 8px 16px -6px rgba(139, 26, 10, 0.04);
  --shadow-lg: 0 20px 35px -5px rgba(192, 50, 26, 0.15), 0 10px 20px -8px rgba(192, 50, 26, 0.08);
  --shadow-glow: 0 0 20px rgba(245, 165, 36, 0.35);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: var(--radius-full);
  border: 2px solid var(--cream);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--red-dark);
}

/* Typography & Global Components */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
}

p {
  color: var(--text-mid);
  font-weight: 500;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  font-weight: 800;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  gap: 0.6rem;
  transition: var(--transition);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  filter: brightness(1.1);
}

.btn-accent {
  background: var(--grad-accent);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  filter: brightness(1.05);
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}

.btn-outline:hover {
  background: rgba(192, 50, 26, 0.05);
  transform: translateY(-3px);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(247, 240, 230, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  padding: 0.8rem 8%;
  border-bottom: 1px solid rgba(192, 50, 26, 0.05);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo img {
  height: 48px;
  object-fit: contain;
}

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

.nav-links a {
  font-weight: 700;
  color: var(--text-black);
  position: relative;
  font-size: 0.95rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -6px;
  left: 0;
  background: var(--grad-accent);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-btn {
  display: flex;
}

/* Burger Menu (Mobile) */
.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.burger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--text-black);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding: 8rem 8% 4rem;
  background: var(--grad-light);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  position: relative;
  z-index: 2;
}

.badge-tag {
  align-self: flex-start;
  background: rgba(245, 165, 36, 0.15);
  color: var(--orange-dark);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid rgba(245, 165, 36, 0.2);
}

.hero-title {
  font-size: 3.5rem;
  color: var(--text-black);
}

.hero-title span {
  background: linear-gradient(135deg, var(--red) 30%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-mid);
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  margin-top: 1rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
}

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

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--red);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-gray);
  font-weight: 700;
}

/* Background elements */
.hero-bg-blobs {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.blob-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(245, 165, 36, 0.08) 0%, rgba(245, 165, 36, 0) 70%);
  border-radius: var(--radius-full);
}

.blob-2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(192, 50, 26, 0.05) 0%, rgba(192, 50, 26, 0) 70%);
  border-radius: var(--radius-full);
}

/* Device Container */
.hero-device-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* 🚀 BEAUTIFUL STATIC PREVIEW GRAPHIC MOCKUP (Lightweight CSS UI illustration) */
.hero-showcase-container {
  position: relative;
  width: 320px;
  height: 550px;
}

.phone-mockup-static {
  width: 290px;
  height: 530px;
  background: #F8F9FD;
  border: 10px solid #1C1C1C;
  border-radius: 36px;
  box-shadow: 0 30px 60px -15px rgba(139, 26, 10, 0.25), 0 0 0 1px #111;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Static Mockup Header elements */
.mock-status-bar {
  background: #961D0C;
  height: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
}

.mock-icons {
  display: flex;
  gap: 5px;
}

.mock-app-header {
  background: linear-gradient(180deg, #961D0C 0%, #631105 100%);
  color: var(--white);
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mock-welcome {
  font-size: 0.55rem;
  opacity: 0.8;
}

.mock-logo {
  font-size: 0.9rem;
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: -0.5px;
}

.mock-cart-badge {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  position: relative;
}

.mock-cart-badge span {
  position: absolute;
  top: -3px;
  right: -3px;
  background: var(--orange);
  width: 14px;
  height: 14px;
  font-size: 0.55rem;
  font-weight: 900;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-app-banner {
  margin: 10px 14px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  padding: 10px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 4px 10px rgba(245, 165, 36, 0.15);
}

.banner-title {
  font-weight: 900;
  font-size: 0.72rem;
}

.banner-sub {
  font-size: 0.58rem;
  opacity: 0.9;
}

.mock-section-title {
  font-size: 0.75rem;
  font-weight: 800;
  margin: 4px 14px 8px;
  color: var(--text-black);
}

.mock-menu-item {
  background: var(--white);
  margin: 0 14px 8px;
  padding: 8px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.mock-menu-item img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
}

.mock-menu-desc {
  flex-grow: 1;
}

.mock-menu-desc h6 {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--text-black);
}

.mock-price {
  font-size: 0.65rem;
  color: var(--orange-dark);
  font-weight: 700;
}

.mock-add-btn {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--orange);
  color: var(--white);
  border: none;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-bottom-nav {
  margin-top: auto;
  border-top: 1px solid rgba(0,0,0,0.04);
  background: var(--white);
  display: flex;
  justify-content: space-around;
  padding: 6px 0;
}

.mock-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--text-gray);
  font-size: 0.75rem;
}

.mock-nav-item span {
  font-size: 0.52rem;
  font-weight: 700;
}

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

/* Floating Accessory Cards */
.floating-food-card {
  position: absolute;
  top: 60px;
  left: -80px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px;
  display: flex;
  gap: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  width: 190px;
  z-index: 10;
  animation: floatUp 4s ease-in-out infinite;
}

.floating-food-card img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
}

.floating-card-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.floating-card-info h4 {
  font-size: 0.68rem;
  font-weight: 900;
  color: var(--text-black);
}

.card-stars {
  font-size: 0.55rem;
  color: var(--orange);
  margin: 2px 0;
  font-weight: 800;
}

.card-price {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--red);
}

.floating-rate-card {
  position: absolute;
  bottom: 80px;
  right: -60px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  z-index: 10;
  width: 180px;
  animation: floatDown 4.5s ease-in-out infinite;
}

.rate-icon {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-full);
  background: rgba(43, 184, 74, 0.1);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.floating-rate-card h4 {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--text-black);
}

.floating-rate-card p {
  font-size: 0.58rem;
  color: var(--text-gray);
}

/* Animations */
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes floatDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

.anim-delay-1 {
  animation-delay: 0.5s;
}

.anim-delay-2 {
  animation-delay: 1s;
}

/* Features Grid Section */
.features {
  padding: 6rem 8%;
  background: var(--white);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-title {
  font-size: 2.6rem;
  color: var(--text-black);
}

.section-title span {
  color: var(--red);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
}

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

.feature-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 26, 10, 0.03);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--grad-primary);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(192, 50, 26, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.8rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon-box {
  background: var(--grad-primary);
  color: var(--white);
}

.feature-card h3 {
  font-size: 1.3rem;
  color: var(--text-black);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
}

/* Product Catalog Section */
.catalog {
  padding: 6rem 8%;
  background: var(--cream);
}

.catalog-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: var(--white);
  border: none;
  padding: 0.7rem 1.6rem;
  font-weight: 800;
  color: var(--orange);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}

.catalog-search-wrapper {
  max-width: 500px;
  margin: 0 auto 3rem;
  position: relative;
}

.catalog-search-input {
  width: 100%;
  padding: 1.1rem 1.5rem 1.1rem 3.2rem;
  border: none;
  border-radius: var(--radius-md);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  color: var(--text-black);
  outline: none;
  transition: var(--transition);
}

.catalog-search-input:focus {
  box-shadow: 0 10px 25px rgba(192, 50, 26, 0.08);
  transform: translateY(-2px);
}

.catalog-search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-gray);
  font-size: 1.2rem;
  pointer-events: none;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.product-img-wrapper {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: #f0f0f0;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(139, 26, 10, 0.85);
  backdrop-filter: blur(5px);
  color: var(--white);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-details {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex-grow: 1;
}

.product-title {
  font-size: 1.15rem;
  font-family: var(--font-heading);
  color: var(--text-black);
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--orange-dark);
}

.btn-add-mini {
  width: 38px;
  height: 38px;
  background: var(--grad-accent);
  color: var(--white);
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-add-mini:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 8%;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: #FFFBF7;
}

.stars {
  color: var(--orange);
  font-size: 1.1rem;
  display: flex;
  gap: 0.2rem;
}

.test-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.6;
}

.test-user {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.test-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: #ddd;
  overflow: hidden;
}

.test-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.test-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-black);
}

.test-role {
  font-size: 0.78rem;
  color: var(--text-gray);
  font-weight: 700;
}

/* Download / Exhibition Promo Section */
.download-section {
  padding: 6rem 8%;
  background: var(--grad-primary);
  color: var(--white);
  position: relative;
  text-align: center;
  overflow: hidden;
}

.download-section p {
  color: rgba(255, 255, 255, 0.8);
}

.download-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  position: relative;
  z-index: 2;
}

.download-title {
  font-size: 3rem;
  color: var(--white);
}

.download-desc {
  font-size: 1.15rem;
  max-width: 600px;
}

.download-btns {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.download-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.05;
  background-image: radial-gradient(var(--white) 1px, transparent 0);
  background-size: 24px 24px;
}

/* FAQ Accordion Section */
.faq {
  padding: 6rem 8%;
  background: var(--cream);
}

.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-black);
}

.faq-question i {
  color: var(--orange);
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #FCFAF7;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Footer */
footer {
  background: #1C0502;
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 8% 2rem;
  border-top: 5px solid var(--orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--orange);
  border-radius: var(--radius-full);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-logo img {
  height: 54px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--orange);
  padding-left: 5px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--grad-accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

/* Modals */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 550px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: modalScale 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  position: relative;
}

@keyframes modalScale {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--cream);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-black);
  font-size: 1.2rem;
  z-index: 10;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--orange);
  color: var(--white);
}

.modal-img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}

.modal-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-title {
  font-size: 1.6rem;
  color: var(--text-black);
}

.modal-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange-dark);
}

.modal-cat {
  background: rgba(192, 50, 26, 0.08);
  color: var(--red);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.modal-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Media Queries */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 7rem 5% 4rem;
    gap: 3rem;
  }
  .hero-content {
    align-items: center;
  }
  .hero-desc {
    margin: 0 auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-device-wrapper {
    order: -1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 5%;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--cream);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    border-top: 1px solid rgba(0,0,0,0.05);
    gap: 1.5rem;
  }
  .nav-links.active {
    display: flex;
  }
  .burger {
    display: flex;
  }
  .nav-btn {
    display: none;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .download-title {
    font-size: 2.2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  /* Responsive static mockup */
  .hero-showcase-container {
    width: 280px;
    height: 480px;
  }
  .phone-mockup-static {
    width: 250px;
    height: 460px;
  }
  .floating-food-card {
    left: -40px;
    top: 30px;
    width: 150px;
  }
  .floating-rate-card {
    right: -30px;
    bottom: 40px;
    width: 155px;
  }
}
