/* ==========================================
   LOCA PRONTO - MODERN DESIGN SYSTEM
   ========================================== */

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

:root {
  /* Brand Colors */
  --primary: #0f172a;
  --primary-light: #1e293b;
  --primary-dark: #020617;
  --accent: #f97316;
  --accent-hover: #ea580c;
  --accent-light: #fed7aa;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Status */
  --success: #10b981;
  --success-light: #d1fae5;
  --success-dark: #047857;
  --error: #ef4444;
  --whatsapp: #25d366;

  /* Accessible contrast colors (WCAG AA 4.5:1+) */
  --accent-contrast: #c2410c;

  /* Spacing */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

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

  /* Transitions */
  --transition: 0.2s ease;
  --transition-slow: 0.3s ease;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

h1 {
  font-size: 2.5rem;
}

section h1,
article h1,
nav h1,
aside h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ==========================================
   CONTAINER
   ========================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease !important;
  will-change: transform;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--white);
  box-shadow: 0 4px 14px -3px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -3px rgba(249, 115, 22, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--gray-200);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: var(--gray-50);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 14px -3px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  background: #1ebc57;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -3px rgba(37, 211, 102, 0.5);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ==========================================
   HEADER
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100;
  border-bottom: 1px solid var(--gray-100);
  height: 72px;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.logo img {
  width: 40px;
  height: 40px;
}

.nav {
  display: none;
}

/* No seu styles.css externo */
@media (min-width: 768px) {
  .nav {
    display: flex !important;
    visibility: visible !important;
    min-width: auto;
  }
}

/* Garante que o container não mude de largura */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
  position: relative;
}

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

.nav-link.client-link {
  color: var(--accent);
  font-weight: 600;
}

.header-cta {
  display: none;
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition-slow);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* Mobile Menu */
.mobile-menu {
  display: block;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 1.5rem;
  border-bottom: 1px solid var(--gray-100);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
  z-index: 99;
  box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.875rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.mobile-nav-link:hover {
  background: var(--gray-50);
}

.mobile-nav-link.highlight {
  color: var(--accent);
  font-weight: 600;
}

.mobile-cta {
  width: 100%;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {

  .nav,
  .header-cta {
    display: flex;
  }

  .mobile-toggle,
  .mobile-menu {
    display: none;
  }
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  /* Remova o padding antigo que causava o shift */
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(249, 115, 22, 0.08), transparent),
    radial-gradient(ellipse 60% 50% at 100% 50%, rgba(249, 115, 22, 0.05), transparent),
    linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  z-index: -1;
}

.hero .container {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

/* Dashboard Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
}

.dashboard-mockup {
  width: 100%;
  max-width: 700px;
  background: var(--primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.mockup-header {
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.mockup-dots span:nth-child(1) {
  background: #ff5f57;
}

.mockup-dots span:nth-child(2) {
  background: #febc2e;
}

.mockup-dots span:nth-child(3) {
  background: #28c840;
}

.mockup-body {
  display: flex;
  min-height: 280px;
}

.mockup-sidebar {
  width: 60px;
  padding: 1rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sidebar-item {
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.sidebar-item.active {
  background: var(--accent);
}

.mockup-main {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.stat-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
}

.stat-icon.blue {
  background: #3b82f6;
}

.stat-icon.green {
  background: #10b981;
}

.stat-icon.orange {
  background: var(--accent);
}

.stat-content {
  flex: 1;
}

.stat-label {
  height: 8px;
  width: 60%;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  margin-bottom: 6px;
}

.stat-value {
  height: 12px;
  width: 80%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.chart-area {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: flex;
  align-items: flex-end;
}

.chart-bars {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  height: 100%;
  align-items: flex-end;
}

.bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--accent), rgba(249, 115, 22, 0.3));
  border-radius: 4px 4px 0 0;
  min-height: 20%;
}

/* Floating Cards */
.hero-decoration {
  display: none;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  animation: float 6s ease-in-out infinite;
}

.floating-card svg {
  color: var(--accent);
}

.card-1 {
  top: 30%;
  left: 5%;
  animation-delay: -2s;
}

.card-2 {
  bottom: 25%;
  right: 5%;
  animation-delay: -4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (min-width: 768px) {
  .hero {
    padding: 10rem 0 6rem;
  }

  .hero-ctas {
    flex-direction: row;
    justify-content: center;
  }

  .hero-decoration {
    display: block;
  }
}

@media (min-width: 1024px) {
  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .hero-content {
    text-align: left;
  }

  .hero-subtitle {
    margin: 0 0 2rem;
  }

  .hero-ctas {
    justify-content: flex-start;
  }
}

/* ==========================================
   SECTIONS COMMON
   ========================================== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.05));
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ==========================================
   PROBLEMS SECTION
   ========================================== */
.problems {
  padding: 6rem 0;
  background: var(--white);
}

.problems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.problem-card {
  padding: 1.75rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease;
  will-change: transform;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-200);
}

.problem-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  color: var(--error);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.problem-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

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

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

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

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features {
  padding: 6rem 0;
  background: var(--gray-50);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.feature-card {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease;
  will-change: transform;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-200);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.6;
}

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

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

/* ==========================================
   PRICING SECTION
   ========================================== */
.pricing {
  padding: 5rem 0;
  background: var(--gray-50);
}

/* Toggle Mensal/Anual */
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--gray-200);
  border: none;
  border-radius: var(--radius-full);
  padding: 4px;
  cursor: pointer;
  position: relative;
}

