/* ============================================
   BURRITO DELIVERY QUICK SELECTION GUIDE
   Main Stylesheet — Fast / Bold Design
   Colors: Orange + Red + Black
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@400;500;600&display=swap');

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

:root {
  --orange:        #FF6B00;
  --orange-light:  #FF8C00;
  --orange-dark:   #E05A00;
  --red:           #D72B2B;
  --red-dark:      #B01E1E;
  --black:         #0D0D0D;
  --black-soft:    #1A1A1A;
  --dark-gray:     #2C2C2C;
  --mid-gray:      #444444;
  --light-gray:    #F4F4F4;
  --white:         #FFFFFF;
  --text-main:     #1A1A1A;
  --text-muted:    #666666;
  --border:        #E2E2E2;
  --shadow:        0 4px 24px rgba(0,0,0,0.10);
  --shadow-strong: 0 8px 40px rgba(0,0,0,0.18);
  --radius:        6px;
  --radius-lg:     12px;
  --font-display:  'Bebas Neue', 'Impact', sans-serif;
  --font-head:     'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:     'Barlow', 'Arial', sans-serif;
  --max-width:     1200px;
  --transition:    0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-main);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red); }
ul, ol { padding-left: 1.4em; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 860px; }
.container--wide   { max-width: 1400px; }

.section       { padding: 72px 0; }
.section--sm   { padding: 48px 0; }
.section--lg   { padding: 96px 0; }
.section--dark { background: var(--black-soft); color: var(--white); }
.section--gray { background: var(--light-gray); }
.section--orange { background: var(--orange); color: var(--white); }
.section--red  { background: var(--red); color: var(--white); }

.text-center { text-align: center; }
.text-left   { text-align: left;   }
.text-right  { text-align: right;  }
.mb-8  { margin-bottom: 8px;  }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  color: var(--black);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); letter-spacing: -0.5px; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem;  }
h6 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; }

.display-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: 2px;
  line-height: 1;
}
.section-label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}
.section-label--white { color: rgba(255,255,255,0.75); }
.lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--mid-gray);
  max-width: 640px;
}
.lead--white { color: rgba(255,255,255,0.85); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  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);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,0,0.35);
}
.btn--secondary {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn--secondary:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(215,43,43,0.35);
}
.btn--dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn--dark:hover {
  background: var(--dark-gray);
  border-color: var(--dark-gray);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--light-gray);
  color: var(--orange-dark);
}
.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.12);
  border-color: var(--white);
  color: var(--white);
}
.btn--lg { padding: 18px 44px; font-size: 1.15rem; }
.btn--sm { padding: 10px 22px; font-size: 0.88rem; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--black);
  padding: 8px 0;
  font-size: 0.82rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.5px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: rgba(255,255,255,0.75); }
.top-bar a:hover { color: var(--orange); }
.top-bar__left, .top-bar__right { display: flex; gap: 20px; align-items: center; }
.top-bar__item { display: flex; align-items: center; gap: 5px; color: rgba(255,255,255,0.6); }
.top-bar__item svg { width: 13px; height: 13px; fill: var(--orange); flex-shrink: 0; }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--orange);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  height: 68px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--black);
  letter-spacing: 1px;
  line-height: 1.1;
}
.logo-text span { color: var(--orange); }

/* Primary Nav */
.primary-nav { display: flex; align-items: center; gap: 4px; }
.primary-nav a {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  padding: 8px 14px;
  border-radius: var(--radius);
  letter-spacing: 0.3px;
  transition: all var(--transition);
  text-transform: uppercase;
}
.primary-nav a:hover,
.primary-nav a.active {
  color: var(--orange);
  background: rgba(255,107,0,0.07);
}

/* Dropdown */
.nav-item { position: relative; }
.nav-item > a::after {
  content: ' ▾';
  font-size: 0.7em;
  opacity: 0.6;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) var(--radius);
  box-shadow: var(--shadow-strong);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--transition);
  z-index: 1000;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 11px 18px;
  border-radius: 0;
  font-size: 0.88rem;
  color: var(--text-main);
  border-bottom: 1px solid var(--border);
  text-transform: none;
  font-weight: 600;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { color: var(--orange); background: rgba(255,107,0,0.05); padding-left: 24px; }

