/* ================================================
   BarkètPlace — Design System & Styles
   Colors: #FFFFFF (bg), #F07A2F (orange), #662418 (brown)
   Font: Outfit (Google Fonts)
================================================ */

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

:root {
  --orange: #F07A2F;
  --orange-dark: #D9601A;
  --orange-light: #FFF0E6;
  --orange-mid: #FDE4CE;
  --brown: #662418;
  --brown-dark: #4A1810;
  --brown-light: #8A3526;
  --white: #FFFFFF;
  --off-white: #FFF8F5;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-800: #1F2937;
  --text-primary: #662418;
  --text-secondary: #4A4A4A;
  --text-muted: #888;
  --shadow-sm: 0 1px 3px rgba(102, 36, 24, 0.08);
  --shadow-md: 0 4px 20px rgba(102, 36, 24, 0.12);
  --shadow-lg: 0 10px 40px rgba(102, 36, 24, 0.16);
  --shadow-xl: 0 20px 60px rgba(102, 36, 24, 0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
}

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

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-secondary);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ---- TYPOGRAPHY ---- */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--brown);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: 1.2rem;
}

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

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

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

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

.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--off-white);
}

.section-dark {
  background: var(--brown);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .badge {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 16px auto 0;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240, 122, 47, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}

.btn-secondary:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--brown);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

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

/* ---- NAVIGATION ---- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all var(--transition);
}



#navbar {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: 0 24px;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.nav-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}



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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.nav-link:hover {
  color: var(--orange);
  background: var(--orange-light);
}

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(240, 122, 47, 0.4);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all var(--transition);
}

#navbar.transparent .hamburger span {
  background: var(--white);
}

/* ---- HERO ---- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brown-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/fond2560x.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.45;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(102, 36, 24, 0.85) 0%,
      rgba(72, 20, 10, 0.7) 40%,
      rgba(240, 122, 47, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 140px 24px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240, 122, 47, 0.2);
  border: 1px solid rgba(240, 122, 47, 0.4);
  color: #FFD4B0;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.hero-text h1 span {
  color: var(--orange);
  display: block;
}

.hero-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

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

.store-badges {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}

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

.store-badge svg {
  flex-shrink: 0;
}

.store-badge strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

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

.phones-mockup {
  position: relative;
  width: 100%;
  max-width: 480px;
}



.phone-frame:hover {
  transform: translateY(-8px) rotate(-2deg);
}

.phone-frame img {
  width: 60%;
  border-radius: 30px;
  object-fit: cover;
}

.phone-card-2 {
  position: absolute;
  right: -40px;
  bottom: 40px;
  width: 55%;
  transform: rotate(5deg);
}



/* ---- STATS ---- */
#stats {
  background: var(--orange);
  padding: 60px 0;
}

.stats-intro {
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  font-style: italic;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

/* 3-item centered variant */
.stats-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  padding: 20px;
}

.stat-num {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ---- FEATURES GRID ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--brown-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--orange-mid);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--orange-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  transition: all var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--orange);
  transform: scale(1.1) rotate(-5deg);
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- APP SCREENSHOTS ---- */
#screenshots {
  background: var(--brown);
  overflow: hidden;
}

#screenshots .section-header .badge {
  background: rgba(240, 122, 47, 0.2);
  border: 1px solid rgba(240, 122, 47, 0.3);
  color: var(--orange);
}

#screenshots .section-header h2 {
  color: var(--white);
}

#screenshots .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.screenshots-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  padding: 6px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.tab-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
}

.tab-btn.active {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(240, 122, 47, 0.4);
}

.screenshots-carousel {
  display: none;
}

.screenshots-carousel.active {
  display: flex;
  justify-content: center;
  gap: 20px;
  overflow-x: auto;
  padding: 12px 24px 32px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) rgba(255, 255, 255, 0.1);
}

.screenshots-carousel::-webkit-scrollbar {
  height: 4px;
}

.screenshots-carousel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.screenshots-carousel::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 2px;
}

.screenshot-item {
  flex: 0 0 240px;
  scroll-snap-align: start;
  transition: transform var(--transition);
}

.screenshot-item:hover {
  transform: scale(1.03) translateY(-6px);
}

.screenshot-phone {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  padding: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.screenshot-phone img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  min-height: 420px;
  background: var(--brown-dark);
}

.screenshot-label {
  text-align: center;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ---- HOW IT WORKS ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  position: relative;
}

