/* ============================================================
   Swiss Automate — Main Stylesheet
   Version 1.0 | March 2026
   ============================================================ */

@import url('tokens.css');

/* ── Reset & Base ─────────────────────────────────────────── */

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

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

body {
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-charcoal);
  background-color: var(--color-offwhite);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

/* ── Layout ───────────────────────────────────────────────── */

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

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

/* ── Backgrounds ──────────────────────────────────────────── */

.bg-mesh {
  background:
    radial-gradient(ellipse at 18% 55%, rgba(6, 68, 108, 0.28) 0%, transparent 58%),
    radial-gradient(ellipse at 82% 18%, rgba(231, 25, 31, 0.09) 0%, transparent 50%),
    radial-gradient(ellipse at 62% 82%, rgba(6, 68, 108, 0.16) 0%, transparent 55%),
    var(--color-offwhite);
}

.bg-navy {
  background-color: var(--color-navy);
}

/* ── Typography Helpers ───────────────────────────────────── */

h1 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--color-charcoal);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

h4 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-xl);
}

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

.section-subtitle {
  font-size: 1.0625rem;
  color: rgba(26, 26, 46, 0.70);
  margin-top: var(--space-xs);
  line-height: 1.65;
}

.section-header--light h2 {
  color: var(--color-white);
}

.section-header--light .section-eyebrow {
  color: rgba(255, 255, 255, 0.70);
}

.section-header--light .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

/* ── Buttons ──────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-base);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 200ms var(--ease-smooth),
              box-shadow 200ms var(--ease-smooth),
              background 200ms var(--ease-smooth),
              filter 200ms var(--ease-smooth);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 2px solid var(--color-navy);
  outline-offset: 3px;
}

.btn--primary {
  background: rgba(6, 68, 108, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(6, 68, 108, 0.30);
}

.btn--primary:hover {
  filter: brightness(1.12);
  box-shadow: 0 8px 28px rgba(6, 68, 108, 0.38);
}

.btn--accent {
  background: rgba(231, 25, 31, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(231, 25, 31, 0.28);
}

.btn--accent:hover {
  filter: brightness(1.08);
  box-shadow: 0 8px 28px rgba(231, 25, 31, 0.38);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(26, 26, 46, 0.22);
  color: var(--color-charcoal);
}

.btn--ghost:hover {
  background: rgba(26, 26, 46, 0.06);
  border-color: rgba(26, 26, 46, 0.35);
}

.btn--ext {
  background: rgba(255, 255, 255, 0.70);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(26, 26, 46, 0.15);
  color: var(--color-charcoal);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.btn--ext:hover {
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.btn--ghost-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--color-white);
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.55);
}

/* ── Glass Card ───────────────────────────────────────────── */

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  transition: background 200ms var(--ease-smooth),
              transform 200ms var(--ease-smooth),
              box-shadow 200ms var(--ease-smooth);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.20);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(6, 68, 108, 0.24);
}

.glass-card:focus-visible {
  outline: 2px solid var(--color-navy);
  outline-offset: 3px;
}

.glass-card-dark {
  background: var(--glass-bg-dark);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow-dark);
}

/* ── Navigation ───────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1160px;
  z-index: 100;
  border-radius: var(--radius-pill);
  transition: background 300ms var(--ease-smooth),
              backdrop-filter 300ms var(--ease-smooth),
              box-shadow 300ms var(--ease-smooth);
}

.nav--glass {
  background: var(--glass-bg-heavy);
  backdrop-filter: var(--glass-blur-heavy);
  -webkit-backdrop-filter: var(--glass-blur-heavy);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 14px 28px;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo img {
  height: 28px;
  width: auto;
  filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.15));
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-left: auto;
}

.nav__links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-charcoal);
  transition: color 150ms var(--ease-smooth);
  white-space: nowrap;
}

.nav__links a:hover {
  color: var(--color-navy);
}

.nav__lang {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(26, 26, 46, 0.18);
  color: var(--color-charcoal);
  transition: background 150ms, border-color 150ms;
}
.nav__lang:hover {
  background: rgba(26, 26, 46, 0.06);
  border-color: rgba(26, 26, 46, 0.35);
}

.nav__cta {
  margin-left: var(--space-sm);
  flex-shrink: 0;
}

.nav__burger {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  color: var(--color-charcoal);
  border-radius: var(--radius-sm);
  transition: background 150ms;
  z-index: 101;
  position: relative;
}

.nav__burger:hover {
  background: rgba(26, 26, 46, 0.08);
}

.nav__burger:focus-visible {
  outline: 2px solid var(--color-navy);
  outline-offset: 2px;
}


/* ── Mobile Navigation ────────────────────────────────────── */

