/* ============================================================
   WandaFood — style.css
   Brand Colors:
     Primary Orange  : #E8714A
     Dark Navy       : #1E2D5A
     Accent Blue     : #5BB8D4
     Light Gray      : #F5F5F5
     Mid Gray        : #6B7280
     White           : #FFFFFF
   ============================================================ */

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

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

:root {
  --primary: #E8714A;
  --primary-dark: #cf5a33;
  --navy: #1E2D5A;
  --blue: #5BB8D4;
  --gray-light: #F5F5F5;
  --gray: #6B7280;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(30,45,90,0.10);
  --shadow-card: 0 8px 32px rgba(30,45,90,0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Utilities ---------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.highlight { color: var(--primary); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,113,74,0.3);
}

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

.btn-primary:hover { background: var(--primary-dark); }

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

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}

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

.btn-navy:hover {
  background: #162244;
  box-shadow: 0 8px 24px rgba(30,45,90,0.3);
}

/* ---------- Fade-in animation ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.nav-logo {
  display: flex;
  align-items: bottom;
  text-decoration: none;
  gap: 8px; /* Space between the icon and the text */
}

.logo-text {
  font-size: 25px; /* Adjust size as needed */
  font-weight: 400; /* Makes the text bold */
  letter-spacing: -1.5px; /* Tightens the letters slightly like the logo */
  line-height: 1;  
}

.text-black {
  color: #000000; /* Pure Black */
}

.text-orange {
  color: #e8714a; /* Dark Orange - adjust to your preference */
}

.logo-icon {
  height: 42px;          /* Keep the height you liked */
  width: auto;           /* Let the width scale naturally so it doesn't stretch */
  display: block;
}

.force-inline {
  /* 1. Force the row */
  display: flex;
  
  /* 2. Vertically center everything */
  align-items: center;
  
  /* 3. Prevent wrapping to a second line even on small screens */
  flex-wrap: nowrap;
  
  /* 4. Add a specific gap between the icon and text */
  gap: 5px;
  
  /* Optional: Remove default link styling */
  text-decoration: none;  
}



/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30,45,90,0.08);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img, .nav-logo svg { height: 42px; width: auto; }

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }

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

.lang-toggle {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  transition: background var(--transition), color var(--transition);
}
.lang-toggle:hover { background: var(--primary); color: var(--white); }

.nav-cta {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .nav-links.open {
    max-height: 400px;
    padding: 16px 0 24px;
  }
  .nav-links a {
    padding: 12px 24px;
    width: 100%;
    display: block;
  }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.58);
}

/* Decorative shapes */
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,113,74,0.18) 0%, transparent 70%);
  top: -150px; right: -100px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,184,212,0.15) 0%, transparent 70%);
  bottom: -100px; left: -80px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 .accent { color: var(--primary); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Floating food dots decoration */
.hero-dots {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: repeat(4, 40px);
  grid-template-rows: repeat(6, 40px);
  gap: 12px;
  opacity: 0.15;
  pointer-events: none;
}
.hero-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--white);
  margin: auto;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--gray-light); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-icon-wrap {
  width: 220px; height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #f0956e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  box-shadow: 0 20px 60px rgba(232,113,74,0.35);
  animation: float 3.5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { order: -1; }
  .about-icon-wrap { width: 160px; height: 160px; font-size: 4rem; }
}

/* ============================================================
   FEATURES
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid transparent;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(232,113,74,0.18);
  border-top-color: var(--primary);
}

.feature-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { background: var(--gray-light); }

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

.steps-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.6% + 44px);
  right: calc(16.6% + 44px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--blue));
  z-index: 0;
}

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

.step-number {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(232,113,74,0.2);
  transition: background var(--transition), transform var(--transition);
}

.step-card:hover .step-number {
  background: var(--primary);
  transform: scale(1.08);
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--gray);
}

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .steps-grid::before { display: none; }
}

/* ============================================================
   FOR RESTAURANTS (B2B)
   ============================================================ */
.restaurants {
  background: linear-gradient(135deg, var(--navy) 0%, #0f1a36 100%);
  color: var(--white);
  text-align: center;
}

.restaurants .section-title { color: var(--white); }
.restaurants .section-subtitle { color: rgba(255,255,255,0.75); }

.restaurants-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.restaurants-features span {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

/* ============================================================
   DOWNLOAD SECTION
   ============================================================ */
.download { background: var(--gray-light); text-align: center; }

.store-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 12px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: 2px solid transparent;
  min-width: 350px;
}

.store-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(30,45,90,0.25);
  background: var(--primary);
}

.store-btn .store-icon { font-size: 1.8rem; }

.store-btn .store-text { text-align: left; }
.store-btn .store-text small { display: block; font-size: 0.72rem; font-weight: 400; opacity: 0.8; }
.store-btn .store-text strong { font-size: 1rem; }

.download-note {
  margin-top: 24px;
  font-size: 0.88rem;
  color: var(--gray);
}

.download-note a { color: var(--primary); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 30px;
}

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

.footer-brand img,
.footer-brand svg { height: 38px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }

.footer-brand p { font-size: 0.9rem; line-height: 1.7; }

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-col ul li a {
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--primary); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background var(--transition), transform var(--transition);
}

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

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

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

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-section { background: var(--white); }

