/* ============================================
   URBAN SANDWICH DELIVERY — MAIN STYLESHEET
   ============================================ */

/* --- FONTS & RESET --- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;900&family=Barlow:wght@300;400;500;600&display=swap');

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

:root {
  --bg-dark:       #1a1a1a;
  --bg-darker:     #111111;
  --bg-card:       #222222;
  --bg-card-alt:   #2a2a2a;
  --yellow:        #f5c400;
  --yellow-light:  #ffd740;
  --yellow-dark:   #c9a000;
  --white:         #ffffff;
  --grey-light:    #cccccc;
  --grey-mid:      #888888;
  --grey-dark:     #444444;
  --accent-line:   #f5c400;
  --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:        6px;
  --radius-lg:     12px;
  --shadow:        0 4px 24px rgba(0,0,0,0.5);
  --shadow-yellow: 0 0 30px rgba(245,196,0,0.15);
}

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

body {
  background-color: var(--bg-dark);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--yellow-light);
}

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

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.8rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

p {
  font-size: 1.05rem;
  color: var(--grey-light);
  margin-bottom: 1.2rem;
}

p:last-child {
  margin-bottom: 0;
}

.yellow { color: var(--yellow); }
.white  { color: var(--white); }

/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide {
  max-width: 1400px;
}

.section {
  padding: 90px 0;
}

.section--dark {
  background-color: var(--bg-darker);
}

.section--card {
  background-color: var(--bg-card);
}

/* --- DIAGONAL SECTION DIVIDERS --- */
.section--angled {
  position: relative;
  clip-path: polygon(0 0, 100% 40px, 100% 100%, 0 calc(100% - 40px));
  padding: 130px 0;
}

.section--angled-top {
  position: relative;
}
.section--angled-top::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 80px;
  background: inherit;
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

/* --- HEADER / NAV --- */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(17,17,17,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}

#site-header.scrolled {
  border-bottom-color: var(--yellow);
  background: rgba(17,17,17,0.98);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
}

.nav-logo span {
  color: var(--yellow);
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--yellow);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

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

.nav-links a {
  display: block;
  padding: 8px 14px;
  color: var(--grey-light);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--yellow);
  background: rgba(245,196,0,0.1);
}

.nav-cta {
  background: var(--yellow) !important;
  color: var(--bg-darker) !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  border-radius: var(--radius) !important;
}

.nav-cta:hover {
  background: var(--yellow-light) !important;
  color: var(--bg-darker) !important;
}

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

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

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  background: rgba(17,17,17,0.98);
  backdrop-filter: blur(12px);
  padding: 24px;
  border-bottom: 2px solid var(--yellow);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  display: block;
  padding: 12px 16px;
  color: var(--grey-light);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  border-bottom: 1px solid var(--grey-dark);
}

.nav-mobile a:hover {
  color: var(--yellow);
  background: rgba(245,196,0,0.08);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,0.9) 0%, rgba(17,17,17,0.5) 50%, rgba(245,196,0,0.08) 100%);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,196,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,196,0,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--bg-darker);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 20px;
}

.hero h1 {
  margin-bottom: 24px;
  max-width: 800px;
}

.hero h1 .line-yellow {
  color: var(--yellow);
  display: block;
}

.hero-lead {
  font-size: 1.2rem;
  color: var(--grey-light);
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--grey-dark);
}

.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--yellow);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Motion Lines */
.motion-lines {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 40%;
  overflow: hidden;
  z-index: 1;
  opacity: 0.3;
}

.motion-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  animation: motionLine 3s ease-in-out infinite;
}

.motion-line:nth-child(1) { width: 60%; top: 20%; animation-delay: 0s; }
.motion-line:nth-child(2) { width: 80%; top: 35%; animation-delay: 0.5s; }
.motion-line:nth-child(3) { width: 45%; top: 50%; animation-delay: 1s; }
.motion-line:nth-child(4) { width: 70%; top: 65%; animation-delay: 1.5s; }
.motion-line:nth-child(5) { width: 55%; top: 80%; animation-delay: 2s; }

@keyframes motionLine {
  0%   { transform: translateX(-100%); opacity: 0; }
  30%  { opacity: 1; }
  70%  { opacity: 1; }
  100% { transform: translateX(110%); opacity: 0; }
}