.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms var(--ease-smooth);
}

.nav-mobile.is-open {
  opacity: 1;
  pointer-events: auto;
}


.nav-mobile a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-charcoal);
  transition: color 150ms;
}

.nav-mobile a:hover {
  color: var(--color-navy);
}

/* ── Hero ─────────────────────────────────────────────────── */

.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: var(--space-xl);
}

.hero__layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
}

.hero h1 {
  margin-bottom: var(--space-md);
}

.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(26, 26, 46, 0.70);
  max-width: 500px;
  margin-bottom: var(--space-lg);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(26, 26, 46, 0.55);
}

.hero__trust-item svg {
  color: var(--color-navy);
  flex-shrink: 0;
}

.hero__trust-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(26, 26, 46, 0.25);
}

/* Hero visual card */
.hero__visual-card {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.hero__visual-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-navy);
  opacity: 0.70;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--space-sm) var(--space-md);
  background: rgba(255, 255, 255, 0.50);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-md);
}

.hero__stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero__stat-desc {
  font-size: 0.8125rem;
  color: rgba(26, 26, 46, 0.65);
  line-height: 1.4;
}

/* ── Why Section ──────────────────────────────────────────── */

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.why__card {
  padding: var(--space-md) var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.why__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 68, 108, 0.08);
  border-radius: var(--radius-md);
  color: var(--color-navy);
  flex-shrink: 0;
  margin-bottom: 4px;
}

.why__card h4 {
  color: var(--color-charcoal);
}

.why__card p {
  font-size: 0.9375rem;
  color: rgba(26, 26, 46, 0.70);
  line-height: 1.6;
}

/* ── Approach / Phases ────────────────────────────────────── */

.approach {
  padding: var(--space-xl) 0;
}

.phases {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-sm);
}

.phase-item {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.phase-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.phase-number {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.40);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.phase-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.90);
  flex-shrink: 0;
}

.phase-item h4 {
  color: var(--color-white);
  font-size: 1rem;
}

.phase-item p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}

/* ── Tools Section ────────────────────────────────────────── */

.tools__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.tool-card {
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-align: center;
  align-items: center;
}

.tool-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 68, 108, 0.08);
  border-radius: var(--radius-lg);
  color: var(--color-navy);
  margin-bottom: var(--space-xs);
}

.tool-card h3 {
  color: var(--color-charcoal);
  font-size: 1.125rem;
}

.tool-card p {
  font-size: 0.9375rem;
  color: rgba(26, 26, 46, 0.68);
  line-height: 1.6;
}
.tool-card__link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  transition: opacity 0.2s;
}
.tool-card__link:hover {
  opacity: 0.7;
}

/* ── Testimonials ─────────────────────────────────────────── */

.testimonials {
  padding: var(--space-xl) 0;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.testimonial-card {
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.testimonial-quote {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.90);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}

.testimonial-quote::before {
  content: '\201C';
  font-style: normal;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.20);
  display: block;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.testimonial-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-white);
}

.testimonial-role {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.50);
}

/* ── CTA Section ──────────────────────────────────────────── */

.cta-section {
  padding: var(--space-xl) 0;
}

.cta-section__card {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  border-radius: var(--radius-xl);
}

.cta-section__card h2 {
  color: var(--color-charcoal);
}

