/* =============================================
   SANDWICH DELIVERY EFFICIENCY GUIDE
   Main Stylesheet - Black + White + Neon Green
   Mobile-First Design
   ============================================= */

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

/* --- CSS Variables --- */
:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --dark-4: #2e2e2e;
  --white: #ffffff;
  --off-white: #f4f4f4;
  --light-gray: #e0e0e0;
  --mid-gray: #888888;
  --neon: #b6f542;
  --neon-dark: #9bdc2a;
  --neon-glow: rgba(182, 245, 66, 0.3);
  --neon-subtle: rgba(182, 245, 66, 0.08);
  --font-main: 'Inter', sans-serif;
  --font-display: 'Barlow Condensed', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-neon: 0 0 24px rgba(182, 245, 66, 0.2);
  --transition: all 0.25s ease;
  --max-width: 1200px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--neon-dark);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

p {
  color: var(--light-gray);
  line-height: 1.75;
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 64px 0;
}

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

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

.text-neon { color: var(--neon); }
.text-white { color: var(--white); }
.text-gray { color: var(--mid-gray); }
.text-center { text-align: center; }
.text-upper { text-transform: uppercase; }

.tag {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon);
  background: var(--neon-subtle);
  border: 1px solid rgba(182, 245, 66, 0.25);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--neon);
  margin: 16px 0 28px;
  border-radius: 2px;
}

.divider--center {
  margin: 16px auto 28px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--neon);
  color: var(--black);
  border-color: var(--neon);
}

.btn--primary:hover {
  background: var(--neon-dark);
  border-color: var(--neon-dark);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-neon);
}

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

.btn--outline:hover {
  background: var(--neon);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-neon);
}

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

.btn--ghost:hover {
  border-color: var(--neon);
  color: var(--neon);
}

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

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

/* --- NAVIGATION --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(182, 245, 66, 0.15);
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
}

.navbar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

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

.navbar__logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.navbar__logo-text span {
  color: var(--neon);
}

.navbar__nav {
  display: none;
  align-items: center;
  gap: 4px;
}

.navbar__link {
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid-gray);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--neon);
  background: var(--neon-subtle);
}

.navbar__cta {
  display: none;
}

.navbar__toggle {
  background: none;
  border: 1px solid rgba(182, 245, 66, 0.3);
  color: var(--neon);
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: var(--transition);
}

.navbar__toggle:hover {
  background: var(--neon-subtle);
}

.navbar__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--neon);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--dark);
  border-bottom: 1px solid rgba(182, 245, 66, 0.15);
  z-index: 999;
  padding: 20px;
  flex-direction: column;
  gap: 4px;
}

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

.mobile-menu__link {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid-gray);
  padding: 12px 16px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.mobile-menu__link:hover {
  color: var(--neon);
  background: var(--neon-subtle);
}

.mobile-menu__cta {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
}

/* --- HERO SECTION --- */
.hero {
  padding-top: 68px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

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

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(182, 245, 66, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(182, 245, 66, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero__bg-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(182, 245, 66, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__bg-glow-2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(182, 245, 66, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 20px;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--neon-subtle);
  border: 1px solid rgba(182, 245, 66, 0.3);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  margin-bottom: 28px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--neon);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero__badge-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero__h1 {
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 24px;
  max-width: 800px;
}

.hero__h1 .line--neon {
  color: var(--neon);
  display: block;
}

.hero__h1 .line--white {
  color: var(--white);
  display: block;
}

.hero__h1 .line--outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
  display: block;
}

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--mid-gray);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero__sub strong {
  color: var(--white);
  font-weight: 600;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--neon);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  align-self: center;
}

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

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

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--mid-gray);
  max-width: 580px;
  line-height: 1.7;
}

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

/* --- FEATURE CARDS --- */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  border-color: rgba(182, 245, 66, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow), var(--shadow-neon);
}

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

.card__icon {
  width: 52px;
  height: 52px;
  background: var(--neon-subtle);
  border: 1px solid rgba(182, 245, 66, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.card__title {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 10px;
}

.card__text {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.7;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--neon);
}

.card__link:hover {
  gap: 10px;
}

/* --- SPEED BAR --- */
.speed-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.speed-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.speed-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.speed-item__label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
}

.speed-item__value {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--neon);
}

.speed-item__track {
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}

.speed-item__fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--neon-dark), var(--neon));
  position: relative;
}

