:root {
  --brand: #008374;
  --brand-dark: #00685d;
  --brand-deep: #003f39;
  --brand-soft: #e6f6f3;
  --accent: #f85a40;
  --ink: #10211f;
  --muted: #5d6f6b;
  --line: #dce9e6;
  --surface: #ffffff;
  --surface-soft: #f5fbf9;
  --dark: #092824;
  --dark-2: #0d3d36;
  --shadow: 0 24px 70px rgba(16, 33, 31, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

.skip-link {
  background: var(--ink);
  color: #ffffff;
  left: 1rem;
  padding: 0.75rem 1rem;
  position: fixed;
  top: -4rem;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

.site-container {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 1.25rem;
  width: 100%;
}

.site-header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(0, 131, 116, 0.12);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header__inner {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.7rem;
  min-width: max-content;
}

.brand__logo {
  height: 44px;
  width: 44px;
}

.brand__name {
  color: var(--brand-dark);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 1.4rem;
}

.site-nav a {
  color: #31524d;
  font-size: 0.94rem;
  font-weight: 650;
  position: relative;
}

.site-nav a::after {
  background: var(--brand);
  border-radius: 999px;
  bottom: -0.45rem;
  content: '';
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-header__actions,
.hero-section__actions,
.final-cta__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.94rem;
  font-weight: 750;
  justify-content: center;
  line-height: 1;
  min-height: 44px;
  overflow: hidden;
  padding: 0.85rem 1rem;
  position: relative;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease,
    border-color 160ms ease;
}

.btn::before {
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.34),
    transparent
  );
  content: '';
  height: 160%;
  left: -75%;
  position: absolute;
  top: -30%;
  transform: rotate(16deg);
  transition: left 420ms ease;
  width: 45%;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn:hover::before,
.btn:focus-visible::before {
  left: 125%;
}

.btn--primary {
  background: var(--brand);
  box-shadow: 0 16px 34px rgba(0, 131, 116, 0.34);
  color: #ffffff;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--brand-dark);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(0, 131, 116, 0.34);
  color: var(--brand-dark);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn--text {
  color: var(--brand-dark);
  min-height: auto;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.btn--large {
  min-height: 50px;
  padding: 1rem 1.25rem;
}

.hero-section {
  background: linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(
      135deg,
      var(--brand-deep) 0%,
      var(--brand) 50%,
      #0aa18f 100%
    );
  background-size: 42px 42px, 42px 42px, auto;
  overflow: hidden;
  padding: 6.7rem 0 4.4rem;
  position: relative;
}

.hero-section::before {
  background: linear-gradient(
      120deg,
      transparent 0 36%,
      rgba(255, 255, 255, 0.12) 36% 37%,
      transparent 37%
    ),
    linear-gradient(
      120deg,
      transparent 0 62%,
      rgba(255, 255, 255, 0.08) 62% 63%,
      transparent 63%
    );
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-section::after {
  background: #ffffff;
  bottom: -1px;
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
  content: '';
  height: 86px;
  left: 0;
  position: absolute;
  width: 100%;
}

.hero-section > .site-container {
  position: relative;
  z-index: 1;
}

.hero-section__grid {
  align-items: center;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
}

.hero-section__content {
  animation: hero-copy-in 680ms ease both;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
}

.hero-section .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #d9fffa;
  display: inline-flex;
  padding: 0.45rem 0.7rem;
}

.hero-section h1 {
  color: #ffffff;
  font-size: clamp(2.45rem, 6vw, 4.75rem);
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
  max-width: 760px;
}

.hero-section__lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.04rem, 2vw, 1.22rem);
  margin: 1.35rem 0 1.8rem;
  max-width: 680px;
}

.hero-section__proof {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(3, 1fr);
  margin: 2.1rem 0 0;
}

.hero-section__proof div {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  padding: 1rem;
  transition: background 180ms ease, transform 180ms ease,
    border-color 180ms ease;
}

.hero-section__proof div:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-3px);
}

.hero-section__proof dt {
  color: #ffffff;
  font-weight: 800;
}

