@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,400;0,500;0,600;0,700;0,800;1,700&display=swap');

:root {
  --background: hsl(0, 0%, 4%);
  --foreground: hsl(0, 0%, 95%);
  --card: hsl(0, 0%, 8%);
  --primary: hsl(195, 100%, 50%);
  --primary-foreground: hsl(0, 0%, 2%);
  --secondary: hsl(0, 0%, 12%);
  --secondary-foreground: hsl(0, 0%, 95%);
  --muted: hsl(0, 0%, 15%);
  --muted-foreground: hsl(0, 0%, 60%);
  --border: hsl(0, 0%, 18%);
  --destructive: hsl(0, 84.2%, 60.2%);
}

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

body {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  background-color: var(--background);
  color: var(--foreground);
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif;
  font-style: italic;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
button { cursor: pointer; }

/* ===== CONTAINER ===== */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.container-md { max-width: 56rem; margin: 0 auto; padding: 0 1rem; }
.container-lg { max-width: 72rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container-md { padding: 0 1.5rem; } .container-lg { padding: 0 1.5rem; } }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.navbar.scrolled { transform: translateY(-100%); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
@media (min-width: 768px) { .nav-inner { height: 5rem; } }

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

.nav-links { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #6b7280;
  transition: color 0.2s;
  font-family: 'Barlow', sans-serif;
}
.nav-link:hover { color: #111827; }
.nav-link.active { color: var(--primary); }

.nav-cta { display: none; align-items: center; gap: 0.75rem; }
@media (min-width: 768px) { .nav-cta { display: flex; } }

.mobile-toggle {
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; color: #374151; padding: 0.25rem;
}
.mobile-toggle svg { width: 1.5rem; height: 1.5rem; }
@media (min-width: 768px) { .mobile-toggle { display: none; } }

/* Mobile menu inside navbar */
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid #e5e7eb;
}
.mobile-menu.open { display: block; }
.mobile-menu-inner { padding: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-nav-link {
  display: block; padding: 0.75rem 1rem;
  font-size: 0.875rem; font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.1em; color: #4b5563;
}
.mobile-nav-link.active { color: var(--primary); background: #f3f4f6; border-radius: 4px; }
.mobile-cta-group {
  display: flex; flex-direction: column; gap: 0.5rem;
  padding-top: 1rem; border-top: 1px solid #e5e7eb; margin-top: 0.5rem;
}

/* Floating Trigger Button */
.floating-trigger {
  display: none;
  position: fixed; top: 1rem; left: 1rem; z-index: 50;
  width: 2.75rem; height: 2.75rem;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 50%;
  align-items: center; justify-content: center;
  color: var(--foreground);
  transition: background-color 0.2s, opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.floating-trigger svg { width: 1.25rem; height: 1.25rem; }
.floating-trigger:hover { background-color: var(--secondary); }
.floating-trigger.visible { display: flex; }

/* Sidebar Backdrop */
.sidebar-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 40;
  background-color: rgba(0,0,0,0.5);
}
.sidebar-backdrop.open { display: block; }

/* Sidebar */
.sidebar {
  position: fixed; top: 0; left: 0; height: 100%; width: 18rem; z-index: 41;
  background-color: var(--background);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.sidebar.open { transform: translateX(0); }

.sidebar-logo {
  padding: 0.75rem 1rem 0.5rem;
  border-bottom: 1px solid var(--border);
}
.sidebar-logo img { height: 200px; width: 100%; object-fit: contain; }

.sidebar-nav { flex: 1; padding: 1.5rem 1rem; display: flex; flex-direction: column; gap: 0.25rem; overflow-y: auto; }
.sidebar-nav-link {
  display: block; padding: 0.75rem 1rem;
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.1em; font-size: 1rem;
  color: var(--muted-foreground); transition: color 0.2s, background 0.2s;
}
.sidebar-nav-link:hover { color: var(--foreground); background-color: var(--secondary); }
.sidebar-nav-link.active { color: var(--primary); background-color: var(--secondary); }

.sidebar-cta { padding: 1.5rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 0.75rem; }

/* Mobile scroll dropdown */
.scroll-mobile-dropdown {
  display: none;
  position: fixed; top: 4rem; left: 1rem; z-index: 50;
  width: 14rem;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  overflow: hidden;
}
.scroll-mobile-dropdown.open { display: block; }

.scroll-mobile-nav { padding: 0.5rem 0; }
.scroll-mobile-nav a {
  display: block; padding: 0.75rem 1rem;
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.1em; font-size: 0.875rem;
  color: var(--foreground); transition: background 0.2s;
}
.scroll-mobile-nav a:hover, .scroll-mobile-nav a.active { background: var(--secondary); color: var(--primary); }

.scroll-mobile-cta { padding: 0.75rem 1rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 0.5rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.1em;
  font-size: 0.875rem; padding: 0.5rem 1rem;
  cursor: pointer; transition: all 0.2s;
  border: 2px solid transparent; text-decoration: none;
  white-space: nowrap;
}
.btn-nav-outline { border-color: #1f2937; color: #1f2937; background: transparent; }
.btn-nav-outline:hover { background-color: #1f2937; color: white; }
.btn-primary { background-color: var(--primary); color: var(--primary-foreground); border-color: var(--primary); }
.btn-primary:hover { background-color: hsl(195, 100%, 42%); border-color: hsl(195, 100%, 42%); }
.btn-outline-light { border-color: var(--border); color: var(--foreground); background: transparent; }
.btn-outline-light:hover { background-color: var(--secondary); }
.btn-primary-outline { border-color: var(--primary); color: var(--primary); background: transparent; }
.btn-primary-outline:hover { background-color: var(--primary); color: var(--primary-foreground); }
.btn-dark { background-color: var(--background); color: var(--foreground); border-color: var(--border); }
.btn-dark:hover { background-color: var(--secondary); }
.btn-lg { padding: 0.875rem 2rem; font-size: 1.125rem; }
.btn-full { width: 100%; }

/* ===== MAIN CONTENT ===== */
.main-content { padding-top: 4rem; }
@media (min-width: 768px) { .main-content { padding-top: 5rem; } }

/* ===== EDGY DIVIDER ===== */
.edgy-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
}

/* ===== HERO SECTION (HOME) ===== */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video-bg {
  position: absolute; inset: 0;
}
.hero-video-bg video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--background), rgba(10,10,10,0.8), transparent);
}
.hero-content {
  position: relative; z-index: 10;
  width: 100%; padding: 5rem 1rem;
}
@media (min-width: 640px) { .hero-content { padding: 5rem 1.5rem; } }
@media (min-width: 1024px) { .hero-content { padding: 5rem 4rem; } }

.hero-text { max-width: 36rem; }
.hero-h1 { font-size: 3rem; line-height: 1.1; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .hero-h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-h1 { font-size: 4.5rem; } }

.hero-p { font-size: 1.125rem; margin-bottom: 2rem; max-width: 32rem; }

.app-store-badges { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-bottom: 1.5rem; }

.app-badge {
  display: flex; align-items: center; gap: 0.75rem;
  background-color: #000; color: #fff;
  padding: 0.75rem 1.25rem; border-radius: 0.75rem;
  transition: background-color 0.2s; text-decoration: none;
}
.app-badge:hover { background-color: #1a1a1a; }
.app-badge svg { width: 1.75rem; height: 1.75rem; }
.app-badge-label { font-size: 0.75rem; color: #9ca3af; }
.app-badge-title { font-size: 0.875rem; font-weight: 600; }

/* ===== SAFETY CULTURE SECTION ===== */
.safety-culture-section { background: #ffffff; padding: 0; }
.safety-culture-grid {
  display: grid; gap: 1.5rem; align-items: center;
}
@media (min-width: 768px) { .safety-culture-grid { grid-template-columns: 1fr 1fr; } }
.safety-culture-img { width: 80%; }
.safety-culture-h2 { font-size: 2.5rem; margin-bottom: 1.5rem; color: #111827; }
@media (min-width: 768px) { .safety-culture-h2 { font-size: 3rem; } }
.safety-culture-p { color: #4b5563; line-height: 1.7; font-size: 1.125rem; }

/* ===== FEATURES BAR ===== */
.features-bar { background-color: var(--primary); padding: 1.5rem 0; }
.features-bar-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
@media (min-width: 640px) { .features-bar-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .features-bar-grid { grid-template-columns: repeat(6, 1fr); } }

.feature-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.5rem; }
.feature-item svg { width: 2rem; height: 2rem; color: var(--primary-foreground); }
.feature-item span { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary-foreground); line-height: 1.3; }

/* ===== SIMPLE SAFETY SECTION ===== */
.simple-safety-section {
  position: relative; padding: 2rem 0; overflow: hidden;
}
@media (min-width: 768px) { .simple-safety-section { padding: 3rem 0; } }

.section-texture-bg { position: absolute; inset: 0; }
.section-texture-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.section-texture-overlay { position: absolute; inset: 0; background-color: rgba(20,20,20,0.9); }

.bg-logo-watermark {
  position: absolute; inset-y: 0; left: 0; width: 50%;
  display: flex; align-items: center; justify-content: flex-start;
  pointer-events: none; overflow: hidden;
}
.bg-logo-watermark img { height: 100%; width: auto; object-fit: contain; opacity: 0.05; }

.section-header { text-align: center; margin-bottom: 1.5rem; }
.section-title-italic { font-size: 2.5rem; font-style: italic; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .section-title-italic { font-size: 3rem; } }
.section-subtitle { color: var(--muted-foreground); font-size: 1.125rem; }

/* Tab Bar */
.tab-bar {
  display: flex; background-color: var(--secondary);
  border-radius: 0.75rem; padding: 0.25rem; margin-bottom: 2rem;
}
.tab-btn {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.75rem 1rem;
  background: none; border: none;
  font-family: 'Bebas Neue', sans-serif; font-size: 0.875rem; letter-spacing: 0.1em;
  color: var(--muted-foreground); cursor: pointer; border-radius: 0.5rem;
  transition: all 0.2s;
}
.tab-btn svg { width: 1rem; height: 1rem; }
.tab-btn.active { background-color: var(--primary); color: var(--primary-foreground); }
.tab-btn.active svg { color: var(--primary-foreground); }

/* Tab Panel */
.tab-panels { position: relative; min-height: 320px; }
.tab-panel { display: none; }
.tab-panel.active {
  display: block;
  animation: slideIn 0.35s ease;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

.tab-panel-inner {
  background-color: var(--card); border: 1px solid var(--border);
  border-radius: 0.75rem; padding: 1.5rem;
}
.tab-panel-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.tab-panel-header svg { width: 1.75rem; height: 1.75rem; color: var(--primary); }
.tab-panel-header h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 0.1em; color: var(--primary); }
.tab-panel-desc { color: var(--muted-foreground); font-size: 0.875rem; margin-bottom: 1.5rem; }

.tab-checklist { display: grid; gap: 1rem; }
@media (min-width: 640px) { .tab-checklist { grid-template-columns: 1fr 1fr; gap: 1rem 2rem; } }
.tab-checklist li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--foreground); list-style: none; }
.tab-checklist li svg { width: 1.25rem; height: 1.25rem; color: var(--primary); flex-shrink: 0; }

.tab-icon-list { display: flex; flex-direction: column; gap: 1.25rem; }
.tab-icon-list li { display: flex; align-items: center; gap: 1rem; font-size: 0.875rem; color: var(--foreground); list-style: none; }
.tab-icon-list-icon {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background-color: rgba(0, 195, 255, 0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.tab-icon-list-icon svg { width: 1rem; height: 1rem; color: var(--primary); }

/* ===== HOW WE HELP SECTION ===== */
.how-we-help {
  position: relative; padding: 2.5rem 0;
  background-size: cover; background-position: center;
}
@media (min-width: 768px) { .how-we-help { padding: 3.5rem 0; } }
.how-we-help-overlay { position: absolute; inset: 0; background-color: rgba(0,0,0,0.4); }
.how-we-help-content { position: relative; z-index: 10; }
.how-we-help-inner { display: flex; align-items: center; justify-content: flex-end; min-height: 16rem; }
.how-we-help-text { width: 100%; }
@media (min-width: 768px) { .how-we-help-text { width: 50%; } }
.how-we-help-text h2 { font-size: 1.875rem; color: #fff; margin-bottom: 1rem; }
@media (min-width: 768px) { .how-we-help-text h2 { font-size: 2.25rem; } }
.how-we-help-text p { color: #fff; font-size: 1rem; line-height: 1.7; }

/* ===== ONBOARDING SECTION ===== */
.onboarding-section {
  position: relative; padding: 2.5rem 0;
  background-size: cover; background-position: center;
}
@media (min-width: 768px) { .onboarding-section { padding: 3.5rem 0; } }
.onboarding-overlay { position: absolute; inset: 0; background-color: rgba(10,10,10,0.85); }
.onboarding-content { position: relative; z-index: 10; text-align: center; max-width: 56rem; margin: 0 auto; padding: 0 1rem; }
.onboarding-content h2 { font-size: 1.875rem; font-style: italic; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .onboarding-content h2 { font-size: 2.25rem; } }
.onboarding-content p { color: var(--muted-foreground); font-size: 1.125rem; line-height: 1.7; margin-bottom: 2rem; max-width: 42rem; margin-left: auto; margin-right: auto; }

/* ===== WORK SAFE SECTION ===== */
.work-safe-section { position: relative; overflow: hidden; background-color: var(--background); min-height: 120px; }
.work-safe-grid { display: flex; flex-direction: column; }
@media (min-width: 768px) { .work-safe-grid { flex-direction: row; } }

.work-safe-img { width: 100%; position: relative; min-height: 80px; }
@media (min-width: 768px) { .work-safe-img { width: 41.666%; } }
.work-safe-img img { width: 100%; height: 100%; object-fit: cover; min-height: 80px; display: block; }
.work-safe-img-fade-right { position: absolute; inset-y: 0; right: 0; width: 6rem; background: linear-gradient(to right, transparent, var(--background)); display: none; }
.work-safe-img-fade-left { position: absolute; inset-y: 0; left: 0; width: 6rem; background: linear-gradient(to left, transparent, var(--background)); display: none; }
@media (min-width: 768px) { .work-safe-img-fade-right { display: block; } .work-safe-img-fade-left { display: block; } }

.work-safe-text {
  width: 100%; display: flex; align-items: center; justify-content: center;
  z-index: 10; padding: 1.5rem; text-align: center;
}
@media (min-width: 768px) { .work-safe-text { width: 33.333%; padding: 0; } }

.work-safe-text h2 { font-size: 1.5rem; line-height: 1.2; }
@media (min-width: 768px) { .work-safe-text h2 { font-size: 1.875rem; } }
@media (min-width: 1024px) { .work-safe-text h2 { font-size: 3rem; } }

/* ===== IMAGE HERO (about, app, contact) ===== */
.image-hero {
  position: relative; display: flex; align-items: center; overflow: hidden;
  height: 50vh;
}
@media (min-width: 768px) { .image-hero { height: 65vh; } }
.image-hero-tall { height: 65vh; }
@media (min-width: 768px) { .image-hero-tall { height: 75vh; } }

.image-hero-bg { position: absolute; inset: 0; }
.image-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.image-hero-overlay { position: absolute; inset: 0; background-color: rgba(0,0,0,0.4); z-index: 1; }
.image-hero-content { position: relative; z-index: 20; width: 100%; }

.image-hero-h1 { font-size: 3rem; }
@media (min-width: 768px) { .image-hero-h1 { font-size: 4.5rem; } }

/* ===== ABOUT PAGE SECTIONS ===== */
.mission-section { background: #ffffff; padding: 3rem 0; }
@media (min-width: 768px) { .mission-section { padding: 4rem 0; } }
.mission-content { text-align: center; }
.mission-h2 { font-size: 2.5rem; color: #111827; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .mission-h2 { font-size: 3rem; } }
.mission-p { color: #374151; font-size: 1.125rem; line-height: 1.7; }

.backstory-section { background-color: var(--card); padding: 2rem 0; }
@media (min-width: 768px) { .backstory-section { padding: 3rem 0; } }
.backstory-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .backstory-grid { grid-template-columns: 1fr 1fr; } }
.backstory-img { border-radius: 0.5rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); }
.backstory-h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.backstory-text { display: flex; flex-direction: column; gap: 1rem; color: var(--muted-foreground); line-height: 1.7; }

.team-section { background-color: var(--card); padding: 2rem 0; }
@media (min-width: 768px) { .team-section { padding: 3rem 0; } }
.team-h2 { font-size: 2.5rem; text-align: center; margin-bottom: 4rem; }
@media (min-width: 768px) { .team-h2 { font-size: 3rem; } }
.team-grid { display: grid; gap: 3rem; margin-bottom: 3rem; }
@media (min-width: 640px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: 1fr 1fr 1fr; } }

.team-card { text-align: center; }
.team-photo {
  width: 12rem; height: 12rem; margin: 0 auto 1.5rem;
  border-radius: 50%; overflow: hidden;
  transition: box-shadow 0.3s;
}
.team-photo:hover { box-shadow: 0 0 30px 8px rgba(0, 195, 255, 0.4); }
.team-photo img { width: 100%; height: 100%; object-fit: contain; }
.team-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem; font-style: italic; }
.team-role { color: var(--primary); font-size: 0.875rem; font-weight: 600; margin-top: 0.25rem; margin-bottom: 1rem; }
.team-bio { color: var(--muted-foreground); font-size: 0.875rem; line-height: 1.7; }
.team-cta { display: flex; justify-content: center; }

.meet-sam-section { background-color: #f3f4f6; padding: 0; overflow: hidden; }
.meet-sam-grid { display: grid; gap: 1.5rem; align-items: center; }
@media (min-width: 768px) { .meet-sam-grid { grid-template-columns: 1fr 1fr; } }
.meet-sam-text { text-align: center; display: flex; flex-direction: column; justify-content: center; padding: 3rem 0; }
.meet-sam-coming-soon { color: var(--muted-foreground); font-size: 0.875rem; margin-bottom: 0.5rem; }
.meet-sam-h2 { font-size: 1.875rem; color: #111827; margin-bottom: 1rem; }
@media (min-width: 768px) { .meet-sam-h2 { font-size: 2.25rem; } }
.meet-sam-p { color: #4b5563; line-height: 1.7; }
.meet-sam-img { display: flex; justify-content: flex-end; }
.meet-sam-img img { width: 16rem; object-fit: contain; object-position: bottom; margin-bottom: -4px; }
@media (min-width: 768px) { .meet-sam-img img { width: 20rem; } }

.consulting-section { background-color: var(--background); padding: 5rem 0; }
@media (min-width: 768px) { .consulting-section { padding: 7rem 0; } }
.consulting-content { text-align: center; }
.consulting-h2 { font-size: 1.875rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .consulting-h2 { font-size: 2.25rem; } }
.consulting-p { font-size: 1.125rem; line-height: 1.7; color: var(--muted-foreground); margin-bottom: 1.5rem; }

.testimonials-section {
  position: relative; padding: 5rem 0;
  background-size: cover; background-position: center; background-attachment: fixed;
}
@media (min-width: 768px) { .testimonials-section { padding: 7rem 0; } }
.testimonials-overlay { position: absolute; inset: 0; background-color: rgba(10,10,10,0.8); }
.testimonials-content { position: relative; z-index: 10; text-align: center; }
.testimonials-h2 { font-size: 2.5rem; margin-bottom: 4rem; }
@media (min-width: 768px) { .testimonials-h2 { font-size: 3rem; } }
.testimonials-grid { display: flex; justify-content: center; }
.testimonial-card { background-color: var(--secondary); border-radius: 0.75rem; padding: 2rem; max-width: 36rem; }
.testimonial-stars { display: flex; justify-content: center; gap: 0.25rem; margin-bottom: 1rem; }
.testimonial-stars svg { width: 1.25rem; height: 1.25rem; color: var(--primary); fill: var(--primary); }
.testimonial-text { color: var(--muted-foreground); line-height: 1.7; margin-bottom: 1rem; }
.testimonial-author { color: var(--foreground); font-family: 'Bebas Neue', sans-serif; font-style: italic; }

/* ===== APP PAGE SECTIONS ===== */
.about-app-section { background: #ffffff; padding: 5rem 0; }
@media (min-width: 768px) { .about-app-section { padding: 7rem 0; } }
.about-app-grid { display: grid; gap: 3rem; align-items: center; justify-items: center; }
@media (min-width: 768px) { .about-app-grid { grid-template-columns: 1fr 1fr; } }
.about-app-h2 { font-size: 2.5rem; color: #111827; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .about-app-h2 { font-size: 3rem; } }
.about-app-text { display: flex; flex-direction: column; gap: 1rem; color: #4b5563; line-height: 1.7; }
.about-app-img { border-radius: 0.5rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); -webkit-mask-image: radial-gradient(circle at center, black 0%, black 70%, transparent 100%); mask-image: radial-gradient(circle at center, black 0%, black 70%, transparent 100%); }

.features-detail-section {
  position: relative; background-color: var(--background); padding: 3rem 0; overflow: hidden;
}
@media (min-width: 768px) { .features-detail-section { padding: 4rem 0; } }
.features-detail-h2 { font-size: 2.5rem; font-style: italic; margin-bottom: 1rem; }
@media (min-width: 768px) { .features-detail-h2 { font-size: 3rem; } }
.features-tab-list { display: grid; gap: 0.75rem; }
@media (min-width: 640px) { .features-tab-list { grid-template-columns: 1fr 1fr; column-gap: 2rem; } }
.features-tab-list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; list-style: none; }
.features-tab-list li span.dash { color: var(--primary); margin-top: 0.25rem; flex-shrink: 0; }

.watch-at-work-section {
  position: relative; padding: 5rem 0;
  background-size: cover; background-position: center; background-attachment: fixed;
}
@media (min-width: 768px) { .watch-at-work-section { padding: 7rem 0; } }
.watch-overlay { position: absolute; inset: 0; background-color: rgba(10,10,10,0.75); }
.watch-content { position: relative; z-index: 10; text-align: center; }
.watch-h2 { font-size: 2.5rem; margin-bottom: 1rem; }
@media (min-width: 768px) { .watch-h2 { font-size: 3rem; } }
.watch-subtitle { color: var(--muted-foreground); font-size: 1.125rem; max-width: 42rem; margin: 0 auto 3rem; }
.video-wrapper { position: relative; padding-bottom: 56.25%; max-width: 56rem; margin: 0 auto; }
.video-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 0.5rem; border: none; }

/* ===== PRICING SECTION ===== */
.pricing-section { background-color: var(--card); padding: 3rem 0; }
@media (min-width: 768px) { .pricing-section { padding: 4rem 0; } }
.pricing-header { text-align: center; margin-bottom: 2.5rem; }
.pricing-h2 { font-size: 2.5rem; font-style: italic; margin-bottom: 1rem; }
@media (min-width: 768px) { .pricing-h2 { font-size: 3rem; } }
.pricing-subtitle { color: var(--muted-foreground); font-size: 1.125rem; }
.pricing-note { color: var(--muted-foreground); font-size: 0.875rem; margin-top: 0.5rem; }
.pricing-no-lock { color: var(--primary); font-size: 0.875rem; font-weight: 600; letter-spacing: 0.05em; margin-top: 0.75rem; }

.pricing-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); } }

.pricing-card {
  border-radius: 0.75rem; padding: 1.5rem;
  display: flex; flex-direction: column;
  background-color: var(--secondary);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0, 195, 255, 0.15); }
.pricing-card.popular {
  background-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary);
  color: var(--primary-foreground);
}
.pricing-card.popular:hover { box-shadow: 0 20px 40px rgba(0, 195, 255, 0.35), 0 0 0 2px var(--primary); }

.pricing-plan-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.125rem; font-weight: 700; letter-spacing: 0.1em; color: var(--primary); font-style: italic; }
.pricing-card.popular .pricing-plan-name { color: var(--primary-foreground); }
.pricing-projects { font-size: 0.75rem; margin-top: 0.25rem; color: var(--muted-foreground); }
.pricing-card.popular .pricing-projects { color: rgba(5,5,5,0.7); }
.pricing-price { margin-top: 1rem; margin-bottom: 1.5rem; }
.pricing-amount { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; font-style: italic; }
.pricing-period { font-size: 0.875rem; color: var(--muted-foreground); }
.pricing-card.popular .pricing-period { color: rgba(5,5,5,0.7); }

.pricing-features { display: flex; flex-direction: column; gap: 0.75rem; flex: 1; margin-bottom: 2rem; }
.pricing-feature { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; }
.pricing-feature svg { width: 1rem; height: 1rem; color: var(--primary); flex-shrink: 0; margin-top: 0.25rem; }
.pricing-card.popular .pricing-feature svg { color: var(--primary-foreground); }

.pricing-features-bar { background-color: var(--primary); padding: 1.5rem; margin-top: 5rem; border-radius: 0.75rem; }
.pricing-features-bar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 640px) { .pricing-features-bar-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .pricing-features-bar-grid { grid-template-columns: repeat(6, 1fr); } }

/* ===== QR CODE SECTION ===== */
.qr-section { position: relative; padding: 5rem 0; overflow: hidden; }
@media (min-width: 768px) { .qr-section { padding: 7rem 0; } }
.qr-section-overlay { position: absolute; inset: 0; background-color: rgba(10,10,10,0.8); }
.qr-content { position: relative; z-index: 10; max-width: 42rem; }
.qr-h2 { font-size: 1.875rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .qr-h2 { font-size: 2.25rem; } }
.qr-p { color: var(--foreground); line-height: 1.7; font-size: 1.125rem; }

/* ===== OLD VS NEW SECTION ===== */
.old-vs-new-section {
  position: relative; padding: 4rem 0;
  background-size: cover; background-position: center; background-attachment: fixed;
}
@media (min-width: 768px) { .old-vs-new-section { padding: 5rem 0; } }
.old-vs-new-overlay { position: absolute; inset: 0; background-color: rgba(10,10,10,0.85); }
.old-vs-new-content { position: relative; z-index: 10; }
.old-vs-new-header { text-align: center; margin-bottom: 3rem; }
.old-vs-new-h2 { font-size: 2.5rem; font-style: italic; margin-bottom: 1rem; }
@media (min-width: 768px) { .old-vs-new-h2 { font-size: 3rem; } }
.old-vs-new-subtitle { color: var(--muted-foreground); font-size: 1.125rem; }
.old-vs-new-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .old-vs-new-grid { grid-template-columns: 1fr 1fr; } }

.old-way-card { background-color: var(--secondary); border-radius: 0.75rem; padding: 2rem; }
.new-way-card { background-color: var(--primary); border-radius: 0.75rem; padding: 2rem; }
.old-way-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 0.1em; color: var(--muted-foreground); margin-bottom: 1.5rem; font-style: italic; }
.new-way-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 0.1em; color: var(--primary-foreground); margin-bottom: 1.5rem; font-style: italic; }