/* --- STEPS / HOW TO ORDER --- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--neon) 0%, rgba(182, 245, 66, 0.1) 100%);
}

.step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  position: relative;
}

.step__num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--neon);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--black), 0 0 0 6px rgba(182,245,66,0.3);
}

.step__body {}

.step__title {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 6px;
}

.step__text {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.7;
}

/* --- TIPS LIST --- */
.tips-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tip-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: var(--transition);
}

.tip-item:hover {
  border-color: rgba(182, 245, 66, 0.2);
}

.tip-item__icon {
  width: 36px;
  height: 36px;
  background: var(--neon-subtle);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.tip-item__content {}

.tip-item__title {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 4px;
}

.tip-item__text {
  font-size: 0.85rem;
  color: var(--mid-gray);
  line-height: 1.65;
}

/* --- CATEGORY CARDS --- */
.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.cat-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.cat-card:hover {
  border-color: rgba(182, 245, 66, 0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow), var(--shadow-neon);
}

.cat-card__img {
  height: 180px;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.cat-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, var(--dark-2));
}

.cat-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cat-card__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 8px;
}

.cat-card__title {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 10px;
}

.cat-card__text {
  font-size: 0.875rem;
  color: var(--mid-gray);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.cat-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cat-card__meta {
  font-size: 0.75rem;
  color: var(--mid-gray);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* --- BLOG CARDS --- */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.blog-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  border-color: rgba(182, 245, 66, 0.2);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.blog-card__img {
  height: 200px;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  overflow: hidden;
  position: relative;
}

.blog-card__body {
  padding: 24px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-card__cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neon);
  background: var(--neon-subtle);
  padding: 3px 10px;
  border-radius: 100px;
}

.blog-card__date {
  font-size: 0.75rem;
  color: var(--mid-gray);
}

.blog-card__title {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 18px;
}

.blog-card__read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--neon);
}

.blog-card__read:hover {
  gap: 10px;
}

/* --- CTA BANNER --- */
.cta-banner {
  background: var(--dark-2);
  border: 1px solid rgba(182, 245, 66, 0.15);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(182,245,66,0.08) 0%, transparent 70%);
}

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.cta-banner__title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 14px;
}

.cta-banner__text {
  font-size: 1rem;
  color: var(--mid-gray);
  max-width: 480px;
  margin: 0 auto 28px;
}

.cta-banner__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* --- INFO BOX --- */
.info-box {
  background: var(--neon-subtle);
  border: 1px solid rgba(182, 245, 66, 0.25);
  border-left: 4px solid var(--neon);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}

.info-box__title {
  font-size: 0.9rem;
  color: var(--neon);
  margin-bottom: 6px;
}

.info-box__text {
  font-size: 0.875rem;
  color: var(--light-gray);
  line-height: 1.65;
}

/* --- ACCORDION --- */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accordion__item {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
  gap: 14px;
}

.accordion__trigger:hover {
  background: var(--neon-subtle);
}

.accordion__trigger-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
}

.accordion__trigger-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--neon-subtle);
  border: 1px solid rgba(182,245,66,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--neon);
  font-size: 1.1rem;
  transition: var(--transition);
}

.accordion__item.open .accordion__trigger-icon {
  transform: rotate(45deg);
  background: var(--neon);
  color: var(--black);
}

.accordion__content {
  display: none;
  padding: 0 22px 22px;
}

.accordion__item.open .accordion__content {
  display: block;
}

.accordion__content p {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.75;
}

/* --- BREADCRUMB --- */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.breadcrumb__item {
  color: var(--mid-gray);
}

.breadcrumb__item a {
  color: var(--mid-gray);
}

.breadcrumb__item a:hover {
  color: var(--neon);
}

.breadcrumb__sep {
  color: rgba(255,255,255,0.2);
}

.breadcrumb__item--active {
  color: var(--neon);
}