.hero-section__proof dd {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  margin: 0.2rem 0 0;
}

.hero-stage {
  min-height: 580px;
  position: relative;
}

.hero-stage__glow {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.24),
    rgba(248, 90, 64, 0.18)
  );
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  content: '';
  filter: blur(0);
  inset: 3.2rem -0.8rem 1.4rem 2.2rem;
  position: absolute;
  transform: rotate(4deg);
}

.hero-visual {
  animation: hero-panel-in 760ms ease 120ms both;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 43, 38, 0.32);
  min-height: 540px;
  overflow: hidden;
  padding: 1rem;
  position: relative;
  transform: rotate(-1.2deg);
}

.hero-visual::before {
  background: linear-gradient(135deg, rgba(0, 131, 116, 0.12), transparent 55%),
    #f7fffd;
  border-radius: 8px;
  content: '';
  inset: 1rem;
  position: absolute;
}

.hero-visual > * {
  position: relative;
}

.hero-visual__topbar {
  align-items: center;
  display: flex;
  gap: 0.45rem;
  padding: 0.35rem 0.2rem 0.9rem;
}

.hero-visual__topbar span {
  background: #9ed9d0;
  border-radius: 999px;
  height: 10px;
  width: 10px;
}

.hero-visual__body {
  background: linear-gradient(135deg, #ffffff, #e9f8f5);
  border: 1px solid rgba(0, 131, 116, 0.14);
  border-radius: 8px;
  display: grid;
  gap: 1rem;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 350px;
  overflow: hidden;
  padding: 1.2rem;
}

.hero-visual__summary {
  align-self: stretch;
  background: linear-gradient(145deg, var(--brand-deep), var(--brand));
  border-radius: 8px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  position: relative;
}

.hero-visual__summary::before {
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  content: '';
  inset: 0;
  position: absolute;
}

.hero-visual__panel p,
.hero-visual__panel strong,
.hero-visual__summary p,
.hero-visual__summary strong,
.hero-visual__summary span {
  display: block;
  margin: 0;
  position: relative;
}

.hero-visual__panel p,
.hero-visual__summary p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
}

.hero-visual__summary strong {
  font-size: 1.65rem;
  line-height: 1.1;
  margin-top: 0.4rem;
}

.hero-visual__summary span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  margin-top: 0.75rem;
}

.hero-visual__image {
  animation: dashboard-breathe 5.8s ease-in-out infinite;
  align-self: center;
  filter: drop-shadow(0 16px 26px rgba(0, 64, 57, 0.12));
  justify-self: center;
  max-height: 320px;
  width: 100%;
}

.hero-visual__metrics {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, 1fr);
  margin: 1rem 0 0;
}

.hero-visual__metrics article,
.hero-visual__list {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 131, 116, 0.14);
  border-radius: var(--radius);
}

.hero-visual__metrics article {
  padding: 1rem;
}

.hero-visual__metrics span {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-visual__metrics strong {
  color: var(--brand-dark);
  display: block;
  font-size: 1.35rem;
  margin-top: 0.3rem;
}

.hero-floating-card {
  animation: float-card 5.6s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 43, 38, 0.22);
  display: grid;
  gap: 0.1rem 0.6rem;
  grid-template-columns: auto 1fr;
  min-width: 220px;
  padding: 0.9rem 1rem;
  position: absolute;
  z-index: 2;
}

.hero-floating-card strong {
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.2;
}

.hero-floating-card small {
  color: var(--muted);
  font-size: 0.78rem;
  grid-column: 2;
}

.hero-floating-card--top {
  right: -0.2rem;
  top: 5rem;
}

.hero-floating-card--bottom {
  animation-delay: 900ms;
  bottom: 5rem;
  left: -1rem;
}

.hero-visual__list {
  display: grid;
  gap: 0.75rem;
  padding: 1.1rem;
}

.hero-visual__list div {
  align-items: center;
  color: #31524d;
  display: flex;
  gap: 0.65rem;
  font-weight: 650;
}

.status-dot {
  border-radius: 999px;
  flex: 0 0 auto;
  height: 10px;
  width: 10px;
}