/* Header CTA */
.header-cta { margin-left: 16px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--black);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--black-soft);
  padding: 20px 24px;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav a {
  display: block;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.5px;
}
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav.open { display: flex; }

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 80px 0 88px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,107,0,0.18) 0%, rgba(215,43,43,0.12) 50%, transparent 100%);
  pointer-events: none;
}
.hero--pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,107,0,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__inner--center {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}
.hero__badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 18px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--orange); }
.hero .lead { color: rgba(255,255,255,0.75); max-width: 560px; margin-bottom: 32px; }
.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero__stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero__stat-card:nth-child(2) { border-left-color: var(--red); margin-left: 24px; }
.hero__stat-card:nth-child(3) { margin-left: 48px; }
.hero__stat-icon { font-size: 2rem; flex-shrink: 0; }
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--orange);
  line-height: 1;
}
.hero__stat-card:nth-child(2) .hero__stat-num { color: var(--red); }
.hero__stat-label {
  font-family: var(--font-head);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Page Hero (sub-pages) */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,107,0,0.20) 0%, transparent 60%);
}
.page-hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(135deg, rgba(215,43,43,0.15), transparent);
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.page-hero__icon {
  font-size: 3.5rem;
  flex-shrink: 0;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); }
.page-hero h1 span { color: var(--orange); }
.page-hero .lead { color: rgba(255,255,255,0.72); font-size: 1rem; max-width: 600px; }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  background: var(--light-gray);
  padding: 10px 0;
  font-size: 0.82rem;
  border-bottom: 1px solid var(--border);
}
.breadcrumb ol {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.breadcrumb li { display: flex; align-items: center; gap: 6px; color: var(--text-muted); }
.breadcrumb li::before { content: '/'; color: var(--border); }
.breadcrumb li:first-child::before { display: none; }
.breadcrumb a { color: var(--orange); font-weight: 600; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb li:last-child { color: var(--text-main); font-weight: 600; }

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}
.card__img-wrap {
  position: relative;
  overflow: hidden;
  height: 180px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card__img-icon {
  font-size: 4rem;
}
.card__img-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
}
.card__body { padding: 24px; }
.card__tag {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card p  { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 16px; }
.card__link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.card__link::after { content: ' →'; }
.card__link:hover  { color: var(--red); }

/* Feature Card */
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}
.feature-card--red::before { background: var(--red); }
.feature-card--dark { background: var(--black-soft); color: var(--white); border-color: var(--dark-gray); }
.feature-card--dark h3 { color: var(--white); }
.feature-card--dark p  { color: rgba(255,255,255,0.7); }
.feature-card__icon {
  width: 56px; height: 56px;
  background: rgba(255,107,0,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 18px;
}
.feature-card--red .feature-card__icon { background: rgba(215,43,43,0.1); }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.feature-card p  { font-size: 0.94rem; color: var(--text-muted); line-height: 1.65; }

/* Step Card */
.step-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.step-card:hover { transform: translateX(4px); }
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
  min-width: 52px;
}
.step-card h4 { font-size: 1.1rem; margin-bottom: 6px; }
.step-card p  { font-size: 0.93rem; color: var(--text-muted); }

/* ============================================
   GRIDS
   ============================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  margin-bottom: 52px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header .lead { margin-bottom: 0; }
.section-header--center { text-align: center; }
.section-header--center .lead { margin: 0 auto; }
.section-header--dark h2 { color: var(--white); }

/* ============================================
   ACCENT BAR / DIVIDER
   ============================================ */
.accent-bar {
  display: inline-block;
  width: 52px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 18px;
}
.accent-bar--red { background: var(--red); }
.accent-bar--center { display: block; margin: 0 auto 18px; }

/* ============================================
   TAG / BADGE
   ============================================ */
.tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
}
.tag--orange { background: rgba(255,107,0,0.12); color: var(--orange); }
.tag--red    { background: rgba(215,43,43,0.12);  color: var(--red);    }
.tag--dark   { background: rgba(0,0,0,0.08);       color: var(--dark-gray); }
.tag--white  { background: rgba(255,255,255,0.15); color: var(--white);  }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--orange);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
}
.cta-banner::after {
  content: '🌯';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 9rem;
  opacity: 0.12;
  pointer-events: none;
}
.cta-banner__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.4rem); margin-bottom: 8px; }
.cta-banner p  { color: rgba(255,255,255,0.82); font-size: 1.05rem; }
.cta-banner__btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================
   HIGHLIGHT BOX
   ============================================ */
