/* ==========================================
   RESET & BASE STYLES
   ========================================== */

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

:root {
  /* Colors - Matching web app */
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --primary-darker: #1d4ed8;
  --secondary: #64748b;
  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;

  /* Grays */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Typography */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Borders */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  animation: bodyFadeIn 0.4s ease-out forwards;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--spacing-lg);
  }
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.5;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-slow);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn svg {
  transition: transform var(--transition-base);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--primary);
  color: white !important;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  font-weight: 600;
}

.btn-primary svg {
  color: white !important;
  fill: white !important;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn-primary:hover:not(:disabled) {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(59, 130, 246, 0.5);
}

.btn-primary:hover:not(:disabled)::before {
  opacity: 1;
}

.btn-primary:active:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
  background: white;
  color: var(--gray-700) !important;
  border: 2px solid var(--gray-300);
}

.btn-secondary:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary) !important;
  transform: translateY(-2px);
  background: rgba(59, 130, 246, 0.05);
}

.btn-secondary-alt {
  background: white;
  color: var(--primary) !important;
  border: 2px solid var(--primary);
}

.btn-secondary-alt:hover:not(:disabled) {
  background: var(--primary);
  color: white !important;
  transform: translateY(-2px);
}

.btn-cta-inverse {
  background: #fff;
  color: #1e3a8a !important;
  border: 2px solid #fff;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  width: 100%;
}
.btn-cta-inverse:hover:not(:disabled) {
  background: #f0f7ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-cta-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.35);
  font-weight: 600;
  width: 100%;
  text-align: center;
}
.btn-cta-ghost:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-700);
}

.btn-ghost:hover:not(:disabled) {
  background: var(--gray-100);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1.0625rem;
  gap: 0.5rem;
}

.btn-block {
  width: 100%;
}

/* Lead modal styles consolidated below (search: lead-dialog) */

.content-narrow {
  max-width: 52rem;
}

.article-content {
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-content h2 {
  margin-top: 2.5rem;
}

.article-content h3 {
  margin-top: 1.75rem;
}

.article-content p,
.article-content ul,
.article-content blockquote {
  margin-top: 1rem;
}

.article-content ul {
  padding-left: 1.5rem;
}

.article-content blockquote {
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--primary);
  background: var(--gray-50);
  color: var(--gray-700);
  font-weight: 600;
}

.inline-cta {
  margin: 3rem 0;
  padding: 1.5rem;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-xl);
  background: #eff6ff;
}

.inline-cta h2 {
  margin-top: 0;
}

.related-links a {
  color: var(--primary-dark);
  font-weight: 600;
}

.comparison-table-wrap {
  margin-top: 1.5rem;
  overflow-x: auto;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: white;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--gray-200);
  text-align: left;
  vertical-align: top;
}

.comparison-table thead th {
  background: var(--gray-900);
  color: white;
}

.comparison-table tbody th {
  color: var(--gray-900);
}

.comparison-table strong {
  color: var(--primary-dark);
}

.comparison-summary {
  max-width: 50rem;
  margin: var(--spacing-2xl) auto 0;
  text-align: center;
}

.checklist-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.checklist-groups section {
  padding: 1.25rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  background: white;
}

.checklist-groups ul {
  margin-top: 0.75rem;
  padding-left: 1.3rem;
}

.checklist-groups li {
  margin-bottom: 0.45rem;
}

.print-header,
.checklist-signature {
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .checklist-groups {
    grid-template-columns: 1fr;
  }
}

@media print {
  .header,
  .footer,
  .page-hero .hero-cta,
  .mobile-menu-overlay {
    display: none !important;
  }

  body {
    color: #000;
    animation: none;
    opacity: 1;
  }

  .page-section,
  .checklist-groups section {
    padding: 0;
  }

  .checklist-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .checklist-groups section {
    break-inside: avoid;
    border-color: #777;
    border-radius: 0;
    padding: 0.65rem;
  }
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */

.site-header-slot {
  display: block;
  min-height: 3.85rem;
}

.site-header-slot-home {
  min-height: 6.3rem;
}

.site-header-slot-slim {
  min-height: 4.5rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
}

.top-offer-banner {
  max-height: 2.75rem;
  overflow: hidden;
  background: #111827;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    max-height var(--transition-base),
    opacity var(--transition-base),
    border-color var(--transition-base);
}

.top-offer-inner {
  min-height: 2.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  padding: 0.42rem var(--spacing-md);
  text-align: center;
}

.top-offer-pill {
  display: inline-flex;
  align-items: center;
  min-height: 1.65rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.26);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.top-offer-copy {
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.35;
}

.top-offer-link {
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
  border-bottom-color: rgba(226, 232, 240, 0.72);
}

.header.scrolled .top-offer-banner {
  max-height: 0;
  opacity: 0;
  border-bottom-color: transparent;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem var(--spacing-md);
  gap: var(--spacing-md);
  min-height: 3.85rem;
  transition:
    min-height var(--transition-base),
    padding var(--transition-base);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0.25rem 0;
}

.logo-image {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
  transition: height var(--transition-base);
}

@media (max-width: 767px) {
  .logo-image {
    height: 2rem;
  }
}

.header.scrolled .nav {
  min-height: 3.55rem;
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
}

.header.scrolled .logo-image {
  height: 2.18rem;
}

@media (max-width: 767px) {
  .header.scrolled .logo-image {
    height: 1.9rem;
  }
}

.nav-links {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.nav-links .nav-link {
  --nav-accent: var(--primary);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  min-height: 2.45rem;
  padding: 0 0.72rem;
  border-radius: 0.72rem;
  font-size: 0.8125rem;
  font-weight: 760;
  color: var(--gray-600);
  text-decoration: none;
  white-space: nowrap;
  transition:
    background var(--transition-base),
    box-shadow var(--transition-base),
    color var(--transition-base),
    transform var(--transition-base);
}

.nav-links .nav-link::after {
  display: none;
}

.nav-links .nav-link:hover,
.nav-links .nav-link:focus-visible,
.nav-links .nav-link:active {
  background: transparent;
  color: var(--gray-900);
  box-shadow: none;
  outline: none;
  transform: none;
}

.nav-links .nav-link-icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 0.55rem;
  color: var(--nav-accent);
  background: color-mix(in srgb, var(--nav-accent) 11%, white);
  flex: 0 0 auto;
  transition:
    background var(--transition-base),
    color var(--transition-base),
    transform var(--transition-base);
}

.nav-links .nav-link:hover .nav-link-icon,
.nav-links .nav-link:focus-visible .nav-link-icon,
.nav-links .nav-link:active .nav-link-icon {
  color: var(--nav-accent);
  background: color-mix(in srgb, var(--nav-accent) 11%, white);
  transform: none;
}

.nav-links .nav-link-icon svg {
  width: 0.95rem;
  height: 0.95rem;
}

.nav-link-text {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.nav-link.sl-blue {
  --nav-accent: #2563eb;
}

.nav-link.sl-amber {
  --nav-accent: #d97706;
}

.nav-link.sl-green {
  --nav-accent: #16a34a;
}

.nav-link.sl-cyan {
  --nav-accent: #0891b2;
}

.nav-link.sl-purple {
  --nav-accent: #7c3aed;
}

.nav-link-badge {
  display: grid;
  place-items: center;
  min-width: 1.22rem;
  height: 1.22rem;
  padding: 0 0.34rem;
  border: 2px solid white;
  border-radius: 999px;
  background: var(--nav-accent);
  color: white;
  font-size: 0.64rem;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 8px 16px rgba(8, 145, 178, 0.2);
}

.nav-cta {
  display: none;
}

.nav-cta .btn {
  min-height: 2.95rem;
  padding: 0 1.1rem;
  border-radius: 0.95rem;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(59, 130, 246, 0.24);
}

.nav-cta .btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(59, 130, 246, 0.34);
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  width: 2.75rem;
  height: 2.75rem;
  background: white;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition-base);
}