.cta-section__card > p {
  font-size: 1.0625rem;
  color: rgba(26, 26, 46, 0.68);
  max-width: 520px;
  line-height: 1.65;
}

.cta-section__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.cta-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-navy);
  padding: 12px 24px;
  border: 1.5px solid rgba(6, 68, 108, 0.20);
  border-radius: var(--radius-pill);
  background: rgba(6, 68, 108, 0.05);
  transition: background 150ms var(--ease-smooth),
              border-color 150ms var(--ease-smooth),
              transform 150ms var(--ease-smooth);
}

.cta-contact-item:hover {
  background: rgba(6, 68, 108, 0.10);
  border-color: rgba(6, 68, 108, 0.35);
  transform: translateY(-2px);
}

/* ── Footer ───────────────────────────────────────────────── */

.footer {
  background-color: var(--color-navy);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  margin-bottom: var(--space-md);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer__brand img {
  filter: brightness(0) invert(1) drop-shadow(0 1px 8px rgba(0, 0, 0, 0.15));
}

.footer__brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  text-align: center;
  align-items: center;
}

.footer__nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.60);
  transition: color 150ms;
}

.footer__nav a:hover {
  color: var(--color-white);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}

.footer__contact a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.70);
  font-weight: 500;
  transition: color 150ms;
}

.footer__contact a:hover {
  color: var(--color-white);
}

.footer__contact span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.40);
}

.footer__address {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.40);
  font-style: normal;
  line-height: 1.6;
  margin-top: 4px;
}

.footer__bottom {
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__legal {
  margin-top: 6px;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.50);
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
  transition: color 150ms, border-color 150ms;
}

.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.80);
  border-bottom-color: rgba(255, 255, 255, 0.50);
}

/* ── Scroll Animations ────────────────────────────────────── */

.anim-fade-up {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition: opacity 450ms var(--ease-spring),
              transform 450ms var(--ease-spring);
}

.anim-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered delays for grid children */
.anim-stagger > *:nth-child(1) { transition-delay: 0ms; }
.anim-stagger > *:nth-child(2) { transition-delay: 80ms; }
.anim-stagger > *:nth-child(3) { transition-delay: 160ms; }
.anim-stagger > *:nth-child(4) { transition-delay: 240ms; }
.anim-stagger > *:nth-child(5) { transition-delay: 320ms; }

/* ── Reduced Motion ───────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .anim-fade-up {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ── Media Queries ────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  .hero__layout {
    grid-template-columns: 1fr 360px;
    gap: 40px;
  }

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

  .why__grid > *:last-child {
    grid-column: 1 / -1;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

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

  .phases > *:nth-child(4),
  .phases > *:nth-child(5) {
    grid-column: span 1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  section {
    padding: var(--space-lg) 0;
  }

  /* Nav */
  .nav {
    top: 0;
    left: 0;
    width: 100%;
    transform: none;
    border-radius: 0;
    border-bottom: 1px solid transparent;
    transition: background 300ms var(--ease-smooth),
                border-color 300ms var(--ease-smooth);
  }

  .nav--glass {
    border-radius: 0;
    border-bottom-color: var(--glass-border);
  }

  .nav__inner {
    padding: 12px var(--space-md);
  }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 100dvh;
    padding-top: 100px;
    padding-bottom: var(--space-lg);
  }

  .hero__layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Sections */
  .section-header {
    margin-bottom: var(--space-lg);
  }

  /* Why grid */
  .why__grid {
    grid-template-columns: 1fr;
  }

  .why__grid > *:last-child {
    max-width: 100%;
  }

  /* Phases */
  .phases {
    grid-template-columns: 1fr;
  }

  /* Tools */
  .tools__grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta-section__card {
    padding: var(--space-lg) var(--space-md);
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    text-align: center;
  }

  .footer__brand {
    justify-content: center;
  }

  .footer__contact {
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.875rem;
  }

  .hero__stat-value {
    font-size: 1.625rem;
  }

  .btn {
    padding: 13px 22px;
    font-size: 0.875rem;
  }
}