.highlight-box {
  background: rgba(255,107,0,0.06);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.highlight-box--red { border-left-color: var(--red); background: rgba(215,43,43,0.05); }
.highlight-box--dark { background: var(--dark-gray); border-left-color: var(--orange); color: var(--white); }
.highlight-box h4 { font-size: 1rem; margin-bottom: 8px; }
.highlight-box p  { font-size: 0.93rem; color: var(--text-muted); margin: 0; }

/* ============================================
   TABLE
   ============================================ */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.data-table th {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  text-align: left;
  padding: 14px 18px;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.data-table th:first-child { border-radius: var(--radius) 0 0 0; }
.data-table th:last-child  { border-radius: 0 var(--radius) 0 0; }
.data-table td { padding: 13px 18px; border-bottom: 1px solid var(--border); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--light-gray); }
.data-table tr:hover td { background: rgba(255,107,0,0.04); }
.data-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--border); }

/* ============================================
   ICON LIST
   ============================================ */
.icon-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.96rem;
  color: var(--text-main);
}
.icon-list__icon {
  width: 26px; height: 26px;
  background: rgba(255,107,0,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.icon-list--red .icon-list__icon { background: rgba(215,43,43,0.12); }
.icon-list--check .icon-list__icon::after { content: '✓'; color: var(--orange); font-weight: 700; }
.icon-list--check.icon-list--red .icon-list__icon::after { color: var(--red); }

/* ============================================
   TABS
   ============================================ */
.tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 3px solid var(--border);
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.tab-btn {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: all var(--transition);
}
.tab-btn:hover   { color: var(--orange); }
.tab-btn.active  { color: var(--orange); border-bottom-color: var(--orange); }
.tab-panel       { display: none; }
.tab-panel.active { display: block; }

/* ============================================
   ACCORDION / FAQ
   ============================================ */
.accordion { display: flex; flex-direction: column; gap: 10px; }
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.accordion-btn {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 18px 22px;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--transition);
}
.accordion-btn:hover   { background: var(--light-gray); }
.accordion-btn.active  { background: var(--black); color: var(--white); }
.accordion-arrow {
  font-size: 0.8rem;
  transition: transform var(--transition);
  flex-shrink: 0;
  opacity: 0.7;
}
.accordion-btn.active .accordion-arrow { transform: rotate(180deg); color: var(--orange); }
.accordion-body {
  display: none;
  padding: 16px 22px 20px;
  background: var(--white);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}
.accordion-body.open { display: block; }

/* ============================================
   BLOG
   ============================================ */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}
.blog-card__thumb {
  height: 200px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-card__thumb-emoji { font-size: 5rem; }
.blog-card__thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,107,0,0.3), rgba(215,43,43,0.2));
}
.blog-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 12px;
}
.blog-card__cat { color: var(--orange); font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1px; }
.blog-card h3   { font-size: 1.15rem; margin-bottom: 10px; }
.blog-card p    { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; flex: 1; margin-bottom: 18px; }
.blog-card__link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  align-self: flex-start;
}
.blog-card__link::after { content: '→'; }
.blog-card__link:hover  { color: var(--red); }