.mobile-menu-btn:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.mobile-menu-btn span {
  width: 1.125rem;
  height: 2px;
  background: var(--gray-700);
  border-radius: 999px;
  transition: all var(--transition-base);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  height: 100dvh;
  background: rgba(15, 23, 42, 0.42);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: min(88vw, 360px);
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-right: 1px solid var(--gray-200);
  box-shadow: 18px 0 36px rgba(15, 23, 42, 0.14);
  transform: translateX(-105%);
  visibility: hidden;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 320ms cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-sidebar.active {
  transform: translateX(0);
  visibility: visible;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  padding: calc(var(--spacing-lg) + env(safe-area-inset-top)) var(--spacing-lg) var(--spacing-md);
}

.sidebar-logo {
  width: 10.25rem;
  max-width: calc(100% - 4rem);
  height: auto;
  object-fit: contain;
}

.sidebar-close {
  width: 2.625rem;
  height: 2.625rem;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  background: white;
  color: var(--gray-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.sidebar-close:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.sidebar-close span {
  position: absolute;
  width: 1.125rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.sidebar-close span:first-child {
  transform: rotate(45deg);
}

.sidebar-close span:last-child {
  transform: rotate(-45deg);
}

.sidebar-nav {
  display: grid;
  gap: 0.75rem;
  padding: var(--spacing-md) var(--spacing-lg);
}

.sidebar-link {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.875rem;
  min-height: 4.25rem;
  padding: 0.75rem 0.875rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-xl);
  background: white;
  color: var(--gray-800);
  text-decoration: none;
  transition:
    transform var(--transition-base),
    border-color var(--transition-base),
    background var(--transition-base);
}

.sidebar-link-with-badge {
  grid-template-columns: 2.75rem minmax(0, 1fr) auto auto;
}

.sidebar-link:hover,
.sidebar-link:focus-visible {
  transform: translateX(3px);
  border-color: rgba(59, 130, 246, 0.32);
  background: var(--gray-50);
  outline: none;
}

.sidebar-link-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  color: var(--primary);
  background: #dbeafe;
}

.sl-amber .sidebar-link-icon {
  color: #b45309;
  background: #fef3c7;
}

.sl-green .sidebar-link-icon {
  color: #15803d;
  background: #dcfce7;
}

.sl-cyan .sidebar-link-icon {
  color: #0369a1;
  background: #e0f2fe;
}

.sl-purple .sidebar-link-icon {
  color: #6d28d9;
  background: #ede9fe;
}

.sidebar-link-text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.sidebar-link-badge {
  display: inline-grid;
  place-items: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.38rem;
  border-radius: 999px;
  background: #0369a1;
  color: white;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(3, 105, 161, 0.2);
}

.sidebar-link-arrow {
  color: var(--gray-400);
  transition:
    transform var(--transition-base),
    color var(--transition-base);
}

.sidebar-link:hover .sidebar-link-arrow,
.sidebar-link:focus-visible .sidebar-link-arrow {
  color: var(--primary);
  transform: translateX(2px);
}

.sidebar-footer {
  margin-top: auto;
  padding: var(--spacing-md) var(--spacing-lg) calc(var(--spacing-lg) + env(safe-area-inset-bottom));
}

.sidebar-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  width: 100%;
  border-radius: var(--radius-xl);
  background: var(--primary);
  color: white;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.sidebar-cta:hover,
.sidebar-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
  outline: none;
}

.sidebar-tagline {
  margin-top: 0.75rem;
  color: var(--gray-500);
  font-size: 0.8125rem;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 1023px) {
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

@media (min-width: 1024px) {
  .mobile-menu-overlay,
  .mobile-sidebar {
    display: none;
  }
}

@media (min-width: 1024px) {
  .site-header-slot {
    min-height: 4.05rem;
  }

  .site-header-slot-home {
    min-height: 6.5rem;
  }

  .nav {
    gap: 0.9rem;
    padding: 0.7rem var(--spacing-lg);
    min-height: 4.05rem;
  }

  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: block;
  }

  .mobile-menu-btn {
    display: none;
  }
}

@media (min-width: 1180px) {
  .nav {
    gap: 1.15rem;
  }

  .nav-links {
    gap: 0.2rem;
  }

  .nav-links .nav-link {
    padding: 0 0.82rem;
    font-size: 0.85rem;
  }

  .nav-links .nav-link-icon {
    display: inline-flex;
  }
}

@media (min-width: 1280px) {
  .nav {
    gap: var(--spacing-md);
  }

  .nav-links .nav-link {
    padding: 0 0.95rem;
    font-size: 0.9rem;
  }
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
  padding: var(--spacing-2xl) 0;
  background: #ffffff;
  overflow: hidden;
  border-bottom: 1px solid var(--gray-200);
}

@media (min-width: 768px) {
  .hero {
    padding: var(--spacing-3xl) 0;
  }
}

.hero-content {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto var(--spacing-2xl);
}

.hero-badge {
  display: none;
}

.hero-offer-strip {
  display: inline-grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  width: min(100%, 48rem);
  margin: 0 auto var(--spacing-xl);
  padding: 0.75rem;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
}

.hero-offer-strip div {
  min-width: 0;
  padding: 0.85rem 0.75rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border: 1px solid var(--gray-100);
}

.hero-offer-strip strong {
  display: block;
  color: var(--gray-900);
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1.2;
}

.hero-offer-strip span {
  display: block;
  margin-top: 0.25rem;
  color: var(--gray-600);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.25;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.035em;
  color: var(--gray-900);
}

.hero-title-mobile {
  display: block;
}

.hero-title-desktop {
  display: none;
}

@media (min-width: 480px) {
  .hero-title-mobile {
    display: none;
  }
  .hero-title-desktop {
    display: block;
  }
}

.gradient-text {
  color: var(--primary-dark);
  -webkit-text-fill-color: var(--primary-dark);
  text-decoration: underline;
  text-decoration-color: rgba(37, 99, 235, 0.35);
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 5rem;
  }
}

.hero-description {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: var(--spacing-xl);
  line-height: 1.7;
}

.hero-cta-pdf {
  display: none !important;
}

@media (min-width: 480px) {
  .hero-cta-pdf {
    display: inline-flex !important;
  }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-xl);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-2xl);
}

.stat {
  text-align: center;
  transition: all var(--transition-slow);
  padding: var(--spacing-sm);
  border-radius: var(--radius-md);
}

.stat:hover {
  background: rgba(59, 130, 246, 0.05);
  transform: translateY(-4px);
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: all var(--transition-slow);
}

.stat:hover .stat-value {
  transform: scale(1.1);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.hero-visual {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0;
}

/* ── Real screenshots ── */
.ss-screenshot-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0 0 10px 10px;
}

.phone-screenshot-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}

/* ── Hero Devices layout ── */
.hero-devices {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: center;
  gap: 2.5rem;
}

/* ── Desktop screenshot ── */
.app-screenshot {
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.06),
    0 20px 48px rgba(0, 0, 0, 0.12);
  background: #f0f2f5;
}

/* ── iPhone 17-style mockup ── */
.hero-phone-wrap {
  z-index: 2;
  align-self: center;
  justify-self: center;
  width: 100%;
  max-width: 220px;
}

