/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-400: #a3a3a3;
  --gray-600: #525252;
  --gray-800: #262626;
  --green: #34c759;
  --green-dark: #2aad4a;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.btn--small {
  padding: 10px 20px;
  font-size: 14px;
}

.btn--large {
  padding: 16px 32px;
  font-size: 16px;
}

.btn--primary {
  background: var(--black);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.btn--white {
  background: var(--white);
  color: var(--black);
  border: 1.5px solid var(--gray-200);
}

.btn--white:hover {
  border-color: var(--gray-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.btn--ghost {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--gray-200);
}

.btn--ghost:hover {
  border-color: var(--black);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  background: var(--black);
  color: var(--white);
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 24px;
  transition: padding 0.4s var(--ease-out);
}

.nav__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 10px 12px 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-full);
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  transition: box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.nav--scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
}

.nav--scrolled .nav__inner {
  box-shadow: 0 12px 34px rgba(0,0,0,0.10);
}

.nav__logo {
  display: flex;
  align-items: center;
  z-index: 10;
}

.nav__logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--black);
  transition: width 0.3s var(--ease-out);
}

.nav__link:hover {
  color: var(--black);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  background: var(--black);
  color: var(--white);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

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

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

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

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__link {
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  background: var(--white);
}

.hero__food-grid {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10vw;
  right: 10vw;
  pointer-events: none;
  z-index: 1;
}

.hero__food {
  position: absolute;
  opacity: 0;
  animation: foodFloat 20s ease-in-out infinite, foodFadeIn 1s var(--ease-out) forwards;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.08));
  will-change: transform;
}

/* Pineapple — large anchor, top-left corner */
.hero__food--1 {
  width: 138px;
  top: 7%;
  left: 1.5%;
  animation-delay: 0s, 0s;
  animation-duration: 18s, 1s;
}

/* Red pepper — top-right */
.hero__food--2 {
  width: 102px;
  top: 9%;
  right: 3.5%;
  animation-delay: 0.5s, 0.15s;
  animation-duration: 22s, 1s;
}

/* Ginger — lower-left, well below the pineapple */
.hero__food--3 {
  width: 86px;
  top: 52%;
  left: 3%;
  animation-delay: 1.1s, 0.3s;
  animation-duration: 19s, 1s;
}

/* Cherries — bottom-left */
.hero__food--4 {
  width: 104px;
  bottom: 17%;
  left: 8.5%;
  animation-delay: 0.3s, 0.45s;
  animation-duration: 21s, 1s;
}

/* Lemon — small, mid-left filler */
.hero__food--5 {
  width: 66px;
  top: 31%;
  left: 14%;
  animation-delay: 1.7s, 0.6s;
  animation-duration: 17s, 1s;
}

/* Blackberry — bottom-right */
.hero__food--6 {
  width: 64px;
  bottom: 13%;
  right: 5%;
  animation-delay: 0.9s, 0.75s;
  animation-duration: 23s, 1s;
}

/* Corn — upper-right, pulled inward */
.hero__food--7 {
  width: 82px;
  top: 15%;
  right: 19%;
  animation-delay: 1.4s, 0.9s;
  animation-duration: 20s, 1s;
}

/* Carrot — mid-right edge */
.hero__food--8 {
  width: 78px;
  top: 47%;
  right: 2.5%;
  animation-delay: 0.2s, 1.05s;
  animation-duration: 18s, 1s;
}

/* Garlic — small, bottom-left inward */
.hero__food--9 {
  width: 58px;
  bottom: 7%;
  left: 22%;
  animation-delay: 2s, 1.2s;
  animation-duration: 22s, 1s;
}

/* Zucchini — bottom-right inward */
.hero__food--10 {
  width: 72px;
  bottom: 29%;
  right: 13%;
  animation-delay: 0.7s, 1.35s;
  animation-duration: 19s, 1s;
}

/* Chocolate — small, lower-right */
.hero__food--11 {
  width: 54px;
  bottom: 6%;
  right: 25%;
  animation-delay: 1.9s, 1.5s;
  animation-duration: 21s, 1s;
}

/* Potato — small, just to the right of the ginger */
.hero__food--12 {
  width: 60px;
  top: 56%;
  left: 13%;
  animation-delay: 1.2s, 1.65s;
  animation-duration: 17s, 1s;
}