.toggle-label {
  position: relative;
  z-index: 1;
  padding: 0.4rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-600);
  border-radius: var(--radius-full);
  transition: color 0.2s ease;
  user-select: none;
}

.toggle-label.active {
  color: var(--primary);
}

.toggle-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: var(--white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-toggle.yearly .toggle-slider {
  transform: translateX(100%);
}

.pricing-save-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--success-dark);
  background: var(--success-light);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1280px;
  margin: 0 auto;
}

/* Cards */
.pricing-card {
  position: relative;
  padding: 1.5rem 1.25rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
}

.pricing-card.featured:hover {
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-lg);
}

.pricing-card--custom {
  border-style: dashed;
  border-color: var(--gray-300);
  background: var(--gray-50);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* Header */
.pricing-header {
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-plan-name {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-contrast);
  margin-bottom: 0.5rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.125rem;
}

.pricing-price .currency {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-500);
}

.pricing-price .amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.pricing-price .period {
  font-size: 0.75rem;
  color: var(--gray-600);
}

.pricing-price--custom .amount {
  font-size: 1.25rem;
  color: var(--gray-600);
}

.pricing-per-vehicle {
  margin-top: 0.5rem;
  font-size: 0.6875rem;
  color: var(--gray-500);
  font-weight: 600;
  text-align: center;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(249, 115, 22, 0.04));
  border: 1px solid rgba(249, 115, 22, 0.15);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.625rem;
  display: inline-block;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}

.pricing-per-vehicle .per-vehicle-amount {
  color: var(--accent);
  font-weight: 800;
}

.pricing-annual-note {
  margin-top: 0.25rem;
  font-size: 0.6875rem;
  color: var(--success-dark);
  font-weight: 600;
  text-align: center;
}

/* Features */
.pricing-features {
  flex: 1;
  margin-bottom: 1rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
  padding: 0.25rem 0;
  font-size: 0.75rem;
  color: var(--gray-600);
  line-height: 1.3;
}

.pricing-features li svg {
  flex-shrink: 0;
  color: var(--success);
  width: 14px;
  height: 14px;
  margin-top: 1px;
}

.pricing-features li strong {
  color: var(--gray-800);
}

/* Buttons */
.pricing-card .btn {
  width: 100%;
  padding: 0.625rem 1rem;
  font-size: 0.8125rem;
}

.pricing-card.featured .btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--white);
  border-color: transparent;
}

/* Guarantee */
.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--gray-500);
  text-align: center;
}

.pricing-guarantee svg {
  flex-shrink: 0;
  color: var(--success);
}