.iphone-mockup {
  position: relative;
  width: 100%;
  padding: 6px;
  border: 1px solid rgba(70, 74, 81, 0.9);
  border-radius: 52px;
  background:
    linear-gradient(105deg, #777b82 0%, #d8dadd 11%, #7a7e85 23%, #f0f1f2 48%, #73777e 74%, #c9ccd0 90%, #656970 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.7) inset,
    0 0 0 2px rgba(13, 16, 21, 0.8),
    0 34px 72px rgba(15, 23, 42, 0.28),
    0 12px 26px rgba(15, 23, 42, 0.2);
  isolation: isolate;
}

.iphone-screen {
  position: relative;
  overflow: hidden;
  border: 2px solid #050607;
  border-radius: 45px;
  padding: 40px 0 14px;
  background: #ffffff;
  line-height: 0;
  transform: translateZ(0);
}

.iphone-island {
  position: absolute;
  z-index: 3;
  top: 10px;
  left: 50%;
  width: 80px;
  height: 23px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #020203;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 2px 5px rgba(0, 0, 0, 0.28);
}

.iphone-island-camera {
  position: absolute;
  top: 7px;
  right: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 36%, #26345f 0 14%, #0b1020 28%, #010204 72%);
  box-shadow: 0 0 2px rgba(74, 105, 180, 0.65) inset;
}

.iphone-side-button {
  position: absolute;
  z-index: -1;
  width: 4px;
  border: 1px solid rgba(63, 67, 73, 0.9);
  background: linear-gradient(90deg, #555960, #c2c5c9 55%, #62666d);
  box-shadow: 0 1px 1px rgba(255, 255, 255, 0.45) inset;
}

.iphone-action-button {
  top: 92px;
  left: -5px;
  height: 30px;
  border-radius: 3px 0 0 3px;
}

.iphone-volume-up {
  top: 145px;
  left: -5px;
  height: 48px;
  border-radius: 3px 0 0 3px;
}

.iphone-volume-down {
  top: 205px;
  left: -5px;
  height: 48px;
  border-radius: 3px 0 0 3px;
}

.iphone-power-button {
  top: 164px;
  right: -5px;
  height: 74px;
  border-radius: 0 3px 3px 0;
}

.iphone-screen::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(112deg, rgba(255, 255, 255, 0.09), transparent 17%, transparent 78%, rgba(255, 255, 255, 0.035));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.phone-screenshot-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

@media (max-width: 900px) {
  .hero-devices {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .app-screenshot {
    display: none;
  }
  .hero-phone-wrap {
    display: block;
    max-width: 230px;
    width: 100%;
  }
}

/* Browser chrome */
.ss-chrome {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 12px;
  height: 36px;
  background: #f0f2f5;
  border-bottom: 1px solid #e0e4eb;
}
.ss-chrome-left {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 60px;
}
.ss-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.ss-dot-r {
  background: #ff5f57;
}
.ss-dot-y {
  background: #febc2e;
}
.ss-dot-g {
  background: #28c840;
}
.ss-chrome-url {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 11px;
  color: #6b7280;
  background: #fff;
  border: 1px solid #e0e4eb;
  border-radius: 5px;
  padding: 3px 10px;
  max-width: 320px;
  margin: 0 auto;
}
.ss-chrome-right {
  width: 60px;
}

/* App layout */
.ss-app {
  display: flex;
  height: 480px;
  background: #f4f7fb;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
}

/* Sidebar */
.ss-sidebar {
  width: 160px;
  flex-shrink: 0;
  background: #fff;
  border-right: 1px solid #dde4f0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.ss-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 12px 10px;
  border-bottom: 1px solid #dde4f0;
}
.ss-logo-mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: #2563eb;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ss-logo-label {
  font-size: 12px;
  font-weight: 700;
  color: #111827;
}
.ss-nav {
  flex: 1;
  padding: 6px 6px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  overflow: hidden;
}
.ss-nav-section {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #9aa5be;
  padding: 6px 8px 3px;
  text-transform: uppercase;
  user-select: none;
}
.ss-nav-section:first-child {
  padding-top: 2px;
}
.ss-nav-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 8px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 500;
  color: #4a5568;
  cursor: pointer;
}
.ss-nav-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.ss-nav-label {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ss-nav-sub {
  font-size: 8.5px;
  color: #9aa5be;
  line-height: 1.2;
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ss-nav-active {
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.15);
}
.ss-nav-active .ss-nav-label {
  font-weight: 600;
}
.ss-nav-active .ss-nav-sub {
  color: rgba(37, 99, 235, 0.6);
}
.ss-nav-item:not(.ss-nav-active) {
  border: 1px solid transparent;
}
.ss-sidebar-footer {
  border-top: 1px solid #dde4f0;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ss-user-row {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 8px;
  border-radius: 8px;
}
.ss-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  font-size: 9px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ss-user-info {
  min-width: 0;
}
.ss-user-name {
  font-size: 10px;
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ss-user-role {
  font-size: 9px;
  color: #9aa5be;
  margin-top: 1px;
}
.ss-logout-row {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 11px;
  color: #9aa5be;
  cursor: pointer;
  border: 1px solid transparent;
}
.ss-logout-row:hover {
  background: #fef2f2;
  color: #dc2626;
}

/* Main content */
.ss-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
}
.ss-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #fff;
  border-bottom: 1px solid #dde4f0;
  flex-shrink: 0;
}
.ss-page-title {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
}
.ss-page-sub {
  font-size: 10px;
  color: #9aa5be;
  margin-top: 1px;
}
.ss-topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ss-bell {
  position: relative;
  color: #9aa5be;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.ss-bell-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  border: 1px solid #fff;
}

/* Stat cards */
.ss-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 12px 14px;
  flex-shrink: 0;
}
.ss-stat {
  background: #fff;
  border: 1px solid #dde4f0;
  border-radius: 10px;
  padding: 10px 12px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.ss-stat-icon-wrap {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ss-icon-blue {
  background: #dbeafe;
}
.ss-icon-green {
  background: #dcfce7;
}
.ss-icon-amber {
  background: #fef3c7;
}
.ss-icon-purple {
  background: #ede9fe;
}
.ss-icon-violet {
  background: #ede9fe;
}
.ss-icon-sky {
  background: #e0f2fe;
}

.ss-stat-value {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  color: #111827;
}
.ss-stat-label {
  font-size: 9px;
  color: #9aa5be;
  margin-bottom: 2px;
  white-space: nowrap;
}
.ss-stat-trend {
  font-size: 9px;
  font-weight: 600;
  margin-top: 4px;
}
.ss-trend-up {
  color: #16a34a;
}
.ss-trend-down {
  color: #d97706;
}
.ss-trend-neutral {
  color: #9aa5be;
}

/* Status distribution strip */
.ss-status-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 0 14px 8px;
  flex-shrink: 0;
}
.ss-status-box {
  border-radius: 8px;
  padding: 7px 10px;
  display: flex;
  flex-direction: column;
}
.ss-status-red {
  background: #fef2f2;
  border: 1px solid #fecaca;
}
.ss-status-yellow {
  background: #fefce8;
  border: 1px solid #fde68a;
}
.ss-status-green {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}
.ss-status-count {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
}
.ss-status-red .ss-status-count {
  color: #dc2626;
}
.ss-status-yellow .ss-status-count {
  color: #d97706;
}
.ss-status-green .ss-status-count {
  color: #16a34a;
}
.ss-status-name {
  font-size: 8.5px;
  margin-top: 2px;
  opacity: 0.7;
}
.ss-status-red .ss-status-name {
  color: #dc2626;
}
.ss-status-yellow .ss-status-name {
  color: #d97706;
}
.ss-status-green .ss-status-name {
  color: #16a34a;
}

/* Bottom row */
.ss-bottom-row {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 10px;
  padding: 0 14px 12px;
  min-height: 0;
}

/* Card */
.ss-card {
  background: #fff;
  border: 1px solid #dde4f0;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.ss-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px 8px;
  border-bottom: 1px solid #edf1f9;
  flex-shrink: 0;
}
.ss-card-title {
  font-size: 11px;
  font-weight: 600;
  color: #111827;
}
.ss-card-link {
  font-size: 10px;
  color: #2563eb;
  cursor: pointer;
}

/* Table */
.ss-table {
  flex: 1;
  overflow: hidden;
}
.ss-tr {
  display: grid;
  grid-template-columns: 40px 68px 1fr 70px;
  align-items: center;
  padding: 6px 12px;
  gap: 6px;
  border-bottom: 1px solid #f4f7fb;
  font-size: 10px;
}
.ss-tr:last-child {
  border-bottom: none;
}
.ss-thead {
  background: #f9fafb;
  color: #9aa5be;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.ss-time {
  color: #9aa5be;
  font-size: 10px;
}
.ss-plate {
  font-weight: 600;
  color: #374151;
  font-size: 10px;
  font-family: monospace;
  letter-spacing: 0.02em;
}
.ss-driver {
  color: #4a5568;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 10px;
}
.ss-badge {
  font-size: 9px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 20px;
  white-space: nowrap;
}
.ss-ok {
  background: #dcfce7;
  color: #166534;
}
.ss-warn {
  background: #fef9c3;
  color: #854d0e;
}
.ss-nok {
  background: #fee2e2;
  color: #991b1b;
}

/* Chart */
.ss-chart-card {
  min-width: 0;
}
.ss-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  padding: 10px 12px 2px;
  flex: 1;
  height: 100px;
}
.ss-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  height: 100%;
}
.ss-bar-wrap {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: flex-end;
}
.ss-bar {
  width: 100%;
  background: #bfdbfe;
  border-radius: 3px 3px 0 0;
  transition: height 0.6s ease;
  min-height: 3px;
}
.ss-bar-today {
  background: #2563eb;
}
.ss-bar-future {
  background: #e5e7eb;
}
.ss-bar-label {
  font-size: 8.5px;
  color: #9aa5be;
  text-align: center;
}
.ss-bar-label-today {
  color: #059669;
  font-weight: 700;
}

/* Stacked bar chart */
.ss-bar-stack {
  width: 100%;
  border-radius: 3px 3px 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column-reverse;
}
.ss-seg {
  width: 100%;
}
.ss-seg-ruim {
  background: #ef4444;
}
.ss-seg-reg {
  background: #f59e0b;
}
.ss-seg-bom {
  background: #10b981;
}
.ss-seg-bom-today {
  background: #059669;
}
.ss-chart-legend {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px 8px;
  font-size: 9px;
  color: #9aa5be;
}
.ss-legend-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
}
.ss-legend-blue {
  background: #2563eb;
}
.ss-legend-today {
  color: #2563eb;
  font-weight: 600;
  margin-left: 6px;
}

/* Responsive: hide on very small screens */
@media (max-width: 600px) {
  .ss-app {
    height: 320px;
  }
  .ss-sidebar {
    display: none;
  }
  .ss-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .ss-bottom-row {
    grid-template-columns: 1fr;
  }
  .ss-chart-card {
    display: none;
  }
}

@media (min-width: 768px) {
  .hero {
    padding: var(--spacing-3xl) 0;
  }

  .hero-cta {
    flex-direction: row;
    gap: var(--spacing-md);
  }
}

/* ==========================================
   SECTION STYLES
   ========================================== */

section {
  padding: var(--spacing-2xl) 0;
}

@media (min-width: 768px) {
  section {
    padding: var(--spacing-3xl) 0;
  }
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto var(--spacing-lg);
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-600);
}

.section-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 3rem;
  }
}

/* ==========================================
   PROBLEM SECTION
   ========================================== */

.problem-section {
  background: #fafafa;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.problem-grid {
  display: grid;
  gap: var(--spacing-md);
}