.step-item {
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--orange);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(240, 122, 47, 0.4);
  transition: all var(--transition);
}

.step-item:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(240, 122, 47, 0.5);
}

.step-item h4 {
  margin-bottom: 8px;
}

.step-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---- MISSION / VALUES ---- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.value-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.value-card h4 {
  color: var(--orange);
  margin-bottom: 10px;
}

.value-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

/* ---- RESTAURATEURS SECTION ---- */
.resto-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.resto-visual {
  position: relative;
}

.resto-phones {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.resto-phone {
  flex: 0 1 180px;
  background: var(--orange-light);
  border: 2px solid var(--orange-mid);
  border-radius: 28px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}

.resto-phone:nth-child(2) {
  margin-top: 32px;
}

.resto-phone:hover {
  transform: translateY(-8px);
}

.resto-phone img {
  width: 100%;
  border-radius: 22px;
}

.resto-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}

.resto-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--orange);
  transition: all var(--transition);
}

.resto-features li:hover {
  background: var(--orange-light);
  transform: translateX(4px);
}

.li-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.li-text strong {
  display: block;
  color: var(--brown);
  font-size: 1rem;
}

.li-text span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ---- CTA DOWNLOAD ---- */
#cta-download {
  background: linear-gradient(135deg, var(--orange) 0%, var(--brown) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta-download::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

#cta-download .container {
  position: relative;
}

#cta-download h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

#cta-download p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- CONTACT FORM ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--off-white);
  border-radius: var(--radius-md);
}

.contact-item-icon {
  width: 42px;
  height: 42px;
  background: var(--orange-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item span {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: block;
}

.contact-item strong {
  font-size: 1rem;
  color: var(--brown);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--off-white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  outline: none;
  transition: all var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(240, 122, 47, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-status {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 500;
  display: none;
}

.form-status.success {
  display: block;
  background: #D1FAE5;
  color: #065F46;
  border: 1px solid #6EE7B7;
}

.form-status.error {
  display: block;
  background: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FCA5A5;
}

/* ---- FOOTER ---- */
footer {
  background: var(--brown-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 32px;
}

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

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand .nav-logo {
  color: var(--white);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
}

.footer-col h5 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

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

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

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

.footer-bottom a {
  color: var(--orange);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ---- COOKIE BANNER ---- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.98);
  border-top: 3px solid var(--orange);
  box-shadow: 0 -4px 30px rgba(102, 36, 24, 0.15);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
}

#cookie-banner.show {
  transform: translateY(0);
}

.cookie-text {
  flex: 1;
  min-width: 240px;
}

.cookie-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.cookie-text a {
  color: var(--orange);
  font-weight: 600;
}

.cookie-text strong {
  color: var(--brown);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23F07A2F' fill-opacity='0.06'%3E%3Ccircle cx='40' cy='40' r='20'/%3E%3C/g%3E%3C/svg%3E");
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
  color: var(--orange);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

/* ---- ROADMAP ---- */
.roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.roadmap::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 16.7%;
  right: 16.7%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--brown-light));
}

.roadmap-item {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
}

.roadmap-item:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.roadmap-item.active {
  border-color: var(--orange);
  background: var(--orange-light);
}

.roadmap-phase {
  width: 64px;
  height: 64px;
  font-size: 1.3rem;
  font-weight: 800;
  background: var(--white);
  border: 3px solid var(--orange);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(240, 122, 47, 0.25);
}

.roadmap-item.active .roadmap-phase {
  background: var(--orange);
  color: var(--white);
}

.active-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.roadmap-item h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.roadmap-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---- ANIMATIONS BASE ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-left.visible,
.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

/* ---- MEDIA QUERIES ---- */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    display: none;
  }

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

  .resto-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .roadmap::before {
    display: none;
  }

  .roadmap {
    grid-template-columns: 1fr;
  }

  .screenshots-carousel.active {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .nav-links {
    display: none;
    gap: 4px;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px;
    box-shadow: var(--shadow-lg);
    border-top: 2px solid var(--orange-mid);
  }

  .hamburger {
    display: flex;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .store-badges {
    justify-content: center;
  }

  #cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    justify-content: center;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .resto-phones {
    flex-direction: column;
    align-items: center;
  }

  .phone-card-2 {
    display: none;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- UTILITY ---- */
.text-center {
  text-align: center;
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--orange);
  color: white;
  padding: 8px;
  z-index: 10000;
  font-weight: 600;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  top: 0;
}

/* Scrollbar style */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--orange-dark);
}