.comparison-list { display: flex; flex-direction: column; gap: 1rem; }
.comparison-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; list-style: none; }
.old-way-card .comparison-item { color: var(--muted-foreground); }
.new-way-card .comparison-item { color: var(--primary-foreground); }
.comparison-item svg { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.125rem; }
.old-way-card .comparison-item svg { color: var(--destructive); }
.new-way-card .comparison-item svg { color: var(--primary-foreground); }

/* ===== DO IT ONCE SECTION ===== */
.do-it-once-section { padding: 3rem 0; background-color: var(--card); }
.do-it-once-content { text-align: center; }
.do-it-once-h2 { font-size: 1.875rem; }
@media (min-width: 768px) { .do-it-once-h2 { font-size: 2.25rem; } }

/* ===== CONTACT PAGE ===== */
.contact-form-section { background-color: var(--card); padding: 5rem 0; }
@media (min-width: 768px) { .contact-form-section { padding: 7rem 0; } }
.contact-grid { display: grid; gap: 4rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-h2 { font-size: 1.875rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .contact-h2 { font-size: 2.25rem; } }

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; color: var(--foreground); font-weight: 500; margin-bottom: 0.5rem; font-size: 0.9rem; }
.form-input, .form-textarea {
  width: 100%; padding: 0.625rem 0.75rem;
  background-color: var(--secondary); border: 1px solid var(--border);
  color: var(--foreground); font-family: 'Barlow', sans-serif; font-size: 0.9rem;
  border-radius: 4px; transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(0, 191, 255, 0.2); }