.problem-card {
  padding: var(--spacing-lg);
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.problem-card:hover {
  transform: none;
  border-color: #fca5a5;
  box-shadow: var(--shadow-sm);
  background: white;
}

.problem-icon {
  margin-bottom: 0.75rem;
  display: block;
  line-height: 1;
}

.problem-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  color: var(--gray-900);
}

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

@media (min-width: 768px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .problem-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================
   SOLUTION SECTION
   ========================================== */

.solution-section {
  background: linear-gradient(180deg, white 0%, var(--gray-50) 100%);
}

.solution-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xl);
}

.solution-text {
  max-width: 42rem;
  width: 100%;
}

.lead {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: var(--spacing-xl);
  line-height: 1.7;
}

.solution-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.solution-list li {
  display: flex;
  gap: var(--spacing-md);
  transition: all var(--transition-slow);
  padding: var(--spacing-sm);
  border-radius: var(--radius-md);
}

.solution-list li:hover {
  background: rgba(59, 130, 246, 0.05);
  transform: translateX(8px);
}

.solution-list li svg {
  flex-shrink: 0;
  transition: transform var(--transition-slow);
}

.solution-list li:hover svg {
  transform: scale(1.1) rotate(5deg);
}

.solution-list strong {
  display: block;
  color: var(--gray-900);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.solution-list span {
  display: block;
  color: var(--gray-600);
  font-size: 0.9375rem;
}

.mockup-placeholder {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition-slow);
}

.mockup-placeholder:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.mockup-header {
  padding: var(--spacing-sm);
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}

.mockup-dots {
  display: flex;
  gap: 0.5rem;
}

.mockup-dots span {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--gray-300);
}

.mockup-content {
  padding: var(--spacing-2xl);
}

.mockup-screen {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-weight: 600;
  font-size: 1.125rem;
}

/* ==========================================
   PLATFORM PREVIEW
   ========================================== */

.platform-preview {
  margin-top: var(--spacing-3xl);
  padding-top: var(--spacing-2xl);
  border-top: 1px solid var(--gray-100);
}

.platform-preview-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.platform-preview-header h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.625rem;
}

.platform-preview-header p {
  color: var(--gray-500);
  font-size: 1.0625rem;
  max-width: 30rem;
  margin: 0 auto;
  line-height: 1.6;
}

.platform-preview-grid {
  display: grid;
  gap: var(--spacing-xl);
}

@media (min-width: 1024px) {
  .platform-preview-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* ── Platform Screenshot Showcase ── */
.platform-showcase {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.platform-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.platform-tab {
  appearance: none;
  border: 1px solid var(--gray-200);
  background: white;
  color: var(--gray-600);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full, 9999px);
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}

.platform-tab:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
}

.platform-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.platform-showcase-frame {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.06),
    0 20px 48px rgba(0, 0, 0, 0.12);
  background: #f0f2f5;
}

.platform-showcase-img {
  display: none;
  width: 100%;
  height: auto;
}

.platform-showcase-img.active {
  display: block;
}

.preview-card {
  background: white;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-200);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 20px 40px -8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition:
    transform var(--transition-slow),
    box-shadow var(--transition-slow);
}

.preview-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 32px 64px -12px rgba(0, 0, 0, 0.15);
}

.preview-card-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--gray-100);
  background: white;
}

.preview-card-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.preview-card-icon--web {
  background: #dbeafe;
}
.preview-card-icon--mobile {
  background: #ede9fe;
}

.preview-card-label strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-900);
}

