/* =============================================
   DrFones Flow Hub — Main Stylesheet
   ============================================= */

:root {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(222, 47%, 11%);
  --primary: hsl(217, 91%, 53%);
  --primary-dark: hsl(217, 91%, 45%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(210, 40%, 96%);
  --muted-foreground: hsl(215, 16%, 47%);
  --accent: hsl(160, 84%, 39%);
  --border: hsl(214, 32%, 91%);
  --radius: 1rem;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 25px -5px rgba(37, 99, 235, 0.12);
  --shadow-xl: 0 20px 50px -12px rgba(37, 99, 235, 0.18);
  --gradient-primary: linear-gradient(135deg, hsl(217, 91%, 53%) 0%, hsl(230, 85%, 58%) 100%);
  --gradient-hero: linear-gradient(135deg, hsl(217, 91%, 53%) 0%, hsl(160, 84%, 39%) 100%);
  --container: 80rem;
  --nav-height: 4.95rem;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  overflow-x: hidden;
}

[hidden] {
  display: none !important;
}

body {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* ---- Layout ---- */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

.section-alt {
  background: hsl(210, 40%, 98%);
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.875rem;
}

.section-eyebrow-light {
  color: hsla(217, 91%, 75%, 1);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem 0.375rem 0.625rem;
  background: hsla(217, 91%, 53%, 0.08);
  border: 1px solid hsla(217, 91%, 53%, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.eyebrow-center {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

.text-gradient {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.section-header p {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  padding: 0 2rem;
  height: 3rem;
  font-size: 1rem;
  box-shadow: 0 4px 14px hsla(217, 91%, 53%, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, hsl(217, 91%, 48%) 0%, hsl(230, 85%, 52%) 100%);
  box-shadow: 0 6px 20px hsla(217, 91%, 53%, 0.4);
  transform: translateY(-1px);
}

.btn-primary.btn-lg {
  height: 3.25rem;
  padding: 0 2.5rem;
  font-size: 1rem;
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
  padding: 0 2rem;
  height: 3rem;
  font-size: 1rem;
}

.btn-outline:hover {
  background: var(--secondary);
  border-color: hsl(214, 32%, 85%);
}

.btn-nav {
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  padding: 0 1.5rem;
  height: 2.25rem;
  font-size: 0.875rem;
  box-shadow: 0 2px 8px hsla(217, 91%, 53%, 0.25);
}

.btn-nav:hover {
  background: linear-gradient(135deg, hsl(217, 91%, 48%) 0%, hsl(230, 85%, 52%) 100%);
  box-shadow: 0 4px 12px hsla(217, 91%, 53%, 0.35);
}

.btn-full {
  width: 100%;
}

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

/* ---- Navigation ---- */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.navbar:has(.mobile-menu.open) {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.navbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
}

.navbar-logo img {
  height: 4.125rem;
  max-height: calc(var(--nav-height) - 0.375rem);
  width: auto;
  object-fit: contain;
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.navbar-links a,
.navbar-links button.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color var(--transition);
}

.navbar-links a:hover,
.navbar-links button.nav-link:hover {
  color: var(--foreground);
}

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

.navbar-links a.btn-nav,
.mobile-menu a.btn-nav {
  color: #fff;
  font-weight: 600;
}

.navbar-links a.btn-nav:hover,
.mobile-menu a.btn-nav:hover {
  color: #fff;
}

.menu-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  color: var(--foreground);
}

.menu-toggle svg {
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
}

.menu-toggle .icon-close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}

.menu-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.mobile-menu {
  display: none;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.25rem;
}

.mobile-menu.open {
  display: block;
  max-height: calc(100vh - var(--nav-height));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu a,
.mobile-menu button.nav-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.625rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

.mobile-menu a:hover,
.mobile-menu button.nav-link:hover {
  color: var(--foreground);
}

.mobile-menu .btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.75rem;
  width: 100%;
  height: 2.75rem;
  padding: 0 1.5rem;
  text-align: center;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .navbar-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}

/* ---- Hero ---- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, hsla(217, 91%, 53%, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, hsla(160, 84%, 39%, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #fff 0%, hsl(214, 100%, 98%) 100%);
  z-index: 0;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(hsla(217, 91%, 53%, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, hsla(217, 91%, 53%, 0.03) 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 80%);
}

.hero-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsla(217, 91%, 53%, 0.1), transparent);
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
}

.hero-content h1 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid hsla(214, 32%, 91%, 0.8);
  border-bottom: 1px solid hsla(214, 32%, 91%, 0.8);
  max-width: 28rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.hero-stat-value {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--foreground);
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 2rem;
  background: var(--border);
  flex-shrink: 0;
}

.hero-content .lead {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  line-height: 1.7;
}

.hero-content .sub {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: hsl(215, 16%, 57%);
  max-width: 32rem;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  position: relative;
  padding: 2.5rem 1.5rem 2rem;
}

.hero-image-wrap {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid hsla(214, 32%, 91%, 0.8);
  box-shadow: var(--shadow-xl);
  position: relative;
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px hsla(255, 255%, 255%, 0.1);
  pointer-events: none;
}

.hero-image-wrap img {
  width: 100%;
}

.hero-modules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
  width: 100%;
}

.hero-module {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  transform: none;
  animation: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid hsla(214, 32%, 91%, 0.9);
  border-radius: 0.75rem;
  padding: 0.625rem 0.75rem;
  box-shadow: var(--shadow-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--foreground);
  min-width: 0;
}

.hero-module-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.375rem;
  background: hsla(217, 91%, 53%, 0.1);
  color: var(--primary);
  flex-shrink: 0;
}

.hero-module-icon svg {
  width: 0.875rem;
  height: 0.875rem;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes float-badge-center {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 0;
  }

  .hero-visual {
    padding: 3rem 2.5rem 2.5rem;
  }

  .hero-modules {
    display: block;
    margin-top: 0;
  }

  .hero-module {
    position: absolute;
    box-shadow: var(--shadow-md);
    font-size: 0.75rem;
    padding: 0.625rem 0.875rem;
    white-space: nowrap;
    z-index: 2;
    min-width: auto;
  }

  .hero-module-buyback {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: float-badge-center 4s ease-in-out infinite;
    animation-delay: 0s;
  }

  .hero-module-directory {
    top: 6%;
    left: 0;
    animation: float-badge 4s ease-in-out infinite;
    animation-delay: -0.5s;
  }

  .hero-module-trade {
    top: 6%;
    right: 0;
    animation: float-badge 4s ease-in-out infinite;
    animation-delay: -1s;
  }

  .hero-module-stock {
    top: 40%;
    right: -0.5rem;
    animation: float-badge 4s ease-in-out infinite;
    animation-delay: -1.5s;
  }

  .hero-module-pricing {
    top: 40%;
    left: -0.5rem;
    animation: float-badge 4s ease-in-out infinite;
    animation-delay: -2s;
  }

  .hero-module-tickets {
    bottom: 0;
    left: 0;
    animation: float-badge 4s ease-in-out infinite;
    animation-delay: -2.5s;
  }

  .hero-module-marketplace {
    bottom: 0;
    right: 0;
    animation: float-badge 4s ease-in-out infinite;
    animation-delay: -3s;
  }

  .hero-module-test-wipe {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: float-badge-center 4s ease-in-out infinite;
    animation-delay: -3.5s;
  }
}

/* ---- Cards ---- */

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

.card {
  background: #fff;
  border: 1px solid hsla(214, 32%, 91%, 0.8);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: hsla(217, 91%, 53%, 0.2);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.875rem;
  background: linear-gradient(135deg, hsla(217, 91%, 53%, 0.12) 0%, hsla(217, 91%, 53%, 0.06) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
  transition: transform var(--transition);
}

.card:hover .card-icon {
  transform: scale(1.05);
}

.card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.card h3 {
  font-size: 1.125rem;
  font-weight: 700;
}

.card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}

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

/* ---- Features Grid ---- */

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.feature-card {
  background: #fff;
  border: 1px solid hsla(214, 32%, 91%, 0.8);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: hsla(217, 91%, 53%, 0.25);
  transform: translateY(-3px);
}

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

.feature-card.wide {
  grid-column: span 1;
}

.feature-card-visual {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.feature-card-content {
  padding: 2rem 2rem 1.25rem;
}

.feature-card-image {
  padding: 0;
}

.feature-card-image img {
  width: 100%;
  height: auto;
  display: block;
  border: none;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
}

.feature-card-b2b .feature-card-image {
  padding-bottom: 1.5rem;
}

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

  .feature-card.wide {
    grid-column: span 2;
  }

  .feature-card-visual {
    flex-direction: row;
    align-items: stretch;
  }

  .feature-card-content {
    flex: 0 0 34%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .feature-card-image {
    flex: 1;
    padding: 0;
    display: flex;
    align-items: center;
    min-width: 0;
  }
}

/* ---- Tags / Pills ---- */

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 56rem;
  margin: 0 auto;
}

.tag {
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  background: #fff;
  border: 1px solid hsla(214, 32%, 91%, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), transform 0.2s ease;
  cursor: default;
}

.tag:hover {
  border-color: hsla(217, 91%, 53%, 0.35);
  box-shadow: var(--shadow-md);
  background: hsla(217, 91%, 53%, 0.04);
  color: var(--primary);
  transform: translateY(-2px);
}

.tag-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Workflow ---- */

.workflow {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
}

.workflow-line {
  display: none;
}

.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.workflow-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
}

.workflow-step-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.workflow-step-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsla(217, 91%, 53%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.workflow-step-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.workflow-step-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.workflow-step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 0.25rem;
}

.workflow-step p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}

@media (min-width: 768px) {
  .workflow-line {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: linear-gradient(180deg, hsla(217, 91%, 53%, 0.2), hsla(217, 91%, 53%, 0.4), hsla(217, 91%, 53%, 0.2));
    transform: translateX(-50%);
  }

  .workflow-steps {
    gap: 4rem;
  }

  .workflow-step {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
  }

  .workflow-step::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0.25rem;
    width: 0.875rem;
    height: 0.875rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px hsla(217, 91%, 53%, 0.15), var(--shadow-sm);
    transform: translateX(-50%);
    z-index: 2;
  }

  .workflow-step:nth-child(odd) .workflow-step-content {
    grid-column: 1;
    justify-self: end;
    text-align: right;
    flex-direction: row-reverse;
    padding-right: 3rem;
  }

  .workflow-step:nth-child(even) .workflow-step-content {
    grid-column: 2;
    padding-left: 3rem;
  }

  .workflow-step-icon.mobile-only {
    display: none;
  }

  .workflow-step-icon.desktop-only {
    display: flex;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.5rem;
  }
}

.workflow-step-icon.desktop-only {
  display: none;
}

/* ---- Pricing ---- */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.pricing-card.popular {
  border-color: var(--primary);
  background: linear-gradient(180deg, hsla(217, 91%, 53%, 0.06) 0%, #fff 40%);
  box-shadow: var(--shadow-xl);
  transform: scale(1);
}

.pricing-badge {
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1rem;
  font-weight: 700;
}

.pricing-price {
  margin-top: 1rem;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.pricing-prefix {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.pricing-amount {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-period {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  margin-left: 0.25rem;
}

.pricing-desc {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}

.pricing-features {
  margin-top: 1.75rem;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.pricing-features li svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.pricing-card .btn {
  margin-top: auto;
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

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

  .pricing-card.popular {
    transform: scale(1.05);
    z-index: 1;
  }
}

/* ---- CTA ---- */

.cta-section {
  text-align: center;
  padding: 4rem 2.5rem;
  border-radius: 1.5rem;
  background:
    radial-gradient(ellipse 80% 80% at 50% 120%, hsla(217, 91%, 53%, 0.15) 0%, transparent 60%),
    linear-gradient(160deg, hsl(222, 47%, 11%) 0%, hsl(217, 50%, 20%) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(hsla(255, 255%, 255%, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, hsla(255, 255%, 255%, 0.03) 1px, transparent 1px);
  background-size: 3rem 3rem;
  pointer-events: none;
}

.cta-section h2 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  position: relative;
}

.cta-section p {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: hsla(0, 0%, 100%, 0.75);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  position: relative;
}

.cta-section .btn {
  margin-top: 2rem;
  position: relative;
}

.cta-section .cta-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.55);
  position: relative;
}

/* ---- Demo Form ---- */

.demo-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, hsl(214, 100%, 97%) 0%, #fff 45%, hsl(210, 40%, 98%) 100%);
}

.demo-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.demo-bg-blob-1 {
  width: 28rem;
  height: 28rem;
  background: hsla(217, 91%, 53%, 0.12);
  top: -6rem;
  right: -8rem;
}

.demo-bg-blob-2 {
  width: 22rem;
  height: 22rem;
  background: hsla(160, 84%, 39%, 0.08);
  bottom: -4rem;
  left: -6rem;
}

.demo-layout {
  position: relative;
  z-index: 1;
  max-width: 72rem;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.demo-info h2 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: hsla(217, 91%, 53%, 0.1);
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.demo-info-lead {
  margin-top: 1rem;
  font-size: 1.0625rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  max-width: 28rem;
}

.demo-benefits {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.demo-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.demo-benefit-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: hsla(160, 84%, 39%, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.demo-benefit-icon svg {
  width: 1rem;
  height: 1rem;
}

.demo-benefits li strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.125rem;
}

.demo-benefits li span {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.demo-card {
  background: #fff;
  border: 1px solid hsla(214, 32%, 91%, 0.9);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 20px 40px -12px rgba(37, 99, 235, 0.12);
}

.demo-card-header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.demo-card-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.demo-card-header p {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.demo-form {
  margin-top: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.125rem;
  margin-bottom: 1.125rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: hsl(222, 47%, 20%);
}

.form-group .required {
  color: var(--primary);
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrap .input-icon {
  position: absolute;
  left: 0.875rem;
  width: 1.125rem;
  height: 1.125rem;
  color: hsl(215, 16%, 65%);
  pointer-events: none;
  transition: color var(--transition);
  flex-shrink: 0;
}

.input-wrap.textarea-wrap {
  align-items: flex-start;
}

.input-wrap.textarea-wrap .input-icon {
  top: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  height: 3rem;
  padding: 0 0.875rem 0 2.625rem;
  border: 1.5px solid var(--border);
  border-radius: 0.75rem;
  font-family: inherit;
  font-size: 0.9375rem;
  background: hsl(210, 40%, 99%);
  color: var(--foreground);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: hsl(215, 16%, 68%);
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: hsl(214, 32%, 85%);
  background: #fff;
}

.form-group select:hover {
  border-color: hsl(214, 32%, 85%);
}

.form-group textarea {
  height: auto;
  min-height: 6.5rem;
  padding: 0.75rem 0.875rem 0.75rem 2.625rem;
  resize: vertical;
  line-height: 1.55;
}

.form-group select {
  appearance: none;
  background-color: hsl(210, 40%, 99%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.25rem;
  cursor: pointer;
}

.form-group select:hover {
  background-color: #fff;
}

.form-group select:focus {
  background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px hsla(217, 91%, 53%, 0.12);
}

.input-wrap:focus-within .input-icon {
  color: var(--primary);
}

.demo-submit {
  margin-top: 0.5rem;
  box-shadow: 0 4px 14px hsla(217, 91%, 53%, 0.35);
}

.demo-submit:hover {
  box-shadow: 0 6px 20px hsla(217, 91%, 53%, 0.45);
}

.demo-privacy {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.75rem;
  color: hsl(215, 16%, 55%);
  line-height: 1.5;
}

.demo-success-card {
  max-width: 32rem;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 3rem 2rem;
  box-shadow: var(--shadow-lg);
}

.demo-success-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.demo-success-card p {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.demo-success-card .btn {
  margin-top: 1.5rem;
}

.form-success-icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: hsla(160, 84%, 39%, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--accent);
}

.form-success-icon svg {
  width: 2.25rem;
  height: 2.25rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .demo-card {
    padding: 2.25rem;
  }
}

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

  .demo-info {
    padding-top: 1rem;
  }
}

/* ---- Languages icon ---- */

.lang-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: hsla(217, 91%, 53%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
}

.lang-icon-wrap svg {
  width: 1.75rem;
  height: 1.75rem;
}

/* ---- Footer ---- */

.footer {
  padding: 3.5rem 0 2.5rem;
  border-top: 1px solid var(--border);
  background: hsl(210, 40%, 98%);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-brand img {
  height: 3.025rem;
  width: auto;
  object-fit: contain;
}

.footer-brand p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  max-width: 20rem;
  line-height: 1.6;
}

.footer-company-name {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 700;
  color: var(--foreground);
}

.footer-brand a {
  color: var(--primary);
}

.footer-brand a:hover {
  color: var(--foreground);
}

.footer-email {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  transition: color var(--transition);
}

.footer-email:hover {
  color: var(--foreground);
}

/* ---- WhatsApp floating button ---- */

.whatsapp-fab {
  position: fixed;
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  right: max(1.25rem, env(safe-area-inset-right, 0px));
  z-index: 90;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.whatsapp-fab svg {
  width: 1.75rem;
  height: 1.75rem;
}

.whatsapp-fab:hover {
  background: #1da851;
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem 3rem;
}

.footer-col-title {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-col-links a {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--muted-foreground);
  transition: color var(--transition);
  line-height: 1.4;
}

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

.footer-copy {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: minmax(0, 1.4fr) auto;
    grid-template-rows: auto auto;
    align-items: start;
    gap: 2.5rem 4rem;
  }

  .footer-columns {
    display: flex;
    gap: 4rem;
  }

  .footer-copy {
    grid-column: 1 / -1;
  }
}

/* ---- Legal Pages ---- */

.legal-page-hero {
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: hsl(210, 40%, 98%);
}

.legal-page-hero h1 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.legal-page-hero p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.legal-content {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.legal-prose {
  max-width: 42rem;
  margin: 0 auto;
}

.legal-prose h2 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

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

.legal-prose p,
.legal-prose li {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

.legal-prose ul {
  margin-top: 0.75rem;
  padding-left: 1.25rem;
}

.legal-prose li + li {
  margin-top: 0.375rem;
}

.legal-prose a {
  color: var(--primary);
  font-weight: 500;
}

.legal-prose a:hover {
  text-decoration: underline;
}

/* ---- Pricing Page ---- */

.pricing-page-hero {
  position: relative;
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 3rem;
  text-align: center;
  overflow: hidden;
}

.pricing-page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, hsla(217, 91%, 53%, 0.1) 0%, transparent 70%),
    linear-gradient(180deg, hsl(214, 100%, 98%) 0%, #fff 100%);
  z-index: 0;
}

.pricing-page-hero .container {
  position: relative;
  z-index: 1;
}

.pricing-page-hero h1 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.pricing-page-hero p {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.pricing-section {
  padding-top: 0;
}

/* ---- Animations ---- */

.fade-in {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.card-grid-3 .fade-in:nth-child(2),
.features-grid .fade-in:nth-child(2),
.pricing-grid .fade-in:nth-child(2) {
  transition-delay: 0.08s;
}

.card-grid-3 .fade-in:nth-child(3),
.features-grid .fade-in:nth-child(3),
.pricing-grid .fade-in:nth-child(3) {
  transition-delay: 0.16s;
}

.features-grid .fade-in:nth-child(4) { transition-delay: 0.08s; }
.features-grid .fade-in:nth-child(5) { transition-delay: 0.16s; }
.features-grid .fade-in:nth-child(6) { transition-delay: 0.24s; }
.features-grid .fade-in:nth-child(7) { transition-delay: 0.08s; }

/* ---- Utilities ---- */

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

.spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: inline-block;
  margin-right: 0.5rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---- Mobile responsiveness ---- */

@media (max-width: 767px) {
  .container,
  .navbar-inner,
  .footer-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .section {
    padding: 4rem 0;
    scroll-margin-bottom: 5rem;
  }

  .section-header {
    scroll-margin-bottom: 5rem;
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
  }

  .hero-line {
    display: none;
  }

  .hero-bg::before {
    opacity: 0.45;
    background-size: 3rem 3rem;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    padding: 1.75rem 0 2rem;
    gap: 2rem;
  }

  .hero-content {
    display: contents;
  }

  .hero-content h1 {
    order: 1;
    text-align: center;
    font-size: clamp(2rem, 7vw, 2.5rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
  }

  .hero-content .lead {
    order: 2;
    margin-top: 1.25rem;
    font-size: 1.125rem;
    line-height: 1.7;
    text-align: center;
    max-width: none;
    color: var(--muted-foreground);
  }

  .hero-content .sub {
    order: 3;
    display: block;
    margin-top: 1rem;
    font-size: 0.875rem;
    line-height: 1.7;
    text-align: center;
    max-width: none;
    color: hsl(215, 16%, 57%);
  }

  .hero-stats {
    order: 4;
    margin-top: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    padding: 1.25rem 0.75rem;
    max-width: 100%;
    width: 100%;
    background: hsl(210, 40%, 98%);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .hero-actions {
    order: 5;
    margin-top: 1.5rem;
    justify-content: center;
  }

  .hero-actions .btn {
    width: auto;
    min-width: min(100%, 18rem);
    justify-content: center;
  }

  .hero-visual {
    order: 6;
    padding: 0;
    width: 100%;
  }

  .hero-stat-divider {
    display: block;
    width: 1px;
    height: auto;
    align-self: stretch;
    margin: 0.125rem 0;
  }

  .hero-stat {
    flex: 1;
    align-items: center;
    text-align: center;
    padding: 0 0.25rem;
    min-width: 0;
  }

  .hero-stat-value {
    font-size: 1.125rem;
  }

  .hero-stat-label {
    font-size: 0.6875rem;
    line-height: 1.35;
  }

  .hero-image-wrap {
    border-radius: 1rem;
  }

  .hero-modules {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    margin-top: 0.875rem;
  }

  .hero-module {
    font-size: 0.6875rem;
    padding: 0.5rem 0.625rem;
    gap: 0.375rem;
  }

  .hero-module-icon {
    width: 1.375rem;
    height: 1.375rem;
  }

  .hero-module-icon svg {
    width: 0.75rem;
    height: 0.75rem;
  }

  .navbar-logo img {
    height: 3.25rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

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

  .card,
  .feature-card,
  .pricing-card {
    padding: 1.5rem;
  }

  .feature-card-content {
    padding: 1.5rem 1.5rem 1rem;
  }

  .pricing-page-hero {
    padding-top: calc(var(--nav-height) + 2.5rem);
    padding-bottom: 2rem;
  }

  .pricing-page-hero p {
    font-size: 1rem;
  }

  .pricing-card.popular {
    transform: none;
  }

  .legal-page-hero {
    padding-top: calc(var(--nav-height) + 2rem);
    padding-bottom: 1.5rem;
  }

  .legal-content {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-col-links a {
    font-size: 0.875rem;
  }

  .footer {
    padding-bottom: calc(2.5rem + env(safe-area-inset-bottom, 0px));
  }

  .pricing-card .btn {
    margin-top: 1.5rem;
  }

  .tag {
    font-size: 0.8125rem;
    padding: 0.5rem 1rem;
  }

  .cta-section {
    padding: 3rem 1.5rem;
  }

  .whatsapp-fab svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}

@media (max-width: 360px) {
  .hero-stat-label {
    font-size: 0.625rem;
  }

  .hero-stat-value {
    font-size: 0.9375rem;
  }
}