.form-textarea { height: 8rem; resize: vertical; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted-foreground); }

.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon-wrap { width: 3rem; height: 3rem; border-radius: 50%; background-color: rgba(0,191,255,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon-wrap svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.contact-info-label { font-family: 'Bebas Neue', sans-serif; font-size: 1.125rem; font-weight: 700; font-style: italic; margin-bottom: 0.25rem; }
.contact-info-value { color: var(--muted-foreground); }
.contact-info-stack { display: flex; flex-direction: column; gap: 1.5rem; padding-top: 1rem; }
.contact-reach-p { color: var(--muted-foreground); font-size: 1.125rem; line-height: 1.7; margin-bottom: 0; }

/* ===== BOOK DEMO PAGE ===== */
.book-demo-page { min-height: 100vh; background-color: var(--background); padding-top: 8rem; padding-bottom: 4rem; }
.book-demo-header { text-align: center; margin-bottom: 3rem; }
.book-demo-h1 { font-size: 2.5rem; margin-bottom: 1rem; }
@media (min-width: 768px) { .book-demo-h1 { font-size: 3rem; } }
.book-demo-subtitle { color: var(--muted-foreground); font-size: 1.125rem; }
.book-demo-card { background-color: var(--card); border: 1px solid var(--border); border-radius: 0.5rem; padding: 2rem; }
@media (min-width: 768px) { .book-demo-card { padding: 3rem; } }
.book-demo-form-grid { display: grid; gap: 1.5rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .book-demo-form-grid { grid-template-columns: 1fr 1fr; } }
.book-demo-success { text-align: center; padding: 3rem 0; }
.book-demo-success h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.book-demo-success p { color: var(--muted-foreground); margin-bottom: 1.5rem; }

/* ===== LEGAL PAGES (Privacy, Terms, Disclaimer) ===== */
.legal-page { min-height: 100vh; background-color: var(--background); padding-top: 8rem; padding-bottom: 4rem; }
.legal-h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .legal-h1 { font-size: 3rem; } }
.legal-date { color: var(--muted-foreground); margin-bottom: 3rem; }
.legal-section { margin-bottom: 3rem; }
.legal-section h2 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; font-style: italic; margin-bottom: 1.5rem; }
.legal-section h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.125rem; font-style: italic; margin-bottom: 1rem; }
.legal-section p { line-height: 1.7; margin-bottom: 1rem; color: var(--foreground); }
.legal-section ul { padding-left: 1.5rem; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.legal-section ul li { line-height: 1.7; }
.legal-box { background-color: var(--card); padding: 1.5rem; border-radius: 0.5rem; border: 1px solid var(--border); margin-top: 3rem; }
.legal-box p { font-size: 0.875rem; color: var(--muted-foreground); margin: 0; }

/* ===== PRICING HERO ===== */
.pricing-hero {
  position: relative; height: 18rem; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
@media (min-width: 768px) { .pricing-hero { height: 24rem; } }
.pricing-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.pricing-hero-overlay { position: absolute; inset: 0; background-color: rgba(0,0,0,0.5); }
.pricing-hero h1 { position: relative; z-index: 10; font-size: 3rem; font-style: italic; color: #fff; text-align: center; }
@media (min-width: 768px) { .pricing-hero h1 { font-size: 4.5rem; } }

/* ===== FOOTER ===== */
.footer { background-color: var(--card); border-top: 1px solid var(--border); }
.footer-main { padding: 1.5rem 0; }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }

.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 768px) { .footer-brand { align-items: flex-start; } }
.footer-logo { height: 5rem; width: auto; object-fit: contain; }
.footer-tagline { color: var(--muted-foreground); font-size: 0.875rem; text-align: center; }
@media (min-width: 768px) { .footer-tagline { text-align: left; } }

.footer-app-badges { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .footer-app-badges { flex-direction: row; } }
.footer-app-badges img { height: 2.25rem; }

.footer-social { display: flex; gap: 0.75rem; }
.social-btn {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background-color: var(--secondary); display: flex; align-items: center; justify-content: center;
  color: var(--muted-foreground); transition: background-color 0.2s, color 0.2s;
}
.social-btn:hover { background-color: var(--primary); color: var(--primary-foreground); }
.social-btn svg { width: 1rem; height: 1rem; }

.footer-col h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.125rem; letter-spacing: 0.1em; margin-bottom: 1rem; font-style: italic; }
.footer-benefits { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-benefit { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--muted-foreground); }
.footer-benefit svg { width: 1rem; height: 1rem; color: var(--primary); flex-shrink: 0; }
.footer-contact-list { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: var(--muted-foreground); }
.footer-contact-item svg { width: 1rem; height: 1rem; color: var(--primary); flex-shrink: 0; margin-top: 0.125rem; }
.footer-contact-item a:hover { color: var(--primary); }