.preview-card-label > div > span {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.preview-platform-tag {
  margin-left: auto;
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.preview-platform-tag--web {
  background: #dbeafe;
  color: #1d4ed8;
}

.preview-platform-tag--mobile {
  background: #ede9fe;
  color: #6d28d9;
}

/* ---- Browser chrome ---- */
.browser-mockup {
  overflow: hidden;
}

.browser-chrome {
  background: #e2e5ea;
  padding: 0.5625rem 0.875rem;
  border-bottom: 1px solid #d0d3d9;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.browser-chrome-dots {
  display: flex;
  gap: 0.3125rem;
  flex-shrink: 0;
}

.browser-chrome-dots span {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
}

.browser-chrome-dots span:nth-child(1) {
  background: #ff5f57;
}
.browser-chrome-dots span:nth-child(2) {
  background: #febc2e;
}
.browser-chrome-dots span:nth-child(3) {
  background: #28c840;
}

.browser-chrome-url {
  flex: 1;
  background: white;
  border: 1px solid #c8cdd5;
  border-radius: 100px;
  padding: 0.1875rem 0.875rem;
  font-size: 0.5625rem;
  color: var(--gray-500);
  text-align: center;
}

/* ---- Dashboard ---- */
.dashboard-body {
  display: flex;
  height: 292px;
}

.dashboard-sidebar {
  width: 92px;
  background: #0f172a;
  padding: 0.875rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  flex-shrink: 0;
}

.dash-logo-mini {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 8px;
  margin: 0 auto 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.6875rem;
  font-weight: 800;
  box-shadow: 0 4px 8px rgba(37, 99, 235, 0.4);
}

.dash-nav-item {
  padding: 0.4375rem 0.5625rem;
  color: #475569;
  font-size: 0.5rem;
  border-radius: 0.375rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  gap: 0.3125rem;
}

.dash-nav-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
  opacity: 0.5;
}

.dash-active {
  background: rgba(59, 130, 246, 0.18);
  color: #93c5fd;
  font-weight: 600;
}

.dash-active .dash-nav-dot {
  background: #3b82f6;
  opacity: 1;
}

.dashboard-main {
  flex: 1;
  background: #f1f5f9;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dash-topbar {
  padding: 0.625rem 0.75rem 0.375rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-page-title {
  font-size: 0.5625rem;
  font-weight: 800;
  color: var(--gray-800);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dash-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  color: white;
  font-size: 0.375rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(59, 130, 246, 0.35);
}

.dash-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.3125rem;
  padding: 0 0.625rem 0.5rem;
}

.dash-stat-card {
  background: white;
  border-radius: 0.375rem;
  padding: 0.4375rem 0.25rem;
  border: 1px solid var(--gray-200);
  border-top-width: 2.5px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.dash-stat-blue {
  border-top-color: #3b82f6;
}
.dash-stat-green {
  border-top-color: #22c55e;
}
.dash-stat-yellow {
  border-top-color: #f59e0b;
}
.dash-stat-purple {
  border-top-color: #8b5cf6;
}

.dash-stat-blue .dash-stat-number {
  color: #2563eb;
}
.dash-stat-green .dash-stat-number {
  color: #16a34a;
}
.dash-stat-yellow.dash-stat-card .dash-stat-number {
  color: #d97706;
}
.dash-stat-purple .dash-stat-number {
  color: #7c3aed;
}

.dash-stat-number {
  font-size: 1.0625rem;
  font-weight: 800;
  line-height: 1;
}

.dash-stat-desc {
  font-size: 0.4rem;
  color: var(--gray-400);
  margin-top: 0.125rem;
  line-height: 1.25;
}

.dash-list-card {
  background: white;
  border-radius: 0.375rem;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  margin: 0 0.625rem 0.625rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.dash-list-header {
  padding: 0.375rem 0.625rem;
  font-size: 0.5rem;
  font-weight: 700;
  color: var(--gray-700);
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dash-see-all {
  font-size: 0.4375rem;
  color: var(--primary);
  font-weight: 600;
}

.dash-list-row {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  padding: 0.3125rem 0.625rem;
  border-bottom: 1px solid var(--gray-50);
  font-size: 0.4375rem;
  transition: background var(--transition-fast);
}

.dash-list-row:last-child {
  border-bottom: none;
}
.dash-list-row:hover {
  background: var(--gray-50);
}

.dash-time {
  color: var(--gray-400);
  font-size: 0.4rem;
  width: 22px;
  flex-shrink: 0;
}

.dash-plate-badge {
  font-weight: 700;
  color: var(--gray-800);
  font-family: monospace;
  font-size: 0.4375rem;
  flex-shrink: 0;
  background: var(--gray-100);
  padding: 0.0625rem 0.25rem;
  border-radius: 3px;
  border: 1px solid var(--gray-200);
}

.dash-driver-name {
  flex: 1;
  color: var(--gray-600);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-status-badge {
  padding: 0.09375rem 0.3125rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.4rem;
  flex-shrink: 0;
}

.dash-ok {
  background: #dcfce7;
  color: #15803d;
}
.dash-warn {
  background: #fef9c3;
  color: #b45309;
}

/* ---- Phone frame ---- */
.phone-preview-wrapper {
  display: flex;
  justify-content: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(160deg, #f0f4ff 0%, #f5f0ff 100%);
}

/* ==========================================
   FEATURES SECTION
   ========================================== */

.features-section {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.features-grid {
  display: grid;
  gap: var(--spacing-lg);
}

.feature-card {
  padding: var(--spacing-xl);
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
  transition: left var(--transition-slow);
}

.feature-card:hover {
  border-color: var(--primary);
  transform: none;
  box-shadow: var(--shadow-sm);
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover .feature-icon {
  transform: none;
}

.feature-icon {
  margin-bottom: var(--spacing-md);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--gray-900);
}

.feature-card p {
  color: var(--gray-600);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================
   JOBS SECTION
   ========================================== */

.page-main.careers-page-main {
  background: #ffffff;
}

.careers-page-main .page-hero {
  background: #ffffff;
}

.jobs-home-cta-section {
  background: #ffffff;
  border-top: 1px solid var(--gray-200);
}

.jobs-home-cta-card {
  display: grid;
  gap: var(--spacing-lg);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: var(--radius-2xl);
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.jobs-home-cta-card h2 {
  max-width: 42rem;
  margin-bottom: var(--spacing-sm);
  color: var(--gray-900);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.jobs-home-cta-card p {
  max-width: 48rem;
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.7;
}

.jobs-home-cta-card .btn {
  justify-self: start;
}

.jobs-section {
  background: #f8fafc;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.jobs-heading {
  display: grid;
  gap: var(--spacing-lg);
  align-items: end;
  margin-bottom: var(--spacing-lg);
}

.jobs-eyebrow,
.job-form-note {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: var(--spacing-sm);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #dbeafe;
  color: var(--primary-darker);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.jobs-heading h2 {
  max-width: 52rem;
  color: var(--gray-900);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: var(--spacing-md);
}

.jobs-heading p {
  max-width: 44rem;
  color: var(--gray-600);
  font-size: 1.125rem;
  line-height: 1.75;
}

.jobs-count-card {
  display: grid;
  justify-items: start;
  width: min(100%, 16rem);
  padding: var(--spacing-lg);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: var(--radius-2xl);
  background: white;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.08);
}

.jobs-count-card strong {
  color: var(--primary-dark);
  font-size: 4rem;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.jobs-count-card span {
  margin-top: 0.5rem;
  color: var(--gray-600);
  font-weight: 800;
}

.jobs-grid {
  display: grid;
  gap: var(--spacing-md);
}

.job-card {
  min-height: 18.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: var(--spacing-lg);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

.job-card:hover,
.job-card:focus-visible {
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
  transform: translateY(-3px);
  outline: none;
}

.job-area,
.job-detail-area {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.job-area-sales {
  background: #dcfce7;
  color: #166534;
}

.job-area-marketing {
  background: #fef3c7;
  color: #92400e;
}

.job-area-tech {
  background: #dbeafe;
  color: #1d4ed8;
}

.job-card h3 {
  margin-top: var(--spacing-md);
  margin-bottom: 0.6rem;
  color: var(--gray-900);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.25;
}

.job-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.65;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: var(--spacing-md);
}

.job-meta span {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 0.75rem;
  font-weight: 750;
}

.job-card-action {
  margin-top: var(--spacing-md);
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 850;
}

.job-page-section {
  background: #f8fafc;
  border-top: 1px solid var(--gray-200);
}

.job-back-link {
  display: inline-flex;
  margin-bottom: var(--spacing-md);
  color: var(--primary-dark);
  font-weight: 800;
  text-decoration: none;
}

.job-back-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.job-page-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: 28px;
  background: white;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.12);
}

.job-detail-description {
  padding: clamp(2rem, 4vw, 3.25rem);
  background: #0f172a;
  color: white;
}

.job-detail-description h1,
.job-detail-description h2 {
  margin: var(--spacing-md) 0 var(--spacing-sm);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.job-detail-description > p {
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.75;
}

.job-detail-area {
  background: rgba(255, 255, 255, 0.14);
  color: white;
}

.job-detail-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: var(--spacing-xl) 0;
}

.job-detail-meta div {
  padding: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
}

.job-detail-meta dt {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.job-detail-meta dd {
  margin-top: 0.25rem;
  color: white;
  font-weight: 800;
}

.job-detail-block {
  margin-top: var(--spacing-lg);
}

.job-detail-block h2,
.job-detail-block h3 {
  margin-bottom: 0.75rem;
  color: white;
  font-size: 1rem;
}

.job-detail-block ul {
  display: grid;
  gap: 0.65rem;
  padding-left: 1.2rem;
  color: rgba(255, 255, 255, 0.82);
}

.job-application-form {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  overflow-y: auto;
  background: #ffffff;
}

.job-application-form h2,
.job-application-form h3 {
  color: var(--gray-900);
  font-size: 1.65rem;
  line-height: 1.15;
}

.job-application-form p {
  margin-top: 0.35rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.job-application-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--gray-800);
  font-size: 0.9rem;
  font-weight: 750;
}

.job-application-form input,
.job-application-form textarea {
  width: 100%;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  background: var(--gray-50);
  color: var(--gray-900);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 0.8rem 0.9rem;
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    background var(--transition-base);
}

.job-application-form input:focus,
.job-application-form textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
  outline: none;
}

.job-application-form textarea {
  resize: vertical;
}

.job-consent {
  grid-template-columns: auto 1fr !important;
  align-items: flex-start;
  gap: 0.65rem !important;
  color: var(--gray-600) !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  line-height: 1.5;
}

.job-consent input {
  width: auto;
  margin-top: 0.2rem;
}

.job-consent a {
  color: var(--primary-dark);
  font-weight: 750;
}

.job-form-feedback {
  min-height: 1.25rem;
  color: var(--primary-dark) !important;
  font-size: 0.85rem;
  font-weight: 750;
}

@media (min-width: 768px) {
  .jobs-home-cta-card {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .jobs-heading {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .jobs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  .jobs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .jobs-count-card {
    width: 100%;
  }

  .job-card {
    min-height: auto;
  }

  .jobs-home-cta-card .btn {
    width: 100%;
  }

  .job-page-card {
    display: block;
    border-radius: 22px;
  }

  .job-detail-meta {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   BENEFITS SECTION
   ========================================== */

.benefits-section {
  background: var(--gray-50);
}

.benefits-grid {
  display: grid;
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.benefit-card {
  padding: var(--spacing-xl) var(--spacing-lg);
  background: white;
  text-align: left;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  transition: background var(--transition-fast);
}

.benefit-card::after {
  display: none;
}

.benefit-card:hover {
  transform: none;
  box-shadow: none;
  background: var(--gray-50);
}

.benefit-card:hover .benefit-stat {
  transform: none;
}

.benefit-stat {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gray-900);
  background: none;
  -webkit-text-fill-color: var(--gray-900);
  line-height: 1;
  margin-bottom: 0.75rem;
  display: block;
  border-left: 4px solid var(--primary);
  padding-left: 0.75rem;
}

.benefit-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.benefit-card p {
  color: var(--gray-600);
  line-height: 1.55;
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefit-card:nth-child(odd) {
    border-right: 1px solid var(--gray-200);
  }
  .benefit-card:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .benefit-card {
    border-bottom: none;
    border-right: 1px solid var(--gray-200);
  }
  .benefit-card:last-child {
    border-right: none;
  }
  .benefit-card:nth-child(odd) {
    border-right: 1px solid var(--gray-200);
  }
  .benefit-card:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */

/* ==========================================
   ORIGIN STORY SECTION
   ========================================== */

.origin-section {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.origin-layout {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .origin-layout {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}

/* Story card */
.origin-story {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.origin-badge {
  display: inline-flex;
  align-self: flex-start;
  background: #eff6ff;
  color: var(--primary);
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.origin-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.3;
  margin: 0;
}

.origin-text {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin: 0;
}

.origin-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: var(--spacing-sm);
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--gray-100);
}

.origin-author-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--primary-dark);
  color: white;
  font-size: 0.8125rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.origin-author-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gray-900);
}

.origin-author-role {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 2px;
}

/* Reasons */
.origin-reasons {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.origin-reason {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--spacing-lg);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}

.origin-reason-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.origin-reason-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 0.375rem 0;
}

.origin-reason-text {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--gray-500);
  margin: 0;
}

.origin-quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--primary);
  border-left: 3px solid var(--primary);
  padding-left: 1rem;
  margin: 0.25rem 0;
  line-height: 1.6;
}

/* ==========================================
   ANTIFRAUDE / MECÂNICO SECTIONS
   ========================================== */

.antifraude-section,
.mecanico-section {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

.antifraude-section .solution-content,
.mecanico-section .solution-content {
  max-width: 700px;
}

/* Combined proof + mecânico section */
.proof-mecanico-section {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  padding: var(--spacing-3xl) 0;
}

.proof-mecanico-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.proof-mecanico-col {
  max-width: 100%;
}

.proof-mecanico-col h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gray-900);
  margin: 0.5rem 0 0.75rem;
  letter-spacing: -0.02em;
}

.proof-mecanico-divider {
  display: none;
  width: 100%;
  height: 1px;
  background: var(--gray-200);
  margin: 0;
}

@media (max-width: 768px) {
  .proof-mecanico-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .proof-mecanico-col {
    padding: 2rem 0;
  }
  .proof-mecanico-col:not(:last-child) {
    border-bottom: 1px solid var(--gray-200);
  }
  .proof-mecanico-divider {
    display: block;
  }
}

/* ==========================================
   HOW IT WORKS SECTION
   ========================================== */

.how-it-works-section {
  background: var(--gray-50);
  position: relative;
}

.steps-grid {
  display: grid;
  gap: 0;
  position: relative;
}

/* Connection line between steps (desktop only) */
@media (min-width: 1024px) {
  .steps-grid::before {
    display: none;
    content: "";
    position: absolute;
    top: 80px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    opacity: 0.2;
    z-index: 0;
  }
}

.step-card {
  position: relative;
  padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-lg);
  padding-top: var(--spacing-xl);
  background: white;
  border: none;
  border-top: 3px solid var(--gray-200);
  border-radius: 0;
  text-align: left;
  transition: border-color var(--transition-fast);
  z-index: 1;
}

.step-card:hover {
  border-top-color: var(--primary);
  transform: none;
  box-shadow: none;
}

.step-card:hover .step-number {
  transform: none;
  transition: none;
  color: var(--primary-dark);
}

.step-card:hover .step-icon svg {
  transform: none;
}

.step-number {
  position: static;
  transform: none;
  width: auto;
  height: auto;
  background: none;
  color: var(--primary);
  border-radius: 0;
  display: block;
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: none;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}

.step-icon {
  display: none;
}

.step-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--gray-600);
  line-height: 1.65;
  font-size: 0.9375rem;
}

@media (min-width: 640px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .step-card:nth-child(odd) {
    border-right: 1px solid var(--gray-200);
  }
  .step-card:nth-child(n + 3) {
    border-top: 3px solid var(--gray-200);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .step-card {
    border-top: 3px solid var(--gray-200);
    border-right: 1px solid var(--gray-200);
  }
  .step-card:last-child {
    border-right: none;
  }
  .step-card:nth-child(odd) {
    border-right: 1px solid var(--gray-200);
  }
  .step-card:nth-child(n + 3) {
    border-top: 3px solid var(--gray-200);
  }
  .step-card:hover {
    border-top-color: var(--primary);
    border-right-color: var(--gray-200);
  }
}

/* ==========================================
   APP DOWNLOAD SECTION
   ========================================== */

.app-download-section {
  background: linear-gradient(180deg, var(--gray-50) 0%, white 100%);
  border-top: 1px solid var(--gray-200);
}

.app-download-grid {
  display: grid;
  gap: var(--spacing-2xl);
  align-items: center;
}

.app-download-text .lead {
  margin-bottom: var(--spacing-lg);
}

.app-download-text .solution-list {
  margin-bottom: var(--spacing-xl);
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1.1rem;
  background: #000;
  color: white;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-slow);
}

.store-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: #1a1a1a;
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-badge-text small {
  font-size: 0.6875rem;
  font-weight: 500;
  opacity: 0.85;
}

.store-badge-text strong {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.app-download-visual {
  display: flex;
  justify-content: center;
}

.app-download-phone {
  max-width: 240px;
  width: 100%;
}

@media (min-width: 900px) {
  .app-download-grid {
    grid-template-columns: 1fr 320px;
  }
  .app-download-visual {
    justify-content: flex-end;
  }
}

/* ==========================================
   PRICING SECTION
   ========================================== */

.pricing-section {
  background: white;
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  z-index: 0;
}

.pricing-single {
  max-width: 56rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-card-single {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
}

.pricing-header-section {
  padding: var(--spacing-2xl) var(--spacing-xl);
  text-align: center;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  position: relative;
}

.pricing-header-section::before {
  display: none;
}

.pricing-icon-circle {
  width: 4rem;
  height: 4rem;
  background: white;
  border-radius: 20%;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
}

.pricing-icon-image {
  width: 85%;
  height: 85%;
  object-fit: contain;
}

.pricing-card-single h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: var(--spacing-sm);
  position: relative;
}

.pricing-description {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.65;
  max-width: 42rem;
  margin: 0 auto;
  position: relative;
}

.pricing-content {
  background: white;
  padding: var(--spacing-2xl) var(--spacing-xl);
}

.trial-offer-card {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  padding: var(--spacing-xl);
  border: 2px solid var(--gray-200);
  border-left: 5px solid var(--primary);
  border-radius: var(--radius-xl);
  background: var(--gray-50);
  box-shadow: none;
}

.trial-offer-eyebrow {
  display: inline-flex;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.trial-offer-card h4 {
  margin-bottom: 0.5rem;
  color: var(--gray-900);
  font-size: 1.5rem;
  font-weight: 800;
}

.trial-offer-card p {
  color: var(--gray-700);
  line-height: 1.7;
}

.trial-offer-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.trial-offer-terms span {
  display: inline-flex;
  align-items: center;
  min-height: 1.85rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(21, 128, 61, 0.16);
  color: #166534;
  font-size: 0.78rem;
  font-weight: 750;
}

.offer-availability {
  margin-top: 1rem;
  padding: 0.85rem;
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.92);
  color: #ffffff;
}

.offer-availability-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.offer-availability-head strong {
  font-size: 0.9rem;
  font-weight: 850;
}

.offer-availability-head span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.offer-availability-meter {
  height: 0.55rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.offer-availability-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #22c55e 0%, #3b82f6 100%);
}

.trial-offer-metric {
  min-width: 10rem;
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid #bbf7d0;
  text-align: center;
}

.trial-offer-metric strong {
  display: block;
  color: #15803d;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.trial-offer-metric span {
  display: block;
  margin-top: 0.375rem;
  color: var(--gray-600);
  font-size: 0.875rem;
  font-weight: 700;
}

.benefits-list {
  display: grid;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xl);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0;
  background: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--gray-100);
  transition: none;
  position: relative;
  overflow: visible;
}

.benefit-item::before {
  display: none;
}

.benefit-item:hover {
  background: transparent;
  border-color: transparent;
  transform: none;
  box-shadow: none;
}

.benefit-item:hover::before {
  transform: none;
}

.benefit-item svg {
  flex-shrink: 0;
}

.benefit-item span {
  font-size: 0.9375rem;
  color: var(--gray-700);
  font-weight: 500;
  line-height: 1.5;
}

.pricing-cta {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 2px solid var(--gray-100);
}

.pricing-cta .btn {
  width: 100%;
  justify-content: center;
  font-size: 1.125rem;
  padding: 1.25rem 2rem;
  margin-bottom: var(--spacing-md);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.pricing-cta .btn:hover {
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.pricing-note-small {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
  padding: var(--spacing-md);
  background: var(--gray-50);
  border-radius: var(--radius-md);
}

@media (min-width: 640px) {
  .trial-offer-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .benefits-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .pricing-header-section {
    padding: var(--spacing-2xl);
  }

  .pricing-content {
    padding: var(--spacing-2xl);
  }

  .pricing-card-single h3 {
    font-size: 2rem;
  }
}

/* ==========================================
   FAQ SECTION
   ========================================== */

.faq-section {
  background: white;
}

.faq-grid {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.faq-item {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
  background: white;
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  padding: var(--spacing-lg);
  background: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gray-900);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-slow);
  position: relative;
}

.faq-question::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary);
  transform: scaleY(0);
  transition: transform var(--transition-slow);
}

.faq-question:hover {
  color: var(--primary);
  padding-left: calc(var(--spacing-lg) + 8px);
}

.faq-question:hover::before {
  transform: scaleY(1);
}

.faq-item.active .faq-question {
  color: var(--primary);
  padding-left: calc(var(--spacing-lg) + 8px);
}

.faq-item.active .faq-question::before {
  transform: scaleY(1);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height var(--transition-slow),
    opacity var(--transition-slow);
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
}

.faq-answer p {
  padding: 0 var(--spacing-lg) var(--spacing-lg);
  color: var(--gray-600);
  line-height: 1.7;
  animation: fadeIn 0.4s ease-out;
}

/* ==========================================
   CTA SECTION
   ========================================== */

.cta-section {
  background: var(--primary-dark);
  color: white;
  position: relative;
  overflow: hidden;
  border-top: none;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.cta-content > p {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-xl);
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
}

.cta-note {
  font-size: 0.9375rem;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .cta-content h2 {
    font-size: 3rem;
  }

  .cta-buttons {
    flex-direction: row;
  }
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-content {
  display: grid;
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-xl);
}

.footer-brand {
  max-width: 20rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-md);
}

.footer-logo-image {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
}

.footer-brand p {
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: var(--spacing-md);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gray-800);
  border-radius: var(--radius-md);
  color: var(--gray-300);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.footer-social a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary);
  transform: scale(0);
  transition: transform var(--transition-slow);
  border-radius: var(--radius-md);
}