.status-dot--green {
  background: var(--brand);
}

.status-dot--orange {
  background: var(--accent);
}

.status-dot--blue {
  background: #2f80ed;
}

.logo-strip {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.76);
}

.logo-strip__inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
  min-height: 78px;
}

.logo-strip span {
  font-size: 0.9rem;
  font-weight: 750;
}

.section {
  padding: 5.5rem 0;
}

.section--white {
  background: #ffffff;
}

.section--tinted {
  background: var(--surface-soft);
}

.section--dark {
  background: var(--dark);
  color: #ffffff;
}

.section-heading {
  margin: 0 auto 2.8rem;
  max-width: 760px;
  text-align: center;
}

.section-heading h2,
.split-section h2,
.trust-grid h2,
.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}

.section-heading p:not(.eyebrow),
.split-section p,
.trust-grid p,
.final-cta p {
  color: var(--muted);
  font-size: 1.03rem;
}

.feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}

.feature-card,
.workflow-card,
.testimonial-card,
.support-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(16, 33, 31, 0.06);
}

.feature-card {
  padding: 1.2rem;
  position: relative;
  transform: translateY(18px);
  opacity: 0;
  overflow: hidden;
  animation: feature-rise 580ms ease forwards;
  animation-delay: var(--feature-delay, 0ms);
  transition: border-color 180ms ease, transform 180ms ease,
    box-shadow 180ms ease;
}

.feature-card::before {
  background: linear-gradient(135deg, rgba(0, 131, 116, 0.12), transparent 58%);
  content: '';
  height: 110px;
  position: absolute;
  right: -36px;
  top: -52px;
  transform: rotate(12deg);
  transition: opacity 180ms ease, transform 180ms ease;
  width: 140px;
}

.feature-card::after {
  background: var(--brand);
  bottom: 0;
  content: '';
  height: 3px;
  left: 1.2rem;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  width: calc(100% - 2.4rem);
}

.feature-card:hover {
  border-color: rgba(0, 131, 116, 0.38);
  box-shadow: 0 22px 54px rgba(0, 131, 116, 0.16);
  transform: translateY(-6px);
}

