/* ==========================================
   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;
}

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: fadeIn 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-ghost {
  background: transparent;
  color: var(--gray-700);
}

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

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

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

.btn-block {
  width: 100%;
}

.lead-dialog {
  width: min(36rem, calc(100% - 2rem));
  padding: 0;
  border: 0;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

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

.lead-dialog-card {
  position: relative;
  padding: clamp(1.5rem, 5vw, 2.5rem);
}

.lead-dialog-card h2 {
  margin-bottom: 0.5rem;
  font-size: 1.65rem;
  line-height: 1.2;
}

.lead-dialog-card > div > p {
  color: var(--gray-600);
}

.lead-dialog-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: var(--gray-100);
  color: var(--gray-700);
  cursor: pointer;
  font-size: 1.5rem;
}

.lead-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.lead-form label:not(.lead-consent) {
  display: grid;
  gap: 0.35rem;
  color: var(--gray-800);
  font-size: 0.875rem;
  font-weight: 700;
}

.lead-form input[type="text"] {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  font: inherit;
}

.lead-form input:focus {
  outline: 3px solid rgba(59, 130, 246, 0.18);
  border-color: var(--primary);
}

.lead-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--gray-600);
  font-size: 0.78rem;
  line-height: 1.45;
}

.lead-consent input {
  margin-top: 0.2rem;
}

.lead-form-error {
  min-height: 1.2rem;
  color: var(--error) !important;
  font-size: 0.82rem;
  font-weight: 600;
}

.lead-success {
  display: grid;
  gap: 1rem;
  text-align: center;
}

.cookie-consent {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  width: min(30rem, calc(100% - 2rem));
  padding: 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  background: white;
  box-shadow: var(--shadow-xl);
}

.cookie-consent p {
  margin: 0.35rem 0 0.75rem;
  color: var(--gray-600);
  font-size: 0.8rem;
}

.cookie-consent div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.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
   ========================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.top-offer-banner {
  background: #111827;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-offer-inner {
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  padding: 0.5rem 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.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom-color: var(--gray-300);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-sm) var(--spacing-md);
}

.nav-logo {
  display: flex;
  align-items: center;
}

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

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

.nav-links {
  display: none;
  gap: var(--spacing-lg);
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: color var(--transition-base);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  display: none;
}

.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: absolute;
  top: var(--mobile-menu-top, 0px);
  left: 0;
  right: 0;
  height: var(--mobile-menu-height, 100vh);
  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: absolute;
  top: var(--mobile-menu-top, 0px);
  left: 0;
  z-index: 99;
  width: min(88vw, 360px);
  height: var(--mobile-menu-height, 100vh);
  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 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: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-purple .sidebar-link-icon {
  color: #6d28d9;
  background: #ede9fe;
}

.sidebar-link-text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.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: 767px) {
  .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: 768px) {
  .mobile-menu-overlay,
  .mobile-sidebar {
    display: none;
  }
}

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

  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: block;
  }

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

/* ==========================================
   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.0;
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.035em;
  color: var(--gray-900);
}

.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 {
  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: 1fr 280px;
  align-items: center;
  gap: 2rem;
}

/* ── 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 mockup ── */
.hero-phone-wrap {
  z-index: 2;
  align-self: center;
}

.iphone-mockup {
  border: 9px solid #1d1d1f;
  border-radius: 48px;
  background: #1d1d1f;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 24px 56px rgba(0,0,0,0.32),
    0 6px 16px rgba(0,0,0,0.18);
}

.iphone-top {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1d1d1f;
}

.iphone-island {
  width: 72px;
  height: 20px;
  background: #000;
  border-radius: 12px;
}

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

@media (max-width: 900px) {
  .hero-devices {
    grid-template-columns: 1fr;
  }
  .hero-phone-wrap {
    display: none;
  }
}

/* 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.10);
  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);
  border-left: 4px solid #ef4444;
  transition: border-left-color var(--transition-fast);
}

.problem-card:hover {
  transform: none;
  box-shadow: none;
  border-left-color: #dc2626;
  background: white;
}

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

.problem-icon {
  font-size: 1.75rem;
  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 Video Placeholder ── */
.platform-video-placeholder {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 55%, #0f172a 100%);
  border-radius: var(--radius-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 60px -12px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.platform-video-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(59, 130, 246, 0.10) 0%, transparent 65%);
}

.pvp-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 0 0 14px rgba(59, 130, 246, 0.12), 0 8px 32px rgba(59, 130, 246, 0.4);
  position: relative;
}

.pvp-label {
  color: rgba(255, 255, 255, 0.90);
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
  margin: 0;
}

.pvp-sub {
  color: rgba(255, 255, 255, 0.40);
  font-size: 0.9375rem;
  text-align: center;
  max-width: 30rem;
  line-height: 1.6;
  position: relative;
  margin: 0;
}

.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);
  }
}

/* ==========================================
   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;
}

/* ==========================================
   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);
  }
}

/* ==========================================
   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;
}

.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,
.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;
  }
}