.footer-social a svg {
  position: relative;
  z-index: 1;
  transition: transform var(--transition-slow);
}

.footer-social a:hover {
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.footer-social a:hover::before {
  transform: scale(1);
}

.footer-social a:hover svg {
  transform: rotate(360deg);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
}

.footer-column h4 {
  color: white;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-column a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  padding-top: var(--spacing-xl);
  border-top: 1px solid var(--gray-800);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  align-items: center;
  text-align: center;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1.5fr 2fr;
  }

  .footer-links {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ==========================================
   STATIC CONTENT PAGES
   ========================================== */

.page-main {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 28%);
}

.page-hero {
  padding: var(--spacing-3xl) 0 var(--spacing-2xl);
  border-bottom: 1px solid var(--gray-200);
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--spacing-md);
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary-darker);
  font-size: 0.8125rem;
  font-weight: 700;
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--gray-900);
  margin-bottom: var(--spacing-md);
}

.page-hero p {
  max-width: 760px;
  color: var(--gray-600);
  font-size: 1.125rem;
}

.page-section {
  padding: var(--spacing-2xl) 0;
}

.page-section h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--gray-900);
}

.page-section h3 {
  color: var(--gray-900);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.page-section p,
.page-section li {
  color: var(--gray-600);
}

.content-grid {
  display: grid;
  gap: var(--spacing-md);
}

.content-grid.three {
  grid-template-columns: 1fr;
}

.info-card {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
}

.info-card strong {
  display: block;
  color: var(--gray-900);
  margin-bottom: 0.375rem;
}

.simple-list {
  display: grid;
  gap: var(--spacing-md);
  list-style: none;
}

.simple-list li {
  padding-left: 1.75rem;
  position: relative;
}

.simple-list li::before {
  content: "";
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 999px;
  background: var(--primary);
}

.article-list {
  display: grid;
  gap: var(--spacing-md);
}

.article-link {
  display: block;
  padding: var(--spacing-lg);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: white;
  color: inherit;
  text-decoration: none;
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

.article-link:hover {
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.article-meta {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-darker);
  font-size: 0.8125rem;
  font-weight: 700;
}

.contact-panel {
  display: grid;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  background: var(--gray-900);
  color: white;
  border-radius: var(--radius-lg);
}

.contact-panel p,
.contact-panel a {
  color: var(--gray-200);
}

.contact-panel a:hover {
  color: white;
}

.status-list {
  display: grid;
  gap: var(--spacing-sm);
}

.status-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: white;
}

.status-pill {
  flex-shrink: 0;
  border-radius: 999px;
  padding: 0.25rem 0.625rem;
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  font-size: 0.8125rem;
  font-weight: 700;
}

/* ==========================================
   SLIM HEADER (content / landing pages)
   ========================================== */

.slim-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
}