.footer-bottom { background-color: var(--primary); padding: 0.75rem 0; }
.footer-bottom-inner {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; font-size: 0.75rem; color: var(--primary-foreground);
  text-align: center;
}
@media (min-width: 640px) { .footer-bottom-inner { flex-direction: row; } }
.footer-sep { display: none; }
@media (min-width: 640px) { .footer-sep { display: inline; } }
.footer-links { display: flex; gap: 0.75rem; }
.footer-links a { color: var(--primary-foreground); }
.footer-links a:hover { text-decoration: underline; }

/* ===== ANIMATIONS ===== */
.anim { opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease; }
.anim-up { transform: translateY(30px); }
.anim-left { transform: translateX(-30px); }
.anim-right { transform: translateX(30px); }
.anim-scale { transform: scale(0.95); }
.anim.visible { opacity: 1; transform: none; }

.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }

/* Page load animation */
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-animate { animation: heroFadeIn 0.8s ease forwards; }

/* ===== BLOG LISTING PAGE ===== */
.blog-hero {
  position: relative; padding: 4rem 0;
  background-size: cover; background-position: center;
}
@media (min-width: 768px) { .blog-hero { padding: 6rem 0; } }
.blog-hero-overlay { position: absolute; inset: 0; background-color: rgba(10,10,10,0.85); }
.blog-hero-content { position: relative; z-index: 10; text-align: center; }
.blog-hero-eyebrow { color: var(--primary); font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.15em; font-size: 0.875rem; margin-bottom: 0.75rem; }
.blog-hero-h1 { font-size: 3rem; font-style: italic; margin-bottom: 1rem; }
@media (min-width: 768px) { .blog-hero-h1 { font-size: 5rem; } }
.blog-hero-sub { color: var(--muted-foreground); font-size: 1.125rem; max-width: 36rem; margin: 0 auto; }