/* Responsive */
@media (min-width: 640px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.75rem;
    align-items: stretch;
  }
}

/* ==========================================
   HOW IT WORKS
   ========================================== */
.how-it-works {
  padding: 6rem 0;
  background: var(--gray-50);
}

.steps-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.step-card {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  max-width: 320px;
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

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

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

.step-connector {
  color: var(--gray-300);
  transform: rotate(90deg);
}

@media (min-width: 768px) {
  .steps-grid {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }

  .step-connector {
    transform: none;
  }
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials {
  padding: 6rem 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 50%;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info cite {
  font-style: normal;
  font-weight: 600;
  color: var(--gray-800);
}

.author-info span {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

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

/* ==========================================
   FAQ SECTION
   ========================================== */
.section {
  padding: 6rem 0;
  background: var(--gray-50);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
}

#faq .section-tag {
  display: block;
  text-align: center;
  margin-bottom: 1rem;
}

#faq .section-title {
  margin-bottom: 3rem;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

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

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--gray-500);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 0.95rem;
}

.hero-social-proof {
  margin-top: 16px;
  color: var(--gray-500);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-social-proof::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
}

/* ==========================================
   CTA FINAL
   ========================================== */
.cta-final {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(249, 115, 22, 0.15), transparent),
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(249, 115, 22, 0.1), transparent);
}

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

.cta-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-content>p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  padding: 4rem 0 2rem;
  background: var(--primary-dark);
  color: var(--gray-300);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #cbd5e1;
  font-size: 0.9375rem;
  max-width: 280px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer-col h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: #94a3b8;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: #94a3b8;
}

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

/* ==========================================
   ACCESSIBILITY & UTILITIES
   ========================================== */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
  }
}

/* ==========================================
   SOLUTIONS SECTION
   ========================================== */
.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  border-color: var(--gray-200);
}

/* ==========================================
   SEO PAGE STYLES (shared by commercial pages)
   ========================================== */
.seo-page-content {
  padding-top: 100px;
  padding-bottom: 4rem;
}

.seo-page-content .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.seo-page-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.seo-page-content h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--primary);
  margin: 2.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.seo-page-content h3 {
  font-size: 1.2rem;
  color: var(--gray-800);
  margin: 2rem 0 0.75rem;
  font-weight: 600;
}

.seo-page-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
}

.seo-page-content ul,
.seo-page-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--gray-600);
}

.seo-page-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.seo-hero-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 4rem 1.5rem;
  text-align: center;
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
}

.seo-hero-banner h1 {
  color: var(--white);
}

.seo-hero-banner p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.seo-cta-box {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 3rem 0;
}

.seo-cta-box h2 {
  color: var(--white);
  margin: 0 0 0.75rem;
}

.seo-cta-box p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.seo-cta-box .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.seo-cta-box .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2rem;
  font-size: 0.95rem;
}

.comparison-table th {
  background: var(--primary);
  color: var(--white);
  padding: 0.875rem 1rem;
  text-align: left;
}

.comparison-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.comparison-table tr:nth-child(even) {
  background: var(--gray-50);
}

.comparison-table .check {
  color: var(--success);
  font-weight: bold;
}

.comparison-table .cross {
  color: var(--error);
  font-weight: bold;
}

@media (max-width: 640px) {
  .comparison-table {
    font-size: 0.85rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.5rem 0.625rem;
  }
}

.breadcrumb {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.internal-links {
  background: var(--gray-50);
  padding: 2rem;
  border-radius: var(--radius);
  margin: 2rem 0;
}

.internal-links h3 {
  margin-top: 0;
  color: var(--primary);
}

.internal-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.internal-links li {
  margin-bottom: 0.75rem;
}

.internal-links a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.internal-links a:hover {
  text-decoration: underline;
}

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {

  .header,
  .mobile-menu,
  .cta-final,
  .hero-ctas,
  .hero-decoration {
    display: none;
  }

  .hero {
    padding-top: 2rem;
    min-height: auto;
  }

  body {
    font-size: 12pt;
    color: #000;
  }
}