.slim-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
}

.slim-header-logo {
  height: 28px;
  width: auto;
}

.slim-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  background: var(--primary-dark);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: background var(--transition-fast);
}

.slim-header-cta:hover {
  background: var(--primary-darker);
}

/* ==========================================
   IMPROVED LEAD MODAL
   ========================================== */

/* ==========================================
   LEAD CAPTURE MODAL
   ========================================== */

.lead-dialog {
  position: fixed;
  inset: 0;
  margin: auto;
  width: min(420px, calc(100vw - 2rem));
  max-height: calc(100svh - 2rem);
  padding: 0;
  border: none;
  border-radius: 20px;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.22),
    0 4px 16px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  overflow-y: auto;
}

.lead-dialog::backdrop {
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(5px);
}

/* Close button — overlaid top-right */
.lead-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.15s;
  line-height: 1;
}
.lead-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Blue top hero */
.lead-hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  position: relative;
}
.lead-hero-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
}
.lead-hero h2 {
  color: #fff;
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.375rem;
}
.lead-hero p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9375rem;
  margin: 0;
}

/* White body */
.lead-body {
  background: #fff;
  padding: 1.625rem 1.875rem 1.875rem;
}

/* Social proof pill */
.lead-social-proof {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: #15803d;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.lead-social-proof-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

/* Form */
.lead-form {
  display: grid;
  gap: 1rem;
}
.lead-form label:not(.lead-consent):not(.lead-honeypot) {
  display: grid;
  gap: 0.3rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #374151;
}
.lead-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.lead-form input[type="text"],
.lead-form input[type="email"] {
  width: 100%;
  height: 2.875rem;
  padding: 0 0.875rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font: inherit;
  font-size: 0.9375rem;
  background: #f9fafb;
  transition:
    border-color 0.15s,
    background 0.15s;
}
.lead-form input[type="text"]:focus,
.lead-form input[type="email"]:focus {
  outline: none;
  border-color: #2563eb;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.lead-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.5;
}
.lead-consent input[type="checkbox"] {
  margin-top: 0.15rem;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}
.lead-consent a {
  color: #1d4ed8;
  text-decoration: underline;
}
.lead-form-error {
  min-height: 1rem;
  color: #dc2626 !important;
  font-size: 0.8125rem;
  font-weight: 600;
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* Success state */
.lead-success {
  text-align: center;
  padding: 1rem 0 0.5rem;
}
.lead-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: #dcfce7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  margin: 0 auto 1rem;
}
.lead-success h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.5rem;
}
.lead-success p {
  color: #6b7280;
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

/* Ghost button for dark backgrounds (sticky bar) */
.btn-ghost-dark {
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
}
.btn-ghost-dark:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

/* ==========================================
   CHECKLIST PAGE (modelo-checklist-caminhao)
   ========================================== */

.cklp-hero {
  padding: 3.5rem 0 2.5rem;
  background: #f8fafc;
  border-bottom: 1px solid var(--gray-200);
}

.cklp-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-darker);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.cklp-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--gray-900);
  max-width: 680px;
  margin-bottom: 1rem;
}

.cklp-hero-sub {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cklp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
}

.cklp-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  padding: 1rem 0 0;
}

.cklp-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--gray-500);
  font-weight: 500;
}

.cklp-trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
  flex-shrink: 0;
}

.cklp-section {
  padding: 3rem 0;
}

.cklp-section + .cklp-section {
  border-top: 1px solid var(--gray-100);
}

.cklp-section-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.375rem;
}

.cklp-section-sub {
  color: var(--gray-500);
  font-size: 0.9375rem;
  margin-bottom: 2rem;
}

/* --- Printable checklist card --- */
.printable-checklist-wrap {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.printable-checklist-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 1.5rem;
  background: #1e40af;
  color: #fff;
}

.printable-checklist-header h2 {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0;
  color: #fff;
}

.printable-checklist-header span {
  font-size: 0.75rem;
  opacity: 0.7;
}

.printable-checklist-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.printable-checklist-meta-field {
  background: var(--gray-50);
  padding: 0.75rem 1.25rem;
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.printable-checklist-meta-field strong {
  display: block;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.printable-checklist-meta-field .field-line {
  display: block;
  height: 1.5px;
  background: var(--gray-300);
  border-radius: 1px;
  margin-top: 0.5rem;
  width: 100%;
}

.printable-checklist-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.printable-group {
  padding: 1.125rem 1.5rem;
  border-bottom: 1px solid var(--gray-100);
}

.printable-group:last-child {
  border-bottom: 0;
}

.printable-group h3 {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.printable-group ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.printable-group ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.4;
}

.printable-group ul li::before {
  content: "";
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-top: 0.05rem;
  border: 1.5px solid var(--gray-400);
  border-radius: 3px;
}

.printable-checklist-footer {
  padding: 1rem 1.5rem;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  display: grid;
  gap: 0.5rem;
}

.printable-checklist-sig {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.printable-checklist-sig .field-line {
  flex: 1;
  height: 1.5px;
  background: var(--gray-300);
  border-radius: 1px;
}

/* --- Comparison table --- */
.cklp-comparison {
  display: grid;
  gap: 1rem;
}

.cklp-compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cklp-compare-cell {
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  line-height: 1.4;
  border-right: 1px solid var(--gray-200);
}

.cklp-compare-cell:last-child {
  border-right: 0;
}

.cklp-compare-cell.heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--gray-50);
  color: var(--gray-500);
}

.cklp-compare-cell.label {
  font-weight: 600;
  color: var(--gray-700);
  background: #fff;
}

.cklp-compare-cell.paper {
  background: #fff;
  color: var(--gray-500);
}

.cklp-compare-cell.app {
  background: #eff6ff;
  color: var(--primary-darker);
  font-weight: 600;
}

.cklp-compare-cell .check {
  color: #16a34a;
  font-weight: 700;
}
.cklp-compare-cell .cross {
  color: #dc2626;
}

/* --- Sticky download bar --- */
.cklp-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(8px);
  padding: 0.875rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cklp-sticky-bar.visible {
  transform: translateY(0);
}

.cklp-sticky-bar-text {
  color: #e2e8f0;
  font-size: 0.9375rem;
  font-weight: 600;
}

.cklp-sticky-bar-text em {
  color: #93c5fd;
  font-style: normal;
}

/* --- CTA block at bottom --- */
.cklp-cta-block {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cklp-cta-block h2 {
  font-size: clamp(1.375rem, 3vw, 2rem);
  line-height: 1.2;
  margin: 0;
}

.cklp-cta-block p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  margin: 0;
}

.cklp-cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
}

.cklp-cta-features li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}

.cklp-cta-features li::before {
  content: "✓";
  color: #86efac;
  font-weight: 700;
}