/* --- PAGE HERO (inner pages) --- */
.page-hero {
  padding: 140px 0 80px;
  background: var(--bg-darker);
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--yellow);
}

.page-hero-bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,196,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,196,0,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.page-hero-accent {
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,196,0,0.08) 0%, transparent 70%);
}

.page-hero-tag {
  display: inline-block;
  background: rgba(245,196,0,0.15);
  border: 1px solid var(--yellow);
  color: var(--yellow);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 16px;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero-lead {
  font-size: 1.15rem;
  color: var(--grey-light);
  max-width: 600px;
  line-height: 1.8;
}

/* --- SECTION HEADERS --- */
.section-header {
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  color: var(--yellow);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 2px;
  background: var(--yellow);
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  max-width: 600px;
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-tag {
  padding-left: 0;
}

.section-header--center .section-tag::before {
  display: none;
}

.section-header--center p {
  margin: 0 auto;
}

/* --- CARDS --- */
.card-grid {
  display: grid;
  gap: 28px;
}

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

.card {
  background: var(--bg-card);
  border: 1px solid var(--grey-dark);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-yellow);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--yellow);
  transition: height var(--transition);
  border-radius: 0 0 2px 2px;
}

.card:hover::before {
  height: 100%;
}

.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(245,196,0,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.6rem;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--white);
}

.card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--white);
}

/* --- FEATURE ROWS --- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row--reverse {
  direction: rtl;
}

.feature-row--reverse > * {
  direction: ltr;
}

.feature-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-visual-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-card-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.feature-visual-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--yellow);
  color: var(--bg-darker);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border-radius: var(--radius);
}

.feature-content .section-tag {
  margin-bottom: 8px;
}

.feature-content h2 {
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  margin-top: 24px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-dark);
  color: var(--grey-light);
  font-size: 0.98rem;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: '▸';
  color: var(--yellow);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 3px;
}

/* --- STAT BAR --- */
.stat-bar {
  background: var(--bg-darker);
  border-top: 2px solid var(--yellow);
  border-bottom: 2px solid var(--grey-dark);
  padding: 40px 0;
}

.stat-bar-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
}

.stat-item {
  text-align: center;
}

.stat-item-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--yellow);
  line-height: 1;
}

.stat-item-label {
  font-size: 0.85rem;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

/* --- TIMELINE --- */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--yellow), var(--grey-dark));
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -35px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--yellow);
  border: 3px solid var(--bg-dark);
  box-shadow: 0 0 0 2px var(--yellow);
}

.timeline-step {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 4px;
}

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

/* --- FAQ --- */
.faq-item {
  border: 1px solid var(--grey-dark);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:hover {
  border-color: var(--yellow);
}

.faq-question {
  width: 100%;
  background: var(--bg-card);
  border: none;
  padding: 22px 28px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--bg-card-alt);
}

.faq-question.active {
  background: rgba(245,196,0,0.08);
  color: var(--yellow);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--grey-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--yellow);
  transition: transform var(--transition), border-color var(--transition);
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
  border-color: var(--yellow);
}

.faq-answer {
  display: none;
  padding: 0 28px 24px;
  background: rgba(245,196,0,0.04);
}

.faq-answer.open {
  display: block;
}

.faq-answer p {
  padding-top: 16px;
  border-top: 1px solid var(--grey-dark);
}

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

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(245,196,0,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: 1px solid rgba(245,196,0,0.2);
}

.contact-info-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 1rem;
  color: var(--white);
  margin: 0;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--grey-dark);
  height: 340px;
  background: var(--bg-card-alt);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(80%) invert(85%) contrast(90%);
}

/* --- DISCLAIMER BANNER --- */
.disclaimer-banner {
  background: rgba(245,196,0,0.08);
  border: 1px solid rgba(245,196,0,0.3);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 28px 0;
}

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

.disclaimer-banner p {
  font-size: 0.9rem;
  color: var(--grey-light);
  margin: 0;
}

.disclaimer-banner strong {
  color: var(--yellow);
}

/* --- CTA SECTION --- */
.cta-section {
  background: var(--bg-darker);
  border-top: 2px solid var(--yellow);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245,196,0,0.07) 0%, transparent 70%);
}

