/* =========================
   🎨 VARIABLES
========================= */
:root {
  --pink: #FC3DFC;
  --cyan: #5FE8FF;
  --blue: #1B94EF;
  --white: #FFF;

  --glass: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.18);
  --glass-border: rgba(255, 255, 255, 0.12);
}

/* =========================
   🔄 RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Lexend', sans-serif;
}

body {
  background: #0F0815;
  color: white;
}

a {
  font-style: normal;
  color: var(--white);
  text-decoration: none;
}

/* =========================
   🔲 SECTIONS
========================= */
section {
  padding: 80px 10%;
  text-align: center;
}

.logos,
.features,
.services,
.steps,
.testimonials,
.packages,
.faq {
  padding: 50px 8%;
  text-align: center;
}

/* =========================
   🏷️ BADGE
========================= */
.badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  width: 100%;
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-bottom: 14px;
  color: var(--cyan);
  font-weight: bold;
}

/* =========================
   💡 NEON FLICKER
========================= */
.neon-flicker {
  letter-spacing: 1.5px;
  text-shadow: 0 0 4px, 0 0 8px, 0 0 16px;
  animation: none;
}

@keyframes neonFlicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
    text-shadow:
      0 0 4px rgba(255, 255, 255, 0.9),
      0 0 10px rgba(95, 232, 255, 0.6),
      0 0 20px rgba(95, 232, 255, 0.4);
  }
  20%, 24%, 55% {
    opacity: 0.4;
    text-shadow: none;
  }
  21%, 56% {
    opacity: 0.8;
  }
}

/* =========================
   🔘 BUTTONS
========================= */
.btn {
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
}

.btn--primary {
  background: linear-gradient(45deg, var(--pink), var(--cyan));
  border: none;
  color: var(--white);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: var(--white);
}

/* =========================
   🧊 GLASS UTILITIES
========================= */
.glass-pro {
  position: relative;
  padding: 32px 24px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.glass-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.2), transparent 70%);
  opacity: 0.15;
}

.glass-pro::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow:
    inset 0 0 20px rgba(95, 232, 255, 0.05),
    inset 0 0 40px rgba(95, 232, 255, 0.05);
  pointer-events: none;
}

.glass-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.2), transparent 70%);
  opacity: 0.1;
}

/* =========================
   🔲 NEON BORDER
========================= */
.neon-border {
  border: 1px solid rgba(95, 232, 255, 0.5);
}

.neon-border::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  background: linear-gradient(45deg, transparent, rgba(95, 232, 255, 0.6), transparent);
  filter: blur(12px);
  opacity: 0.4;
  z-index: -1;
}

/* =========================
   🧭 NAV
========================= */
.nav {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 80px);
  max-width: 1200px;
  z-index: 100;
}

.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  backdrop-filter: blur(20px);
  background: var(--glass);
  border: 1px solid var(--border);
}

.nav__menu {
  display: flex;
  justify-content: center;
  gap: 32px;
}

/* =========================
   🦸 HERO
========================= */
.hero {
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  background: url('assets/bg-hero-photo.jpg') no-repeat;
  background-size: cover;
  background-position: 75% center;
  position: relative;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(5, 1, 10, 0.95) 0%,
      rgba(5, 1, 10, 0.85) 25%,
      rgba(5, 1, 10, 0.4) 55%,
      transparent 85%
    );
}

