:root {
  --primary-color: #ff3b3b;
  --secondary-color: #1a1aff;
  --tertiary-color: #ffe600;
  --accent-color: #00c853;
  --text-color: #0d0d0d;

  --red: #ff3b3b;
  --blue: #1a1aff;
  --yellow: #ffe600;
  --green: #00c853;
  --purple: #9b00ff;
  --orange: #ff7c00;
  --white: #ffffff;
  --black: #0d0d0d;

  --border: 3px solid #0d0d0d;
  --shadow: 5px 5px 0px #0d0d0d;
  --shadow-lg: 8px 8px 0px #0d0d0d;
  --shadow-xl: 12px 12px 0px #0d0d0d;

  --bg: #f5f5f0;
  --radius: 8px;
  --transition: 0.15s ease;
  --font-display: "Dela Gothic One", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-color);
  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 28px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  border: var(--border);
  position: relative;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn--primary:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-lg);
}
.btn--primary:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--black);
}
.btn--outline {
  background: var(--white);
  color: var(--black);
  box-shadow: var(--shadow);
}
.btn--outline:hover {
  background: var(--yellow);
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-lg);
}
.btn--white {
  background: var(--white);
  color: var(--black);
  box-shadow: var(--shadow);
}
.btn--white:hover {
  background: var(--yellow);
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-lg);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 3px solid var(--white);
  box-shadow: 5px 5px 0 rgba(255, 255, 255, 0.3);
}
.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 rgba(255, 255, 255, 0.3);
}
.btn--lg {
  padding: 18px 36px;
  font-size: 1rem;
}

/* ---- SECTION HEAD ---- */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--black);
  border: var(--border);
  border-radius: 4px;
  padding: 6px 14px;
  margin-bottom: 18px;
  box-shadow: 3px 3px 0 var(--black);
}
.section-tag--dark {
  background: var(--black);
  color: var(--white);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
  letter-spacing: -0.5px;
}
.section-head {
  margin-bottom: 60px;
}
.section-head--center {
  text-align: center;
}

/* ---- HEADER ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--yellow);
  border-bottom: var(--border);
  transition: all var(--transition);
}
.header.scrolled {
  box-shadow: 0 4px 0 var(--black);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--black);
  letter-spacing: -0.5px;
}
.footer__logo {
  color: var(--yellow);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  border: 2px solid transparent;
}
.nav a:not(.nav__cta):hover {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
}
.nav__cta {
  background: var(--red);
  color: var(--white) !important;
  border: var(--border) !important;
  padding: 10px 20px;
  box-shadow: 3px 3px 0 var(--black);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius);
}
.nav__cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--black);
  background: #e02020 !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--black);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---- HERO ---- */
.hero {
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
  border-bottom: var(--border);
  background: var(--bg);
}
.hero__pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    var(--black) 1.5px,
    transparent 1.5px
  );
  background-size: 28px 28px;
  opacity: 0.07;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  border: var(--border);
  border-radius: 4px;
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 3px 3px 0 var(--black);
}
.hero__badge i {
  color: var(--yellow);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 24px;
}
.hero__title--stroke {
  -webkit-text-stroke: 3px var(--black);
  color: transparent;
}
.hero__title--yellow {
  color: var(--red);
  display: inline-block;
  background: var(--yellow);
  border: var(--border);
  padding: 0 12px;
  transform: rotate(-1.5deg);
  display: inline-block;
  box-shadow: var(--shadow);
}
.hero__desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(13, 13, 13, 0.7);
  margin-bottom: 36px;
  max-width: 480px;
  font-weight: 400;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero stat cards */
.hero__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero__stat-card {
  padding: 28px 22px;
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all var(--transition);
  cursor: default;
}
.hero__stat-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-lg);
}
.hero__stat-card i {
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.hero__stat-card--red {
  background: var(--red);
  color: var(--white);
}
.hero__stat-card--blue {
  background: var(--blue);
  color: var(--white);
}
.hero__stat-card--yellow {
  background: var(--yellow);
  color: var(--black);
}
.hero__stat-card--green {
  background: var(--green);
  color: var(--white);
}
.hsc__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
}
.hsc__label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* ---- SERVICES ---- */
.services {
  padding: 100px 0;
  border-bottom: var(--border);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  padding: 32px 26px;
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  cursor: default;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translate(-5px, -5px);
  box-shadow: var(--shadow-xl);
}
.service-card--red {
  background: var(--red);
  color: var(--white);
}
.service-card--blue {
  background: var(--blue);
  color: var(--white);
}
.service-card--yellow {
  background: var(--yellow);
  color: var(--black);
}
.service-card--green {
  background: var(--green);
  color: var(--white);
}
.service-card--purple {
  background: var(--purple);
  color: var(--white);
}
.service-card--orange {
  background: var(--orange);
  color: var(--white);
}
.service-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  font-size: 1.3rem;
  margin-bottom: 18px;
  color: inherit;
}
.service-card--yellow .service-card__icon {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.2);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.2;
}
.service-card p {
  font-size: 0.87rem;
  line-height: 1.7;
  opacity: 0.85;
}

