/* ===== CSS VARIABLES ===== */
:root {
  --orange: #ff6b00;
  --orange-light: #ff8c33;
  --orange-pale: #fff0e6;
  --yellow: #ffb300;
  --yellow-light: #ffd166;
  --green-wa: #25d366;
  --green-wa-dark: #1da851;
  --white: #ffffff;
  --cream: #fff8f0;
  --text-dark: #1a1a1a;
  --text-gray: #666666;
  --text-light: #999999;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow: 0 8px 32px rgba(255, 107, 0, 0.18);
  --shadow-dark: 0 16px 48px rgba(0,0,0,0.15);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-btn: 50px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

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

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

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== UTILITIES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-btn);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-3px); }

.btn--orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.4);
}

.btn--orange:hover {
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.5);
}

.btn--wa {
  background: linear-gradient(135deg, var(--green-wa), var(--green-wa-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.btn--wa:hover {
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

/* Section utilities */
.section-title {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.section-title span {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-underline {
  display: block;
  width: 60px;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  border-radius: 3px;
  margin-top: 12px;
}

.section-subtitle {
  color: var(--text-gray);
  font-size: 1.05rem;
  margin-top: 10px;
  line-height: 1.6;
}

/* ===== FLOATING WA BUTTON ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--green-wa), var(--green-wa-dark));
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-btn);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  animation: pulse-ring 2s infinite;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

.wa-float__icon {
  font-size: 1.3rem;
  line-height: 1;
}

@media (max-width: 767px) {
  .wa-float {
    bottom: 20px;
    right: 16px;
    padding: 12px 16px;
    font-size: 0.82rem;
  }
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(255,107,0,0.15);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}

.navbar__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
}

.navbar__logo:hover { opacity: 0.85; }

.navbar__logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.navbar__logo span {
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar__link {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.88rem;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.3s;
}

.navbar__link:hover {
  color: var(--orange);
}

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

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
}

.navbar__hamburger:hover {
  background: var(--orange-pale);
}

.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 767px) {
  .navbar__hamburger { display: flex; }

  .navbar__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 2px solid var(--orange-pale);
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }

  .navbar__menu.is-open { display: flex; }
  .navbar__cta { width: 100%; justify-content: center; }
}

/* ===== HERO ===== */
.hero {
  background: url('../assets/images/logo-hero.png') left top / 100% auto no-repeat;
  background-color: #1a0a00;
  padding: 80px 24px 100px;
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}

/* Overlay gelap untuk keterbacaan teks di kanan */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(10, 4, 0, 0.48) 0%,
    rgba(10, 4, 0, 0.10) 52%,
    rgba(0, 0, 0, 0.0) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Amber overlay HANYA di area logo kiri atas — blend lingkaran putih logo */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: 220px;
  background: radial-gradient(
    ellipse at 30% 38%,
    rgba(184, 92, 26, 0.88) 0%,
    rgba(184, 92, 26, 0.4) 40%,
    transparent 70%
  );
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2;
}

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

.hero__text {
  max-width: 500px;
  animation: fade-up 0.8s ease both;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-btn);
  margin-bottom: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(255,107,0,0.5);
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.hero__title span {
  background: linear-gradient(135deg, var(--yellow), #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
  margin-bottom: 32px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.hero__cta {
  font-size: 1.05rem;
  padding: 16px 32px;
  animation: pulse-ring 2.5s infinite;
}

@media (max-width: 767px) {
  .hero {
    padding: 0 0 0 0;
    min-height: 560px;
    background: url('../assets/images/logo-hero.png') center top / cover no-repeat;
    background-color: #1a0a00;
    align-items: flex-end;
  }

  .hero::before {
    background: linear-gradient(
      to top,
      rgba(8, 3, 0, 0.82) 0%,
      rgba(8, 3, 0, 0.35) 45%,
      rgba(0, 0, 0, 0.0) 75%
    );
  }

  .hero__container {
    justify-content: center;
    padding: 0 20px 40px;
  }

  .hero__text {
    max-width: 100%;
    text-align: center;
  }

  .hero__label {
    font-size: 0.72rem;
    padding: 5px 12px;
    margin-bottom: 12px;
  }

  .hero__title {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
    margin-bottom: 10px;
  }

  .hero__desc {
    font-size: 0.88rem;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .hero__cta {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
}

/* ===== MUSIC PLAYER ===== */
.music-btn {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 998;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,107,0,0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255,107,0,0.4);
  transition: transform 0.2s, background 0.2s;
  backdrop-filter: blur(8px);
}

.music-btn:hover {
  transform: scale(1.1);
  background: var(--orange);
}

.music-btn svg {
  width: 22px;
  height: 22px;
  fill: white;
  transition: opacity 0.2s;
}

.music-btn.playing {
  animation: pulse-ring 2s infinite;
}

@media (max-width: 767px) {
  .music-btn {
    bottom: 20px;
    left: 16px;
    width: 42px;
    height: 42px;
  }
}

/* ===== KEUNGGULAN ===== */
.keunggulan {
  background: linear-gradient(135deg, var(--orange) 0%, #ff8c00 100%);
  padding: 56px 24px;
  position: relative;
  overflow: hidden;
}

.keunggulan::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}

.keunggulan::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 250px;
  height: 250px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}

.keunggulan__container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.keunggulan__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  transition: background 0.3s, transform 0.3s;
  cursor: default;
}

.keunggulan__item:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-6px);
}

.keunggulan__icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: transform 0.3s;
}

.keunggulan__item:hover .keunggulan__icon-wrap {
  transform: scale(1.15) rotate(-5deg);
}

.keunggulan__label {
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
}

@media (max-width: 767px) {
  .keunggulan { padding: 40px 20px; }
  .keunggulan__container { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .keunggulan__item { padding: 20px 12px; }
}

/* ===== PRODUK ===== */
.produk {
  padding: 96px 24px;
  background: var(--white);
  position: relative;
}

.produk__container {
  max-width: 1100px;
  margin: 0 auto;
}

.produk__header {
  margin-bottom: 52px;
}

/* Info produk (teks) */
.produk__info {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(255,107,0,0.15);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
  max-width: 680px;
}

.produk__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-light));
  color: #7a4f00;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: var(--radius-btn);
  margin-bottom: 16px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(255,179,0,0.3);
}

.produk__name {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}

.produk__desc {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.produk__features {
  list-style: none;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.produk__features li {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-pale);
  padding: 7px 12px;
  border-radius: 8px;
}

.produk__price {
  font-size: 1rem;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 24px;
  padding: 10px 16px;
  background: var(--orange-pale);
  border-radius: 8px;
  border-left: 3px solid var(--orange);
  display: inline-block;
}

.produk__cta {
  font-size: 1rem;
  align-self: flex-start;
}

/* Galeri foto produk */
.produk__gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 230px 230px;
  gap: 14px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.produk__gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.produk__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.produk__gallery-item:hover img { transform: scale(1.06); }

.produk__gallery-item--featured { grid-row: 1 / 3; }

.produk__gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s;
}

.produk__gallery-item:hover .produk__gallery-label {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .produk { padding: 56px 20px; }
  .produk__info { padding: 24px; max-width: 100%; }

  .produk__gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }

  .produk__gallery-item--featured {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

  .produk__features { grid-template-columns: 1fr; }
  .produk__cta { width: 100%; justify-content: center; }
}

/* ===== TESTIMONI ===== */
.testimoni {
  padding: 96px 24px;
  background: linear-gradient(180deg, #fff8f0 0%, #fff3e6 100%);
  position: relative;
  overflow: hidden;
}

.testimoni::before {
  content: '"';
  position: absolute;
  top: -20px;
  right: 5%;
  font-size: 20rem;
  font-weight: 800;
  color: rgba(255,107,0,0.05);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimoni__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimoni__header {
  margin-bottom: 56px;
}

.testimoni__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.testimoni__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.testimoni__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  z-index: 1;
}

.testimoni__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.testimoni__foto {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}

.testimoni__card:hover .testimoni__foto { transform: scale(1.04); }

.testimoni__body {
  padding: 16px;
}

.testimoni__stars {
  font-size: 0.85rem;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.testimoni__text {
  color: var(--text-gray);
  font-size: 0.82rem;
  line-height: 1.6;
  margin-bottom: 14px;
  font-style: italic;
}

.testimoni__author {
  display: flex;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.testimoni__name {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text-dark);
}

.testimoni__location {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 2px;
}

@media (max-width: 767px) {
  .testimoni { padding: 56px 20px; }
  .testimoni__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .testimoni__foto { height: 140px; }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .testimoni__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== FOOTER CTA ===== */
.footer-cta {
  background: linear-gradient(135deg, #ff6b00 0%, #ff9500 50%, #ffb300 100%);
  padding: 88px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}

.footer-cta__container {
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-cta__title {
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.footer-cta__subtitle {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

.footer-cta__btn {
  font-size: 1.15rem;
  padding: 18px 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  margin-bottom: 36px;
  animation: pulse-ring 2.5s infinite;
}

.footer-cta__badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.footer-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-btn);
  backdrop-filter: blur(6px);
}

.footer-cta__contact {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer-cta__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  font-size: 0.92rem;
  background: rgba(255,255,255,0.15);
  padding: 9px 18px;
  border-radius: var(--radius-btn);
  backdrop-filter: blur(4px);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.footer-cta__contact-item:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.footer-cta__contact-item svg {
  flex-shrink: 0;
  opacity: 0.9;
}

.footer-cta__copy {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  line-height: 1.8;
}

.footer-cta__powered {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.72rem;
  transition: color 0.2s;
}

.footer-cta__powered:hover {
  color: var(--white);
  text-decoration: underline;
}

@media (max-width: 767px) {
  .footer-cta { padding: 60px 20px; }

  .footer-cta__btn {
    width: 100%;
    justify-content: center;
  }

  .footer-cta__badges {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-cta__contact {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