.contact-form {
  max-width: 640px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232,113,74,0.15);
}

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

.contact-feedback {
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 20px;
  display: none;
}

.contact-feedback--success {
  display: block;
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
}

.contact-feedback--error {
  display: block;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

.contact-submit {
  width: 100%;
  justify-content: center;
}

.contact-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ============================================================
   DOWNLOAD PAGE — download.html
   ============================================================ */
.dl-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1E2D5A 0%, #0f1a36 50%, #1a3a52 100%);
  padding: 40px 20px;
}

.dl-card {
  background: var(--white);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  animation: slideUp 0.6s ease both;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.dl-logo { height: 52px; margin: 0 auto 24px; }

.dl-tagline {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.dl-sub {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 28px;
}

.dl-redirect-msg {
  background: #fff7f4;
  border: 1px solid rgba(232,113,74,0.3);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 28px;
  display: none;
}
.dl-redirect-msg.show { display: block; }

.dl-store-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.dl-store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: left;
}

.dl-store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.dl-store-btn.ios {
  background: #000;
  color: var(--white);
}

.dl-store-btn.android {
  background: #1a73e8;
  color: var(--white);
}

.dl-store-btn .dl-icon { font-size: 2rem; }
.dl-store-btn .dl-text small { display: block; font-size: 0.72rem; font-weight: 400; opacity: 0.8; }
.dl-store-btn .dl-text strong { font-size: 1rem; }

.dl-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.dl-features span {
  background: var(--gray-light);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.8rem;
  color: var(--navy);
  font-weight: 500;
}

.dl-back {
  font-size: 0.88rem;
  color: var(--gray);
  margin-top: 8px;
}
.dl-back a {
  color: var(--primary);
  font-weight: 600;
  transition: opacity var(--transition);
}
.dl-back a:hover { opacity: 0.75; }

@media (max-width: 768px) {
  .hero-video {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
  }
  .hero-video-wrapper {
    background: linear-gradient(135deg, #1E2D5A 0%, #E8714A 100%);
  }
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.58);
    z-index: 1;
  }
  .hero-content {
    position: relative;
    z-index: 2;
  }
}

/* ============================================================
   RESPONSIVE MISC
   ============================================================ */
@media (max-width: 600px) {
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero h1 { font-size: 2rem; }
  .section { padding: 60px 0; }
  .dl-card { padding: 36px 24px; }
}

/* ============================================================
   INNER PAGE HERO (privacy, terms, how-it-works)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2a3f7a 100%);
  color: var(--white);
  padding: 120px 0 60px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.page-hero p {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   DATA CATEGORY CARDS (privacy page)
   ============================================================ */
.data-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 2.5rem;
}

.data-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--primary);
  transition: transform var(--transition), box-shadow var(--transition);
}

.data-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(30,45,90,0.15);
}

.data-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.data-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.data-card ul {
  list-style: disc;
  padding-left: 18px;
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

.data-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================================
   TERMS SECTIONS (terms page)
   ============================================================ */
.terms-section {
  padding: 32px 0;
  border-bottom: 1px solid #e5e7eb;
}

.terms-section:last-of-type { border-bottom: none; }

.terms-section h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.terms-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.terms-section p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 10px;
}

.terms-section ul {
  list-style: disc;
  padding-left: 20px;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ============================================================
   HOW IT WORKS STEPS (how-it-works page)
   ============================================================ */
.order-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 2.5rem;
}

.order-step {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  position: relative;
}

.order-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 14px;
}

.order-step-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.order-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.order-step p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ============================================================
   FAQ ACCORDION (how-it-works page)
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin: 2rem auto 0;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover { box-shadow: var(--shadow); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: var(--white);
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.faq-question:hover { background: #fff7f4; color: var(--primary); }

.faq-item.open .faq-question {
  background: var(--primary);
  color: var(--white);
}

.faq-chevron {
  font-style: normal;
  font-size: 1.2rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--gray-light);
}

.faq-answer-inner {
  padding: 20px 22px;
  font-size: 0.93rem;
  color: var(--gray);
  line-height: 1.75;
}

.faq-answer-inner ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 8px;
}

.faq-answer-inner ol {
  padding-left: 20px;
  margin-top: 8px;
}

.faq-answer-inner li { margin-bottom: 6px; }

/* ============================================================
   CROSS-LINK & PROTECTION BOXES
   ============================================================ */
.info-box {
  background: #fff7f4;
  border: 1px solid rgba(232,113,74,0.25);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  font-size: 0.93rem;
  color: var(--navy);
  line-height: 1.7;
  margin-top: 1.5rem;
}

.info-box a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.cross-link-box {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 3rem;
}

.cross-link-box p {
  font-size: 0.95rem;
  color: var(--gray);
  margin: 0;
}

/* ============================================================
   PAGE CONTENT LAYOUT
   ============================================================ */
.page-content {
  padding: 70px 0 90px;
}

.page-intro {
  max-width: 760px;
  margin: 0 auto 3rem;
}

.page-intro p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.page-intro ul {
  list-style: disc;
  padding-left: 20px;
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.9;
}

.update-date {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 2rem;
  text-align: center;
}

@media (max-width: 600px) {
  .order-steps { grid-template-columns: 1fr 1fr; }
  .cross-link-box { flex-direction: column; }
  .page-hero { padding: 100px 0 50px; }
}