@keyframes foodFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(3deg); }
  50% { transform: translateY(5px) rotate(-2deg); }
  75% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes foodFadeIn {
  from { opacity: 0; transform: scale(0.7) translateY(30px); }
  to { opacity: 0.85; transform: scale(1) translateY(0); }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin-bottom: 48px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 24px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero__title-accent {
  background: linear-gradient(135deg, var(--green) 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--gray-600);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__phone {
  position: relative;
  z-index: 2;
}

.hero__phone-device {
  width: 340px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.18));
  transition: transform 0.6s var(--ease-out);
}

.hero__phone-device:hover {
  transform: translateY(-8px);
}

/* ===== Sections ===== */
.section {
  padding: 120px 0;
}

.section__header {
  text-align: center;
  margin-bottom: 72px;
}

.section__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.section__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

/* ===== Steps ===== */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease-out);
}

.step:hover {
  background: var(--gray-50);
  transform: translateY(-4px);
}

.step__number {
  font-size: 48px;
  font-weight: 900;
  color: var(--gray-100);
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: var(--radius-md);
  background: var(--black);
  color: var(--white);
}

.step__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step__desc {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

.step__connector {
  display: flex;
  align-items: center;
  padding-top: 100px;
  color: var(--gray-200);
}

/* ===== Features Grid ===== */
.features {
  background: var(--gray-50);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease-out);
  min-width: 0;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  border-color: transparent;
}

.feature-card--large {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 60px;
}

.feature-card--reverse .feature-card__visual {
  order: 2;
}

.feature-card--reverse .feature-card__content {
  order: 1;
}

.feature-card__visual {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.feature-card__content {
  min-width: 0;
}

.feature-card__phone {
  width: 240px;
  max-width: 100%;
  filter: drop-shadow(0 20px 45px rgba(0,0,0,0.14));
  transition: transform 0.5s var(--ease-out);
}

.feature-card__phone--wide {
  width: 100%;
  max-width: 440px;
}

.feature-card__phone:hover {
  transform: translateY(-6px) scale(1.02);
}

.feature-card__screen {
  width: 100%;
  display: block;
}

.feature-card__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--gray-50);
  margin-bottom: 20px;
  transition: all 0.3s var(--ease-out);
}

.feature-card:hover .feature-card__icon {
  background: var(--black);
  color: var(--white);
}

.feature-card__title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature-card__desc {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== Demo ===== */
.demo {
  background: var(--white);
}

.demo__video-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-100);
  cursor: pointer;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.demo__video {
  height: 86%;
  width: auto;
  max-width: 88%;
  object-fit: contain;
  transition: transform 0.45s var(--ease-out);
}

.demo__video-wrap:hover .demo__video {
  transform: scale(1.015);
}

.demo__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-spring);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.demo__play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.demo__play-btn.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.8);
}