/* --- PAGE HERO (inner pages) --- */
.page-hero {
  padding-top: 68px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.page-hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(182, 245, 66, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(182, 245, 66, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 20px;
}

.page-hero__title {
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero__title span {
  color: var(--neon);
}

.page-hero__text {
  font-size: 1rem;
  color: var(--mid-gray);
  max-width: 560px;
  line-height: 1.7;
}

/* --- TABLE --- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.data-table th {
  background: var(--dark-3);
  color: var(--neon);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(182, 245, 66, 0.15);
}

.data-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--light-gray);
}

.data-table tr:hover td {
  background: var(--neon-subtle);
}

.data-table .highlight {
  color: var(--neon);
  font-weight: 600;
}

/* --- CONTACT FORM --- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

.form-input,
.form-textarea,
.form-select {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.9rem;
  padding: 14px 16px;
  transition: var(--transition);
  width: 100%;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--neon);
  box-shadow: 0 0 0 3px var(--neon-glow);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--mid-gray);
}

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

/* --- FOOTER --- */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 20px 30px;
}

.footer__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__brand {}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

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

.footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
}

.footer__logo-text span {
  color: var(--neon);
}

.footer__tagline {
  font-size: 0.875rem;
  color: var(--mid-gray);
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--mid-gray);
  margin-bottom: 8px;
}

.footer__contact-item strong {
  color: var(--white);
}

.footer__col-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

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

.footer__link {
  font-size: 0.875rem;
  color: var(--mid-gray);
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--neon);
  padding-left: 4px;
}

.footer__bottom {
  max-width: var(--max-width);
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.footer__copy {
  font-size: 0.78rem;
  color: var(--mid-gray);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer__legal a {
  font-size: 0.75rem;
  color: var(--mid-gray);
}

.footer__legal a:hover {
  color: var(--neon);
}

/* --- BADGE / HIGHLIGHT --- */
.highlight-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--dark-2);
  border: 1px solid rgba(182, 245, 66, 0.15);
  border-radius: var(--radius);
  padding: 16px 20px;
}

.highlight-box__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.highlight-box__text {
  font-size: 0.875rem;
  color: var(--light-gray);
}

.highlight-box__text strong {
  color: var(--neon);
}

/* --- TWO-COL LAYOUT --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.two-col--reverse {}

/* --- VISUAL PANEL --- */
.visual-panel {
  background: var(--dark-2);
  border: 1px solid rgba(182, 245, 66, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.visual-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon), transparent);
}

.visual-panel__emoji {
  font-size: 5rem;
  text-align: center;
  margin-bottom: 20px;
  display: block;
}

/* --- PROSE (for blog / legal) --- */
.prose {
  max-width: 760px;
  margin: 0 auto;
}

.prose h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  margin: 40px 0 16px;
}

.prose h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--neon);
  margin: 30px 0 12px;
}

.prose p {
  font-size: 1rem;
  color: var(--light-gray);
  line-height: 1.8;
  margin-bottom: 18px;
}

.prose ul {
  margin-bottom: 18px;
}

.prose ul li {
  font-size: 0.95rem;
  color: var(--light-gray);
  line-height: 1.75;
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}

.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--neon);
  border-radius: 50%;
}

.prose a {
  color: var(--neon);
  text-decoration: underline;
  text-decoration-color: rgba(182,245,66,0.3);
}

.prose blockquote {
  border-left: 4px solid var(--neon);
  background: var(--neon-subtle);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 22px;
  margin: 24px 0;
}

.prose blockquote p {
  font-style: italic;
  color: var(--white);
  margin-bottom: 0;
}

/* --- SCROLLING TICKER --- */
.ticker {
  background: var(--neon);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}

.ticker__inner {
  display: inline-block;
  animation: ticker 20s linear infinite;
}

.ticker__item {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 28px;
}

.ticker__item::after {
  content: '⚡';
  margin-left: 28px;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --- BACK TO TOP --- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--neon);
  color: var(--black);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 500;
  text-decoration: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--neon-dark);
  transform: translateY(-2px);
  color: var(--black);
}

/* --- CHECKLIST --- */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--light-gray);
  line-height: 1.6;
}

.checklist__icon {
  width: 22px;
  height: 22px;
  background: var(--neon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--black);
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- RESPONSIVE BREAKPOINTS --- */

/* Tablet: 640px+ */
@media (min-width: 640px) {
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .category-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .section {
    padding: 80px 0;
  }
}

/* Desktop: 1024px+ */
@media (min-width: 1024px) {
  .navbar__nav {
    display: flex;
  }
  .navbar__cta {
    display: flex;
  }
  .navbar__toggle {
    display: none;
  }
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .section {
    padding: 100px 0;
  }
}

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

.animate-fade-up {
  animation: fadeUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* --- PRINT STYLES --- */
@media print {
  .navbar, .footer, .back-to-top { display: none; }
  body { background: white; color: black; }
}