.hero__content {
  position: relative;
  max-width: 560px;
  margin-left: 8%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero h1 {
  font-size: 3.4rem;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  text-align: start;
}

.hero h1 span {
  color: var(--cyan);
  text-shadow:
    0 0 6px rgba(95, 232, 255, 0.9),
    0 0 14px rgba(95, 232, 255, 0.6),
    0 0 28px rgba(27, 148, 239, 0.4);
}

.hero__desc {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 22px;
  text-align: start;
}

.hero__features {
  display: flex;
  justify-content: start;
  gap: 32px;
  margin-bottom: 26px;
}

.hero__features div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.hero__features span {
  text-align: start;
}

.hero__features img {
  width: 20px;
}

.hero__cta {
  display: flex;
  gap: 14px;
}

/* =========================
   🏢 LOGOS
========================= */
.logos__title {
  font-size: 18px;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.logos__title span {
  color: var(--cyan);
}

.logos__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.logo-card {
  position: relative;
  padding: 30px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-card img {
  max-height: 28px;
  opacity: 0.9;
}

/* =========================
   ✨ FEATURES
========================= */
.features__title span {
  color: var(--cyan);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.icon-box {
  width: 50px;
  height: 50px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(252, 61, 252, 0.15);
  box-shadow:
    0 0 10px rgba(252, 61, 252, 0.5),
    0 0 20px rgba(252, 61, 252, 0.3);
}

.icon-box img {
  width: 22px;
}

.feature-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  opacity: 0.8;
}

.glass-pro:hover {
  transform: translateY(-6px) scale(1.02);
  border: 1px solid rgba(95, 232, 255, 0.4);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(95, 232, 255, 0.2),
    0 0 40px rgba(95, 232, 255, 0.15);
}

/* =========================
   🎯 SERVICES
========================= */
.services__title span {
  color: var(--cyan);
}

.services__title {
  font-size: 22px;
  margin-bottom: 10px;
}

.services__desc {
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 14px;
  opacity: 0.8;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  border-radius: 20px;
  overflow: hidden;
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
}

.service-card__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card__content {
  padding: 20px;
}

.service-card__content h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.service-card__content p {
  font-size: 13px;
  opacity: 0.8;
  line-height: 1.5;
}

.service-card:hover {
  transform: translateY(-6px) scale(1.02);
  border: 1px solid rgba(95, 232, 255, 0.4);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(95, 232, 255, 0.2),
    0 0 40px rgba(95, 232, 255, 0.1);
}

/* =========================
   📋 STEPS
========================= */
.steps__title {
  font-size: 20px;
  margin-bottom: 50px;
}

.steps__title span {
  color: var(--cyan);
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(145deg, #2a0d3a, #1a0825);
  box-shadow:
    0 0 12px rgba(252, 61, 252, 0.6),
    0 0 24px rgba(252, 61, 252, 0.3);
  margin-bottom: 16px;
}

.step-item h4 {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.step-item p {
  font-size: 13px;
  opacity: 0.75;
  line-height: 1.5;
  max-width: 260px;
}

/* =========================
   💬 TESTIMONIALS
========================= */
.testimonials__title span {
  color: var(--cyan);
}

.carousel {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 50px;
}

.carousel__viewport_old {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.carousel__viewport {
  overflow: hidden;
  width: 98%;
  position: relative;
  margin-left: 1%;
  margin-right: 1%;
}

.carousel__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.testimonial {
  min-width: 340px;
  padding: 24px;
  border-radius: 20px;
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(95, 232, 255, 0.3);
  opacity: 0.5;
  transform: scale(0.9);
  transition: all 0.4s ease;
}

.testimonial.active {
  opacity: 1;
  transform: scale(1);
  box-shadow:
    0 0 20px rgba(95, 232, 255, 0.5),
    0 0 60px rgba(95, 232, 255, 0.2);
}

.testimonial.pink {
  border: 1px solid rgba(252, 61, 252, 0.6);
}

.testimonial.pink.active {
  box-shadow:
    0 0 20px rgba(252, 61, 252, 0.7),
    0 0 60px rgba(252, 61, 252, 0.3);
}

.stars {
  color: gold;
  margin-bottom: 10px;
}

.testimonial h4 {
  margin-bottom: 8px;
}

.testimonial p {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 20px;
}

.testimonial__footer {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  opacity: 0.7;
}

.carousel__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--pink);
  background: transparent;
  color: white;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(252, 61, 252, 0.5);
  flex-shrink: 0;
}

.carousel__dots {
  margin-top: 20px;
}

.dot {
  width: 8px;
  height: 8px;
  margin: 0 6px;
  display: inline-block;
  border-radius: 50%;
  background: #444;
}

.dot.active {
  background: var(--pink);
}

/* =========================
   📦 PACKAGES
========================= */
.packages__title span {
  color: var(--cyan);
}

.packages__desc {
  margin: 10px 0 40px;
  opacity: 0.7;
}

.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.package-card {
  position: relative;
  padding: 28px;
  border-radius: 20px;
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.package-card.cyan {
  border: 1px solid rgba(95, 232, 255, 0.5);
  box-shadow: 0 0 10px rgba(95, 232, 255, 0.4);
}

.package-card.pink {
  border: 1px solid rgba(252, 61, 252, 0.8);
  box-shadow:
    0 0 20px rgba(252, 61, 252, 0.8),
    0 0 50px rgba(252, 61, 252, 0.3);
}

.badge-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: black;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 999px;
}

.package-card h5 {
  font-size: 14px;
  margin-bottom: 12px;
  opacity: 0.8;
}

.price {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 16px;
}

.price span {
  font-size: 12px;
  opacity: 0.6;
}

.package-card ul {
  margin-top: 20px;
  list-style: none;
}

.package-card li {
  font-size: 14px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 16px;
}

.package-card li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--cyan);
}

.packages__benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.benefit-card {
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(95, 232, 255, 0.3);
  text-align: center;
}

.benefit-card img {
  width: 24px;
  margin-bottom: 10px;
}

.benefit-card span {
  color: var(--cyan);
}

/* =========================
   ❓ FAQ
========================= */
.faq__title span {
  color: var(--cyan);
}

.faq__list {
  max-width: 700px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  border-radius: 14px;
  overflow: hidden;
}

.faq-question {
  position: relative;
  width: 100%;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  color: white;
  font-size: 15px;
  cursor: pointer;
  border: none;
}

.faq-question::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 1px solid rgba(252, 61, 252, 0.8);
  pointer-events: none;
}

.faq-question::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 14px;
  background: rgba(23, 0, 23, 0.4);
  filter: blur(10px);
  opacity: 0.6;
  z-index: -1;
}