/* ===== Marquee ===== */
.marquee {
  padding: 32px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee__content {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
}

.marquee__item {
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
  color: var(--gray-800);
}

.marquee__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== CTA ===== */
.cta__inner {
  position: relative;
  text-align: center;
  padding: 100px 40px;
  background: var(--black);
  border-radius: var(--radius-xl);
  overflow: hidden;
  color: var(--white);
}

.cta__inner .section__label {
  color: var(--green);
}

.cta__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.cta__desc {
  font-size: 17px;
  color: var(--gray-400);
  margin-bottom: 36px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.cta__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta__buttons .btn--primary {
  background: var(--white);
  color: var(--black);
}

.cta__buttons .btn--primary:hover {
  background: var(--gray-100);
}

.cta__buttons .btn--white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}

.cta__buttons .btn--white:hover {
  border-color: rgba(255,255,255,0.5);
}

.cta__food-float {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.cta__food {
  position: absolute;
  opacity: 0.15;
  filter: blur(1px);
}

.cta__food--1 {
  width: 120px;
  top: 10%;
  left: 5%;
  animation: foodFloat 15s ease-in-out infinite;
}

.cta__food--2 {
  width: 100px;
  bottom: 10%;
  right: 8%;
  animation: foodFloat 18s ease-in-out infinite reverse;
}

.cta__food--3 {
  width: 70px;
  top: 20%;
  right: 15%;
  animation: foodFloat 20s ease-in-out infinite;
}

/* ===== Footer ===== */
.footer {
  padding: 48px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 24px;
}

.footer__logo-img {
  height: 30px;
  width: auto;
  display: block;
}

.footer__tagline {
  font-size: 14px;
  color: var(--gray-400);
  margin-top: 10px;
}

.footer__email {
  display: inline-block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
  transition: color 0.2s;
}

.footer__email:hover {
  color: var(--green-dark);
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--gray-50);
  transition: all 0.3s var(--ease-out);
}

.footer__social-link:hover {
  background: var(--black);
  transform: translateY(-2px);
}

.footer__social-link:hover img {
  filter: invert(1);
}

.footer__bottom {
  text-align: center;
}

.footer__bottom p {
  font-size: 13px;
  color: var(--gray-400);
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-phone {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  transition-delay: 0.3s;
}

.reveal-phone.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 768px) {
  .nav {
    padding: 12px 14px;
  }

  .nav__inner {
    padding: 8px 10px 8px 18px;
    gap: 12px;
  }

  .nav__links,
  .nav__burger {
    display: none;
  }

  .nav__cta {
    display: inline-flex;
  }

  .nav__logo-img {
    height: 28px;
  }

  .hero {
    padding: 96px 22px 48px;
    min-height: auto;
  }

  .hero__badge {
    margin-bottom: 18px;
    padding: 7px 14px;
    font-size: 12px;
  }

  .hero__title {
    margin-bottom: 14px;
  }

  .hero__subtitle {
    font-size: 15.5px;
    line-height: 1.6;
    margin-bottom: 26px;
  }

  /* Cleaner, lighter CTA: compact pill + text link */
  .hero__actions {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .hero__actions .btn--large {
    width: auto;
    padding: 13px 28px;
    font-size: 15px;
  }

  .hero__actions .btn--ghost {
    border: none;
    background: transparent;
    color: var(--gray-600);
    padding: 8px 12px;
  }

  .hero__actions .btn--ghost:hover {
    transform: none;
    color: var(--black);
    border-color: transparent;
  }

  .hero__phone {
    margin-top: 8px;
  }

  /* Mobile: hide all floating food */
  .hero__food-grid {
    display: none;
  }

  /* Mobile: disable all hover effects (touch devices) */
  .btn--primary:hover {
    background: var(--black);
    transform: none;
    box-shadow: none;
  }
  .btn--white:hover {
    border-color: var(--gray-200);
    transform: none;
    box-shadow: none;
  }
  .btn--ghost:hover {
    transform: none;
  }
  .step:hover {
    background: transparent;
    transform: none;
  }
  .feature-card:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--gray-100);
  }
  .feature-card:hover .feature-card__icon {
    background: var(--gray-50);
    color: inherit;
  }
  .feature-card__phone:hover {
    transform: none;
  }
  .hero__phone-device:hover {
    transform: none;
  }
  .demo__video-wrap:hover .demo__video {
    transform: none;
  }
  .demo__play-btn:hover {
    transform: translate(-50%, -50%);
  }
  .footer__social-link:hover {
    background: var(--gray-50);
    transform: none;
  }
  .footer__social-link:hover img {
    filter: none;
  }
  .footer__email:hover {
    color: var(--gray-800);
  }
  .cta__buttons .btn--primary:hover {
    background: var(--white);
  }
  .cta__buttons .btn--white:hover {
    border-color: rgba(255, 255, 255, 0.2);
  }

  .hero__phone-device {
    width: 260px;
  }

  .section {
    padding: 80px 0;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step__connector {
    padding-top: 0;
    transform: rotate(90deg);
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .feature-card--large {
    grid-column: span 1;
    grid-template-columns: 1fr;
    padding: 32px;
    text-align: center;
  }

  .feature-card--reverse .feature-card__visual,
  .feature-card--reverse .feature-card__content {
    order: unset;
  }

  .feature-card {
    padding: 28px;
  }

  .cta__inner {
    padding: 64px 24px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .demo__play-btn {
    width: 60px;
    height: 60px;
  }

  .demo__play-btn svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: auto;
    justify-content: center;
  }

  .cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta__buttons .btn {
    width: 100%;
    justify-content: center;
  }
}