/* Article styles */
.article-body {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-main);
}
.article-body h2 { margin: 40px 0 16px; font-size: 1.9rem; }
.article-body h3 { margin: 32px 0 14px; font-size: 1.45rem; }
.article-body p  { margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 16px 0 20px; }
.article-body li { margin-bottom: 8px; }
.article-body .highlight-box { margin: 32px 0; }

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar { display: flex; flex-direction: column; gap: 28px; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.sidebar-widget__head {
  background: var(--black);
  color: var(--white);
  padding: 14px 20px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-widget__head span { color: var(--orange); }
.sidebar-widget__body { padding: 20px; }
.sidebar-link-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.sidebar-link-list li { border-bottom: 1px solid var(--border); }
.sidebar-link-list li:last-child { border-bottom: none; }
.sidebar-link-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 4px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
  font-family: var(--font-head);
}
.sidebar-link-list a::before { content: '→'; color: var(--orange); font-size: 0.85rem; }
.sidebar-link-list a:hover   { color: var(--orange); padding-left: 8px; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-top: 16px;
  margin-bottom: 20px;
  max-width: 320px;
}
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-contact a:hover { color: var(--orange); }
.footer-contact .icon { font-size: 0.95rem; }

.footer-col h5 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col h5::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  margin-top: 8px;
}
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover { color: var(--orange); padding-left: 4px; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--orange); }
.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ============================================
   CONTENT PAGE LAYOUT
   ============================================ */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.content-main {}
.content-aside { position: sticky; top: 88px; }

/* ============================================
   PROGRESS INDICATOR / TIMELINE
   ============================================ */
.timeline { position: relative; padding-left: 36px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), var(--red));
}
.timeline-item {
  position: relative;
  padding-bottom: 36px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -29px;
  top: 4px;
  width: 20px; height: 20px;
  background: var(--orange);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--orange);
}
.timeline-item:nth-child(2) .timeline-dot { background: var(--red); box-shadow: 0 0 0 2px var(--red); }
.timeline-item:nth-child(4) .timeline-dot { background: var(--red); box-shadow: 0 0 0 2px var(--red); }
.timeline-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 5px;
}
.timeline-item h4 { font-size: 1.05rem; margin-bottom: 8px; }
.timeline-item p  { font-size: 0.92rem; color: var(--text-muted); }

/* ============================================
   STAT ROW
   ============================================ */
.stat-row {
  display: flex;
  gap: 0;
  background: var(--black);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  flex: 1;
  padding: 32px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-item__num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item:nth-child(even) .stat-item__num { color: var(--red); }
.stat-item__label {
  font-family: var(--font-head);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ============================================
   CHOICE CARDS (Quick Selection)
   ============================================ */
.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.choice-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.choice-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.choice-card:hover::before, .choice-card.selected::before { transform: scaleX(1); }
.choice-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-strong);
  transform: translateY(-3px);
}
.choice-card__emoji { font-size: 2.8rem; margin-bottom: 14px; }
.choice-card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.choice-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   CONTACT FORM
   ============================================ */
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 7px;
  color: var(--black);
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--text-main);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--orange); }
.form-textarea { min-height: 130px; resize: vertical; }

/* ============================================
   POLICY PAGES
   ============================================ */
.policy-content {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-main);
}
.policy-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 14px;
  padding-top: 20px;
  border-top: 2px solid var(--border);
  color: var(--black);
}
.policy-content h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.policy-content h3 { font-size: 1.15rem; margin: 24px 0 10px; }
.policy-content p  { margin-bottom: 16px; }
.policy-content ul, .policy-content ol { margin: 12px 0 16px; }
.policy-content li { margin-bottom: 7px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 960px) {
  .primary-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .content-layout { grid-template-columns: 1fr; }
  .content-aside { position: static; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-row { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}
@media (max-width: 680px) {
  :root { --max-width: 100%; }
  .section { padding: 48px 0; }
  .section--lg { padding: 64px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero__btns { flex-direction: column; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__btns { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .top-bar .container { justify-content: center; }
  .top-bar__right { display: none; }
  .tab-nav { gap: 4px; }
  .tab-btn { padding: 10px 14px; font-size: 0.85rem; }
  .choice-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
  .site-header, .site-footer, .cta-banner { display: none; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; text-decoration: underline; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-orange {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,0,0.4); }
  50%       { box-shadow: 0 0 0 10px rgba(255,107,0,0); }
}
.animate-fade-up { animation: fadeUp 0.5s ease both; }
.pulse { animation: pulse-orange 2s infinite; }

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px; height: 44px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(255,107,0,0.4);
  transition: background var(--transition), transform var(--transition);
}
.scroll-top:hover { background: var(--red); transform: translateY(-3px); }
.scroll-top.visible { display: flex; }