.cta-section h2 {
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
  position: relative;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--yellow);
  color: var(--bg-darker);
  border-color: var(--yellow);
}

.btn-primary:hover {
  background: var(--yellow-light);
  color: var(--bg-darker);
  border-color: var(--yellow-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,196,0,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--yellow);
  border-color: var(--yellow);
}

.btn-outline:hover {
  background: var(--yellow);
  color: var(--bg-darker);
  transform: translateY(-2px);
}

/* --- TAGS / BADGES --- */
.tag {
  display: inline-block;
  background: rgba(245,196,0,0.12);
  color: var(--yellow);
  border: 1px solid rgba(245,196,0,0.3);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin-right: 8px;
  margin-bottom: 8px;
}

/* --- NUMBER BOX --- */
.num-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--yellow);
  color: var(--bg-darker);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  border-radius: var(--radius);
  flex-shrink: 0;
}

/* --- QUOTE BLOCK --- */
.quote-block {
  border-left: 4px solid var(--yellow);
  padding: 20px 28px;
  background: rgba(245,196,0,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
}

.quote-block p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--white);
  margin: 0;
}

/* --- TABLE --- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
}

.data-table th {
  background: var(--yellow);
  color: var(--bg-darker);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 20px;
  text-align: left;
}

.data-table td {
  padding: 14px 20px;
  color: var(--grey-light);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--grey-dark);
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:nth-child(even) td {
  background: rgba(255,255,255,0.02);
}

.data-table tr:hover td {
  background: rgba(245,196,0,0.05);
}

/* --- FOOTER --- */
#site-footer {
  background: var(--bg-darker);
  border-top: 2px solid var(--yellow);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--grey-dark);
  margin-bottom: 32px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--grey-mid);
  margin-top: 16px;
  line-height: 1.7;
}

.footer-col h5 {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--yellow);
  margin-bottom: 16px;
}

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

.footer-links a {
  color: var(--grey-mid);
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

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

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--grey-mid);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: var(--grey-mid);
}

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

/* --- PRIVACY PAGE --- */
.prose h2 {
  font-size: 1.8rem;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--grey-dark);
}

.prose h3 {
  font-size: 1.3rem;
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--yellow);
}

.prose ul {
  list-style: none;
  margin: 16px 0;
}

.prose ul li {
  padding: 6px 0 6px 24px;
  color: var(--grey-light);
  font-size: 0.98rem;
  position: relative;
}

.prose ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--yellow);
}

/* --- ABOUT PAGE --- */
.value-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-dark);
  transition: border-color var(--transition);
}

.value-card:hover {
  border-color: var(--yellow);
}

.value-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.animate-fade-up   { animation: fadeInUp 0.7s ease both; }
.animate-fade-in   { animation: fadeIn 0.7s ease both; }
.animate-slide-left{ animation: slideInLeft 0.7s ease both; }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* --- BREADCRUMB --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--grey-mid);
  margin-bottom: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

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

.breadcrumb-sep {
  color: var(--yellow);
}

/* --- HIGHLIGHT BOX --- */
.highlight-box {
  background: linear-gradient(135deg, rgba(245,196,0,0.08), rgba(245,196,0,0.02));
  border: 1px solid rgba(245,196,0,0.25);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
}

.highlight-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--yellow);
}

/* --- STEP CARDS --- */
.step-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-dark);
  transition: border-color var(--transition), transform var(--transition);
}

.step-card:hover {
  border-color: var(--yellow);
  transform: translateX(6px);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .feature-row  { gap: 40px; }
}

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

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { padding: 100px 0 60px; }
  .hero-stats { gap: 24px; }
  .motion-lines { width: 100%; opacity: 0.15; }

  .card-grid--3,
  .card-grid--2,
  .card-grid--4 { grid-template-columns: 1fr; }

  .feature-row,
  .feature-row--reverse { grid-template-columns: 1fr; direction: ltr; gap: 32px; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }

  h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  h2 { font-size: clamp(1.7rem, 5vw, 2.4rem); }

  .stat-bar-inner { gap: 24px; justify-content: center; }

  .page-hero { padding: 120px 0 60px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .step-card { flex-direction: column; gap: 16px; }
}

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* --- PRINT --- */
@media print {
  #site-header, #site-footer, .motion-lines { display: none; }
  body { background: white; color: black; }
}