.blog-listing { background-color: #fff; padding: 4rem 0; }
.blog-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: 1fr 1fr; } }

.blog-card {
  border: 1px solid #e5e7eb; background: #fff;
  display: block; text-decoration: none;
  transition: box-shadow 0.3s, opacity 0.5s ease, transform 0.5s ease;
  opacity: 0; transform: translateY(20px);
}
.blog-card.visible { opacity: 1; transform: translateY(0); }
.blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.12); }

.blog-card-body { padding: 1.5rem; }
.blog-card-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem; margin-bottom: 1rem;
  background-color: rgba(0,195,255,0.1); color: var(--primary);
  font-family: 'Barlow', sans-serif;
}
.blog-card-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; font-style: italic;
  line-height: 1.2; margin-bottom: 0.75rem; color: #111827;
  transition: color 0.2s;
}
.blog-card:hover .blog-card-title { color: var(--primary); }
.blog-card-excerpt { color: #6b7280; font-size: 0.875rem; line-height: 1.6; margin-bottom: 1rem; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; }
.blog-card-meta { display: flex; align-items: center; gap: 1rem; font-size: 0.75rem; color: #9ca3af; }
.blog-card-meta span { display: flex; align-items: center; gap: 0.25rem; }
.blog-card-meta svg { flex-shrink: 0; }
.blog-card-read-more {
  display: flex; align-items: center; gap: 0.25rem;
  font-family: 'Bebas Neue', sans-serif; font-size: 0.75rem; letter-spacing: 0.1em; color: var(--primary);
}
.blog-loading { color: #9ca3af; grid-column: 1 / -1; padding: 2rem 0; }

/* ===== BLOG ARTICLE PAGE ===== */
.blog-article-body { background-color: #fff; padding: 3rem 0 5rem; }
.blog-article-inner { max-width: 48rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .blog-article-inner { padding: 0 1.5rem; } }

.blog-back-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Bebas Neue', sans-serif; font-size: 0.875rem; letter-spacing: 0.1em;
  color: var(--primary); margin-bottom: 2rem; text-decoration: none;
  transition: opacity 0.2s;
}
.blog-back-link:hover { opacity: 0.7; }
.blog-back-link svg { width: 1rem; height: 1rem; }

.blog-article-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  padding: 0.25rem 0.75rem; margin-bottom: 1rem;
  background-color: rgba(0,195,255,0.1); color: var(--primary);
  font-family: 'Barlow', sans-serif;
}
.blog-article-h1 {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; font-style: italic;
  line-height: 1.15; margin-bottom: 1rem; color: #111827;
}
@media (min-width: 768px) { .blog-article-h1 { font-size: 3rem; } }
.blog-article-byline { color: var(--primary); font-size: 0.875rem; margin-bottom: 1rem; font-family: 'Barlow', sans-serif; }
.blog-article-meta {
  display: flex; align-items: center; gap: 1rem; font-size: 0.75rem; color: #9ca3af;
  padding-bottom: 1.5rem; border-bottom: 1px solid #e5e7eb; margin-bottom: 2rem;
}
.blog-article-meta span { display: flex; align-items: center; gap: 0.25rem; }
.blog-article-meta svg { flex-shrink: 0; }

.blog-content { color: #111827; }
.blog-content > p { color: #4b5563; font-size: 1rem; line-height: 1.75; margin-bottom: 1.5rem; }
.blog-content strong { color: #111827; }
.blog-content em { font-style: italic; }

.blog-section { margin-bottom: 2rem; }
.blog-section-h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; font-style: italic;
  color: #111827; margin-bottom: 1rem;
}
@media (min-width: 768px) { .blog-section-h3 { font-size: 1.875rem; } }
.blog-section-body { display: flex; flex-direction: column; gap: 0.75rem; }
.blog-section-body p { color: #4b5563; font-size: 1rem; line-height: 1.75; margin: 0; }
.blog-section-body p.note { font-size: 0.875rem; font-style: italic; color: #6b7280; }

.blog-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin: 0.75rem 0 0; padding: 0; }
.blog-list-item { display: flex; align-items: flex-start; gap: 0.75rem; color: #4b5563; font-size: 1rem; line-height: 1.6; }
.blog-list-item svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; margin-top: 0.125rem; }
.blog-list-item-dash { color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: 0.125rem; }

.blog-numbered-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin: 0.75rem 0 0; padding: 0; }
.blog-numbered-item { display: flex; align-items: flex-start; gap: 0.75rem; color: #4b5563; font-size: 1rem; line-height: 1.6; }
.blog-numbered-num { color: var(--primary); font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem; flex-shrink: 0; line-height: 1.4; min-width: 1.25rem; }

.blog-subgroup { margin-top: 1.25rem; }
.blog-subgroup-heading { font-family: 'Barlow', sans-serif; font-weight: 700; color: #111827; margin-bottom: 0.5rem; font-size: 1rem; }
.blog-subgroup-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin: 0; padding: 0; }
.blog-subgroup-list li { display: flex; align-items: flex-start; gap: 0.5rem; color: #6b7280; font-size: 0.875rem; line-height: 1.6; }
.blog-subgroup-list li svg { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.125rem; }

.blog-callout { background-color: #f9fafb; border-left: 4px solid var(--primary); padding: 1.5rem; margin: 2rem 0; }
.blog-callout-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; font-style: italic; color: var(--primary); margin-bottom: 0.75rem; }
.blog-callout p { color: #4b5563; font-size: 1rem; line-height: 1.7; margin-bottom: 0.75rem; }
.blog-callout p:last-child { margin-bottom: 0; font-weight: 600; color: #111827; }

.blog-disclaimer { font-size: 0.75rem; color: #9ca3af; font-style: italic; border-top: 1px solid #e5e7eb; padding-top: 1.5rem; margin-top: 2rem; line-height: 1.6; }

.blog-cta-box { text-align: center; border: 1px solid #e5e7eb; background: #f9fafb; padding: 2.5rem; margin-top: 4rem; }
.blog-cta-box h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; font-style: italic; color: #111827; margin-bottom: 0.75rem; }
.blog-cta-box p { color: #6b7280; margin-bottom: 1.5rem; font-size: 1rem; }
.blog-cta-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background-color: var(--primary); color: var(--primary-foreground);
  padding: 0.75rem 2rem; font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.1em; font-size: 0.875rem;
  text-decoration: none; transition: background-color 0.2s;
}
.blog-cta-btn:hover { background-color: hsl(195,100%,42%); }
.blog-cta-btn svg { width: 1rem; height: 1rem; }

/* ===== UTILITY ===== */
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }
.text-white { color: #fff; }
.space-y > * + * { margin-top: 1rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }
.relative { position: relative; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.pt-4 { padding-top: 1rem; }
.border-t { border-top: 1px solid var(--border); }
.semibold { font-weight: 600; }