.cklp-footer-note {
  padding: 1.5rem 0;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cklp-footer-note p {
  color: var(--gray-500);
  font-size: 0.8125rem;
}

@media (min-width: 768px) {
  .printable-checklist-groups {
    grid-template-columns: 1fr 1fr;
  }
  .printable-group {
    border-right: 1px solid var(--gray-100);
  }
  .printable-group:nth-child(2n) {
    border-right: 0;
  }
  .cklp-compare-row {
  }
  .cklp-cta-block {
    flex-direction: row;
    align-items: center;
  }
  .cklp-cta-block > div:last-child {
    flex-shrink: 0;
  }
}

@media (max-width: 600px) {
  .cklp-compare-row {
    grid-template-columns: 1fr;
  }
  .cklp-compare-cell.heading:not(:first-child) {
    display: none;
  }
  .cklp-compare-cell {
    border-right: 0;
    border-bottom: 1px solid var(--gray-100);
  }
  .cklp-compare-cell:last-child {
    border-bottom: 0;
  }
  .cklp-sticky-bar {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
  }
  .cklp-sticky-bar-text {
    text-align: center;
  }
  .cklp-sticky-bar .btn {
    width: 100%;
    justify-content: center;
  }
  .printable-checklist-wrap {
    overflow-x: auto;
  }
  .printable-checklist-meta {
    grid-template-columns: 1fr;
  }
  .cklp-hero {
    padding: 2rem 0 1.5rem;
  }
  .cklp-section {
    padding: 2rem 0;
  }
  .cklp-cta-block {
    padding: 1.75rem;
  }
  .lead-body {
    padding: 1.25rem 1.375rem 1.5rem;
  }
  .lead-hero {
    padding: 2rem 1.375rem 1.625rem;
  }
}

/* ==========================================
   LEGAL CONTENT
   ========================================== */

.legal-content {
  max-width: 820px;
}

.legal-content h2 {
  margin-top: var(--spacing-xl);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content ul {
  margin-bottom: var(--spacing-md);
}

.legal-content ul {
  padding-left: 1.25rem;
}

@media (min-width: 768px) {
  .content-grid.two {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-grid.three {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================
   ANIMATIONS
   ========================================== */

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

.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
  opacity: 0;
}

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

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

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

.slide-in-left {
  animation: slideInLeft 0.7s ease-out forwards;
  opacity: 0;
}

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

.slide-in-right {
  animation: slideInRight 0.7s ease-out forwards;
  opacity: 0;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.scale-in {
  animation: scaleIn 0.6s ease-out forwards;
  opacity: 0;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

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

.float-slow {
  animation: floatSlow 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.shimmer {
  animation: shimmer 3s linear infinite;
  background: linear-gradient(
    to right,
    var(--gray-100) 0%,
    var(--gray-200) 20%,
    var(--gray-100) 40%,
    var(--gray-100) 100%
  );
  background-size: 1000px 100%;
}

/* Stagger animations for children */
.stagger-animation > * {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.stagger-animation > *:nth-child(1) {
  animation-delay: 0.1s;
}
.stagger-animation > *:nth-child(2) {
  animation-delay: 0.2s;
}
.stagger-animation > *:nth-child(3) {
  animation-delay: 0.3s;
}
.stagger-animation > *:nth-child(4) {
  animation-delay: 0.4s;
}
.stagger-animation > *:nth-child(5) {
  animation-delay: 0.5s;
}
.stagger-animation > *:nth-child(6) {
  animation-delay: 0.6s;
}

/* ==========================================
   PERFORMANCE OPTIMIZATIONS
   ========================================== */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Hardware acceleration for animations */
.btn,
.pricing-card-single,
.feature-card,
.problem-card,
.benefit-card,
.job-card,
.testimonial-card {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Optimize images (when added) */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Improve font rendering */
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Remove tap highlight on mobile */
* {
  -webkit-tap-highlight-color: transparent;
}

/* Improve scrolling on iOS */
body {
  -webkit-overflow-scrolling: touch;
}

/* Responsive images container */
.video-placeholder,
.mockup-placeholder {
  position: relative;
  overflow: hidden;
}

/* Mobile-first responsive utilities */
@media (max-width: 767px) {
  .top-offer-inner {
    flex-direction: column;
    gap: 0.35rem;
    padding-top: 0.6rem;
    padding-bottom: 0.65rem;
  }

  .top-offer-copy {
    max-width: 20rem;
    font-size: 0.8rem;
  }

  .top-offer-link {
    font-size: 0.78rem;
  }

  /* Typography */
  .hero-title {
    font-size: 2.125rem;
    line-height: 1.1;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  /* Spacing */
  section {
    padding: var(--spacing-lg) 0;
  }

  .hero {
    padding: var(--spacing-xl) 0;
  }

  .hero-offer-strip {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 0.55rem;
    margin-bottom: var(--spacing-lg);
  }

  .hero-offer-strip div {
    padding: 0.75rem;
  }

  .offer-availability-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  /* Cards */
  .problem-card,
  .feature-card,
  .benefit-card,
  .testimonial-card {
    padding: var(--spacing-lg);
  }

  /* Pricing */
  .pricing-header-section {
    padding: var(--spacing-xl) var(--spacing-md);
  }

  .pricing-content {
    padding: var(--spacing-xl) var(--spacing-md);
  }

  .pricing-card-single h3 {
    font-size: 1.75rem;
  }

  .pricing-description {
    font-size: 1rem;
  }

  .benefits-list {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .benefit-item {
    padding: var(--spacing-sm);
  }

  .benefit-item span {
    font-size: 0.9375rem;
  }

  /* Buttons */
  .btn-lg {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  /* Stats */
  .hero-stats {
    gap: var(--spacing-md);
  }

  .stat-value {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.8125rem;
  }

  /* CTA Section */
  .cta-content h2 {
    font-size: 1.875rem;
  }

  .cta-content > p {
    font-size: 1rem;
  }

  /* Hero CTA buttons */
  .hero-cta {
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
  }

  /* Testimonials */
  .testimonial-text {
    font-size: 0.9375rem;
  }
}

/* Small mobile optimization */
@media (max-width: 374px) {
  .container {
    padding: 0 var(--spacing-sm);
  }

  .hero-title {
    font-size: 1.875rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .btn-lg {
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
  }
}

/* ==========================================
   CAREERS — VALUES, FILTERS AND PROCESS
   ========================================== */

.careers-values-section,
.careers-process-section {
  padding: var(--spacing-3xl) 0;
  background: white;
}

.careers-process-section {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

.careers-values-grid,
.careers-process-grid {
  display: grid;
  gap: var(--spacing-md);
}

.careers-value-card {
  padding: var(--spacing-lg);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  background: var(--gray-50);
}

.careers-value-card h3 {
  margin-bottom: 0.5rem;
  color: var(--gray-900);
  font-size: 1.05rem;
  font-weight: 800;
}

.careers-value-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.65;
}

.careers-process-step {
  position: relative;
  padding: var(--spacing-lg);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  background: white;
  box-shadow: var(--shadow-sm);
}

.careers-process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  background: #dbeafe;
  color: var(--primary-dark);
  font-size: 1rem;
  font-weight: 850;
}

.careers-process-step h3 {
  margin-bottom: 0.45rem;
  color: var(--gray-900);
  font-size: 1.02rem;
  font-weight: 800;
}

.careers-process-step p {
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.6;
}

.jobs-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: var(--spacing-lg) 0 var(--spacing-md);
}

.jobs-filter-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  background: white;
  color: var(--gray-700);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 750;
  cursor: pointer;
  transition:
    background var(--transition-base),
    border-color var(--transition-base),
    color var(--transition-base);
}

.jobs-filter-btn:hover {
  border-color: rgba(37, 99, 235, 0.5);
  color: var(--primary-dark);
}

.jobs-filter-btn.is-active {
  border-color: var(--primary-dark);
  background: var(--primary-dark);
  color: white;
}

@media (min-width: 768px) {
  .careers-values-grid,
  .careers-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  .careers-values-grid,
  .careers-process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ==========================================
   JOB PAGE — ABOUT, PERKS AND PROCESS BLOCKS
   ========================================== */

.job-detail-about {
  display: grid;
  gap: 0.85rem;
}

.job-detail-about p {
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.75;
}

.job-detail-steps {
  display: grid;
  gap: 0.85rem;
  padding-left: 0;
  list-style: none;
  counter-reset: job-step;
}

.job-detail-steps li {
  display: grid;
  gap: 0.2rem;
  position: relative;
  padding-left: 2.4rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.6;
  counter-increment: job-step;
}

.job-detail-steps li::before {
  content: counter(job-step);
  position: absolute;
  top: 0.1rem;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  font-size: 0.8rem;
  font-weight: 850;
}

.job-detail-steps strong {
  color: white;
  font-weight: 800;
}

@media (min-width: 768px) {
  .job-page-form {
    position: sticky;
    top: 5.5rem;
    align-self: start;
    max-height: calc(100vh - 6.5rem);
  }
}