.feature-card:hover::before {
  opacity: 1;
  transform: rotate(12deg) translate(-8px, 8px);
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-card__icon {
  align-items: center;
  background: var(--brand-soft);
  border-radius: 8px;
  color: var(--brand-dark);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  margin-bottom: 1.1rem;
  width: 42px;
  position: relative;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  z-index: 1;
}

.feature-card:hover .feature-card__icon {
  background: var(--brand);
  color: #ffffff;
  transform: translateY(-2px) scale(1.04);
}

.feature-card h3 {
  font-size: 1.05rem;
  line-height: 1.25;
  margin: 0 0 0.55rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.94rem;
  margin: 0;
}

.feature-card h3,
.feature-card p {
  position: relative;
  z-index: 1;
}

@keyframes feature-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-panel-in {
  from {
    opacity: 0;
    transform: translateY(22px) rotate(-1.2deg) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(-1.2deg) scale(1);
  }
}

@keyframes dashboard-breathe {
  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }

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

.split-section {
  align-items: center;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
}

.check-list {
  display: grid;
  gap: 0.9rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.check-list li {
  align-items: flex-start;
  color: #31524d;
  display: flex;
  font-weight: 700;
  gap: 0.75rem;
}

.check-list li::before {
  background: var(--brand);
  border-radius: 999px;
  color: #ffffff;
  content: '✓';
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 900;
  height: 22px;
  line-height: 22px;
  margin-top: 0.1rem;
  text-align: center;
  width: 22px;
}

.workflow-card {
  padding: 1.35rem;
}

.workflow-card h3 {
  font-size: 1.35rem;
  margin: 0 0 1.2rem;
}

.workflow-card__steps {
  display: grid;
  gap: 0.9rem;
}

.workflow-card__steps div {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.workflow-card__steps span {
  color: var(--accent);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}

.workflow-card__steps strong {
  display: block;
  font-size: 1.05rem;
}

.workflow-card__steps p {
  margin: 0.25rem 0 0;
}

.stats-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 4rem;
}

.stats-grid article {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.stats-grid strong {
  color: #ffffff;
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-weight: 700;
  margin-top: 0.55rem;
}

.trust-grid {
  align-items: stretch;
  display: grid;
  gap: 1.4rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
}

.section--dark .eyebrow,
.section--dark h2 {
  color: #ffffff;
}

.section--dark p {
  color: rgba(255, 255, 255, 0.76);
}

.support-card {
  background: #ffffff;
  color: var(--ink);
  padding: 1.4rem;
}

.support-card h3 {
  font-size: 1.45rem;
  line-height: 1.18;
  margin: 0 0 0.75rem;
}

.support-card p {
  color: var(--muted);
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  padding: 1.35rem;
}

.testimonial-card p {
  color: #31524d;
  font-size: 1rem;
  margin: 0;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  margin-top: 1.3rem;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.final-cta {
  background: radial-gradient(
      circle at 18% 20%,
      rgba(248, 90, 64, 0.16),
      transparent 24rem
    ),
    linear-gradient(135deg, #f4fbf9, #ffffff);
  padding: 5.2rem 0;
}

.final-cta__inner {
  max-width: 860px;
  text-align: center;
}

.final-cta__inner p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
  max-width: 680px;
}

.final-cta__actions {
  justify-content: center;
  margin-top: 1.7rem;
}

.site-footer {
  background: #061b18;
  color: rgba(255, 255, 255, 0.78);
  padding: 4rem 0 1.4rem;
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(260px, 1.2fr) repeat(2, minmax(140px, 0.5fr)) minmax(
      260px,
      0.9fr
    );
}

.brand--footer .brand__name {
  color: #ffffff;
}

.site-footer__brand p,
.site-footer__cta p {
  max-width: 330px;
}

.site-footer__contact,
.site-footer__links a {
  display: block;
}

.site-footer__contact {
  color: #ffffff;
  font-weight: 700;
  margin-top: 0.35rem;
}

.site-footer h2 {
  color: #ffffff;
  font-size: 1rem;
  margin: 0 0 1rem;
}

.site-footer__links a {
  margin: 0.55rem 0;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible,
.site-footer__contact:hover,
.site-footer__contact:focus-visible {
  color: #7de2d5;
}

.site-footer__bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding-top: 1.3rem;
}

.site-footer__bottom p {
  margin: 0;
}

@media (max-width: 1020px) {
  .site-nav {
    display: none;
  }

  .hero-section__grid,
  .split-section,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: auto;
  }

  .hero-floating-card--top {
    right: 1.2rem;
    top: 2rem;
  }

  .hero-floating-card--bottom {
    bottom: 2rem;
    left: 1rem;
  }

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

  .hero-section {
    padding-top: 4.7rem;
  }

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

@media (max-width: 720px) {
  .site-header__inner {
    min-height: 68px;
  }

  .brand__name {
    display: none;
  }

  .site-header__actions .btn--ghost {
    display: none;
  }

  .hero-section__proof,
  .hero-visual__metrics,
  .feature-grid,
  .stats-grid,
  .testimonial-grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding: 3.8rem 0 2.8rem;
  }

  .hero-visual {
    min-height: auto;
    transform: none;
  }

  .hero-visual__body {
    grid-template-columns: 1fr;
  }

  .hero-visual__summary {
    min-height: 190px;
  }

  .hero-floating-card {
    display: none;
  }

  .hero-section__actions,
  .final-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn--text {
    justify-content: center;
    min-height: 44px;
  }

  .section {
    padding: 4rem 0;
  }

  .section-heading {
    text-align: left;
  }

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

@media (max-width: 420px) {
  .site-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .site-header__actions .btn {
    min-height: 40px;
    padding: 0.75rem 0.8rem;
  }

  .hero-section h1 {
    font-size: 2.35rem;
  }
}

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

  .feature-card {
    opacity: 1;
    transform: none;
  }
}