/* ---- HOW IT WORKS ---- */
.how {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-bottom: var(--border);
}
.how__bg {
  position: absolute;
  inset: 0;
  background: var(--blue);
  clip-path: polygon(0 20%, 100% 0%, 100% 80%, 0% 100%);
  opacity: 0.04;
  pointer-events: none;
}
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}
.step__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--black);
  opacity: 0.3;
}
.step {
  padding: 36px 28px;
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
  transition: all var(--transition);
  position: relative;
}
.step:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-lg);
}
.step--red {
  background: var(--red);
  color: var(--white);
}
.step--blue {
  background: var(--blue);
  color: var(--white);
}
.step--yellow {
  background: var(--yellow);
  color: var(--black);
}
.step__num {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  opacity: 0.15;
  position: absolute;
  top: 16px;
  right: 20px;
}
.step__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.step--yellow .step__icon {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.2);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.step p {
  font-size: 0.87rem;
  line-height: 1.7;
  opacity: 0.85;
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  padding: 100px 0;
  border-bottom: var(--border);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.testi-card {
  padding: 32px 28px;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.testi-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-lg);
}
.testi-card--tilted-left {
  transform: rotate(-1deg);
}
.testi-card--tilted-left:hover {
  transform: rotate(-1deg) translate(-4px, -4px);
}
.testi-card--tilted-right {
  transform: rotate(1deg);
}
.testi-card--tilted-right:hover {
  transform: rotate(1deg) translate(-4px, -4px);
}
.testi-card--featured {
  background: var(--red);
  color: var(--white);
  transform: scale(1.02);
}
.testi-card--featured:hover {
  transform: scale(1.02) translate(-4px, -4px);
  box-shadow: var(--shadow-xl);
}
.testi-card__quote-mark {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}
.testi-card__stars {
  display: flex;
  gap: 4px;
  color: var(--yellow);
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.testi-card--featured .testi-card__stars {
  color: var(--yellow);
}
.testi-card p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(13, 13, 13, 0.75);
  margin-bottom: 22px;
  font-style: italic;
}
.testi-card--featured p {
  color: rgba(255, 255, 255, 0.9);
}
.testi-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--yellow);
  border: 2px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-card--featured .testi-card__avatar {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.testi-card__author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
}
.testi-card--featured .testi-card__author strong {
  color: var(--white);
}
.testi-card__author span {
  font-size: 0.78rem;
  color: rgba(13, 13, 13, 0.5);
}
.testi-card--featured .testi-card__author span {
  color: rgba(255, 255, 255, 0.6);
}

/* ---- FAQ ---- */
.faq {
  padding: 100px 0;
  border-bottom: var(--border);
  position: relative;
  overflow: hidden;
}
.faq__side-decor {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 100%;
  background: var(--yellow);
  border-left: var(--border);
  opacity: 0.35;
  pointer-events: none;
}
.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.faq__cta-block {
  margin-top: 28px;
}
.faq__cta-block p {
  font-size: 0.9rem;
  color: rgba(13, 13, 13, 0.65);
  line-height: 1.7;
  margin-bottom: 20px;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}
.faq-item.open {
  box-shadow: var(--shadow-lg);
}
.faq-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: none;
  border: none;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  gap: 14px;
  transition: background var(--transition);
}
.faq-item.open .faq-item__q {
  background: var(--yellow);
}
.faq-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--yellow);
  border-radius: 4px;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition:
    transform var(--transition),
    background var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--red);
  color: var(--white);
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  font-size: 0.9rem;
  color: rgba(13, 13, 13, 0.7);
  line-height: 1.75;
  padding: 0 22px;
}
.faq-item.open .faq-item__a {
  max-height: 200px;
  padding: 18px 22px;
}

/* ---- CTA ---- */
.cta {
  padding: 120px 0;
  background: var(--blue);
  position: relative;
  overflow: hidden;
  border-bottom: var(--border);
  text-align: center;
}
.cta__pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 1.5px,
    transparent 1.5px
  );
  background-size: 28px 28px;
  pointer-events: none;
}
.cta__inner {
  position: relative;
  z-index: 1;
}
.cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  border: var(--border);
  border-radius: 4px;
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}
.cta__badge i {
  color: var(--red);
}
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta__title--stroke {
  -webkit-text-stroke: 3px var(--white);
  color: transparent;
}
.cta__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cta__trust {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}
.cta__trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cta__trust i {
  color: var(--yellow);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--black);
  border-top: var(--border);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 60px;
  padding: 60px 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer__brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  margin: 14px 0 24px;
  max-width: 260px;
}
.footer__socials {
  display: flex;
  gap: 10px;
}
.footer__socials a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer__socials a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  box-shadow: 3px 3px 0 rgba(255, 255, 255, 0.3);
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 6px;
}
.footer__col a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition);
}
.footer__col a:hover {
  color: var(--yellow);
}
.footer__bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  padding: 18px 28px;
}
.footer__bottom__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.25);
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom__inner i {
  color: var(--red);
}

/* ---- SCROLL ANIMATION ---- */
.pop-in {
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pop-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .step__connector {
    display: none;
  }
  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .testi-card--tilted-left,
  .testi-card--tilted-right,
  .testi-card--featured {
    transform: none;
  }
  .testi-card--tilted-left:hover,
  .testi-card--tilted-right:hover {
    transform: translate(-4px, -4px);
  }
  .testi-card--featured:hover {
    transform: translate(-4px, -4px);
  }
  .faq__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq__side-decor {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav {
    /* display: none; */
    position: fixed;
    inset: 0;
    background: var(--yellow);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    z-index: 99;
    border: none;
    pointer-events: none;
    transform: translateY(-8px);
    opacity: 0;
    height: 0;
    transition:
      opacity 0.3s ease,
      height 0.3s ease,
      transform 0.3s ease;
  }
  .nav.open {
    display: flex;
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
    height: 100vh;
  }
  .nav a {
    font-size: 1.1rem;
    padding: 12px 20px;
  }
  .hamburger {
    display: flex;
    z-index: 101;
    position: relative;
  }
  .services__grid {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 28px;
  }
  .footer__links {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta__actions {
    flex-direction: column;
    align-items: center;
  }
  .footer__links {
    grid-template-columns: 1fr;
  }
  .cta__trust {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .hero__cards {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}