.faq-question .icon {
  transition: transform 0.3s ease;
}

.faq-answer {
  text-align: start;
  max-height: 0;
  overflow: hidden;
  background: #000;
  padding: 0 20px;
  font-size: 14px;
  opacity: 0.85;
  transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 20px;
}

.faq-item.active .faq-question .icon {
  transform: rotate(180deg);
}

/* =========================
   📝 FORM
========================= */
.form {
  position: relative;
  padding: 50px 8%;
}

.form__bg {
  position: absolute;
  inset: 0;
  background: url('assets/bg-form.png') center/cover no-repeat;
}

.form__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.form__container {
  position: relative;
  display: flex;
  justify-content: center;
}

.form__box {
  width: 100%;
  max-width: 520px;
  padding: 40px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.form__box h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.form__box h3 span {
  color: var(--cyan);
}

.form__desc {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 30px;
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.field.full {
  grid-column: span 2;
}

.field label {
  font-size: 12px;
  margin-bottom: 6px;
}

input,
select {
  padding: 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("assets/arrow.png");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  background-color: rgba(255, 255, 255, 0.08);
}

select option {
  background: #1a0825;
  color: white;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
}

.form__cta {
  margin-top: 20px;
}

form button {
  color: var(--white);
}

/* =========================
   🦶 FOOTER
========================= */
.footer {
  padding: 80px 8% 40px;
  background: linear-gradient(to bottom, #0a0014, #05010a);
}

.footer__container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  width: 140px;
  margin-bottom: 20px;
}

.footer__info p {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 4px;
}

.footer__social {
  margin-top: 20px;
  display: flex;
  gap: 14px;
}

.footer__social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.footer__social a:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 8px rgba(95, 232, 255, 0.4);
}

.footer__links {
  display: flex;
  gap: 60px;
}

.footer__col h4 {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer__col a {
  display: block;
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 8px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.footer__col a:hover {
  opacity: 1;
}

.footer__bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  opacity: 0.6;
}

/* =========================
   📐 RESPONSIVE — TABLET (1024px ↓)
========================= */
@media (max-width: 1024px) {
  .features__grid,
  .services__grid,
  .packages__grid,
  .steps__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================
   📱 MOBILE (768px ↓)
========================= */
@media (max-width: 768px) {

  .nav {
    width: calc(100% - 24px);
    top: 12px;
  }

  .nav__inner {
    grid-template-columns: auto auto;
    gap: 10px;
    padding: 10px 14px;
  }

  .nav__menu {
    display: none;
  }

  .logo {
    width: 110px;
  }

  .hero {
    height: auto;
    padding: 120px 0 80px;
    background-position: 70% center;
  }

  .hero__content {
    margin: 0;
    padding: 0 20px;
    align-items: center;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero__desc {
    font-size: 14px;
  }

  .hero__features {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    gap: 12px;
  }

  .hero__features div {
    width: 100%;
    justify-content: flex-start;
  }

  .hero__features span {
    text-align: left;
  }

  .hero__cta {
    flex-direction: column;
    width: 100%;
  }

  .hero__cta .btn {
    width: 100%;
    text-align: center;
  }

  .logos__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .logo-card {
    padding: 20px;
  }

  .features__grid,
  .services__grid,
  .packages__grid,
  .steps__grid {
    grid-template-columns: 1fr;
  }

  .service-card__image img {
    height: 180px;
  }

  .steps__grid {
    gap: 30px;
  }

  .testimonial {
    min-width: 260px;
  }

  .carousel__btn {
    display: none;
  }

  .packages__benefits {
    grid-template-columns: 1fr;
  }

  .faq__list {
    padding: 0 10px;
  }

  .form__box {
    padding: 28px 20px;
  }

  .form__grid {
    grid-template-columns: 1fr;
  }

  .field.full {
    grid-column: span 1;
  }

  input,
  select {
    font-size: 16px; /* evita zoom en iOS */
  }

  .footer__container {
    flex-direction: column;
    gap: 30px;
  }

  .footer__links {
    flex-direction: column;
    gap: 20px;
  }

  .footer__brand {
    max-width: 100%;
  }
}

/* =========================
   📱 MOBILE PEQUEÑO (480px ↓)
========================= */
@media (max-width: 480px) {

  .hero h1 {
    font-size: 1.8rem;
  }

  .btn {
    padding: 12px;
    font-size: 13px;
  }

  section {
    padding: 60px 20px;
  }

  .price {
    font-size: 26px;
  }
}

/* =========================
   📱 MOBILE 390px ↓
========================= */
@media (max-width: 390px) {

  .hero h1 {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .hero__desc {
    font-size: 13px;
  }

  .hero__features span {
    font-size: 13px;
  }

  .btn {
    font-size: 13px;
    padding: 12px;
  }

  h3 {
    font-size: 18px;
    line-height: 1.3;
  }

  .feature-card h4,
  .service-card__content h4 {
    font-size: 14px;
  }

  .feature-card p,
  .service-card__content p {
    font-size: 12px;
  }

  .testimonial {
    min-width: 240px;
    padding: 18px;
  }

  .price {
    font-size: 24px;
  }

  .package-card li {
    font-size: 13px;
  }

  .form__box {
    padding: 24px 16px;
  }

  .form__desc {
    font-size: 12px;
  }
}

/* =========================
   📱 MOBILE 330px ↓
========================= */
@media (max-width: 330px) {

  .hero h1 {
    font-size: 1.4rem;
  }

  .hero__desc {
    font-size: 12px;
  }

  .hero__features {
    display: flex;
    justify-content: start;
  }

  .hero__features div {
    flex-direction: column;
    gap: 6px;
  }

  .hero__features span {
    font-size: 12px;
    text-align: center;
  }

  .btn {
    font-size: 12px;
    padding: 10px;
  }

  section {
    padding: 50px 14px;
  }

  .logos__grid {
    grid-template-columns: 1fr;
  }

  h3 {
    font-size: 16px;
  }

  .step-circle {
    width: 48px;
    height: 48px;
    font-size: 14px;
  }

  .step-item h4 {
    font-size: 14px;
  }

  .step-item p {
    font-size: 12px;
  }

  .testimonial {
    min-width: 220px;
  }

  input,
  select {
    padding: 10px;
    font-size: 14px;
  }

  .footer__info p {
    font-size: 12px;
  }
}
