:root {
  --voy-blue: #4D56F3;
  --voy-blue-dark: #3d45d4;
  --voy-blue-mid: #8B94FB;
  --voy-blue-light: #DADDFE;
  --voy-green: #BCE63D;
  --voy-white: #ffffff;
  --voy-dark: #1a1a2e;
  --voy-text: #555;
  --voy-muted: #888;
  --voy-gray: #f8f8ff;
  --voy-border: rgba(77, 86, 243, 0.14);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

/* HEADER */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--voy-blue-light);
  padding: 0 5%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.25s, background 0.25s;
}

header.scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.96);
}

.logo {
  font-size: 28px;
  font-weight: 900;
  color: var(--voy-blue);
  letter-spacing: -1px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo img {
  height: 30px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--voy-green);
  border-radius: 50%;
  display: inline-block;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--voy-dark);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--voy-blue);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s;
}

nav a:hover {
  color: var(--voy-blue);
}

nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--voy-blue);
  color: var(--voy-white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  box-shadow: 0 8px 22px rgba(77, 86, 243, 0.22);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--voy-blue-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(77, 86, 243, 0.28);
}

/* HAMBURGER */

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--voy-blue);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* HERO */

#inicio {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 110px 5% 70px;
  background: var(--voy-gray);
  position: relative;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}

.blob1 {
  width: 500px;
  height: 500px;
  background: var(--voy-blue);
  top: -100px;
  right: -100px;
}

.blob2 {
  width: 300px;
  height: 300px;
  background: var(--voy-green);
  bottom: -50px;
  left: 10%;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--voy-blue-light);
  color: var(--voy-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  background: var(--voy-green);
  border-radius: 50%;
  display: inline-block;
}

.hero-title {
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--voy-dark);
  letter-spacing: -1.5px;
}

.hero-title em {
  font-style: normal;
  color: var(--voy-blue);
}

.hero-sub {
  font-size: 17px;
  color: var(--voy-text);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  display: inline-block;
}

.btn-primary {
  background: var(--voy-blue);
  color: white;
  box-shadow: 0 10px 30px rgba(77, 86, 243, 0.25);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary:hover {
  background: var(--voy-blue-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 38px rgba(77, 86, 243, 0.34);
}

.btn-secondary {
  background: transparent;
  color: var(--voy-blue);
  border: 2px solid var(--voy-blue);
  transition: background 0.2s, transform 0.15s;
}

.btn-secondary:hover {
  background: var(--voy-blue-light);
  transform: translateY(-2px);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  background: white;
  border-radius: 32px;
  padding: 48px;
  box-shadow: 0 8px 60px rgba(77, 86, 243, 0.14);
  text-align: center;
  max-width: 380px;
  width: 100%;
  border: 1px solid var(--voy-border);
}

.hero-logo-big {
  font-size: 76px;
  font-weight: 900;
  color: var(--voy-blue);
  letter-spacing: -5px;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-logo {
  width: 180px;       /* 🔥 más presencia */
  display: block;
  margin: 0px auto 0px; /* menos aire arriba */
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.hero-card:hover .hero-logo {
  transform: scale(1.05);
}

.hero-tagline {
  font-size: 14px;
  font-weight: 800;
  color: var(--voy-blue-mid);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-line {
  height: 1px;
  background: var(--voy-blue-light);
  margin: 0 -8px 20px;
}

.hero-card-text {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.stat-box {
  background: var(--voy-gray);
  border-radius: 16px;
  padding: 16px 10px;
  text-align: center;
  border: 1px solid rgba(77, 86, 243, 0.08);
}

.stat-num {
  font-size: 18px;
  font-weight: 900;
  color: var(--voy-blue);
  line-height: 1;
}

.stat-num.green {
  color: var(--voy-green);
  font-size: 22px;
}

.stat-label {
  font-size: 10px;
  color: var(--voy-muted);
  font-weight: 800;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* SHARED SECTIONS */

section {
  padding: 85px 5%;
}

.trust-strip {
  padding: 26px 5%;
  background: white;
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: var(--voy-gray);
  border: 1px solid var(--voy-border);
  border-radius: 24px;
  padding: 22px 28px;
}

.trust-item {
  text-align: center;
}

.trust-item strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
  color: var(--voy-blue);
  margin-bottom: 4px;
}

.trust-item span {
  display: block;
  font-size: 13px;
  color: #777;
  font-weight: 700;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--voy-blue);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--voy-green);
  border-radius: 2px;
  display: inline-block;
}

.section-title {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--voy-dark);
  letter-spacing: -0.8px;
}

.section-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  max-width: 610px;
  margin-bottom: 50px;
}

/* BENEFICIOS */

#beneficios {
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.benefit-card {
  background: var(--voy-gray);
  border-radius: 24px;
  padding: 36px 28px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  border: 1px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(77, 86, 243, 0.12);
  border-color: var(--voy-blue-light);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  background: var(--voy-blue);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.green-bg-icon {
  background: var(--voy-green);
}

.mid-bg-icon {
  background: var(--voy-blue-mid);
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--voy-dark);
}

.benefit-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.65;
}

/* INFO STRIP */

.info-strip {
  margin-top: 60px;
  background: linear-gradient(135deg, var(--voy-blue), #6770ff);
  border-radius: 28px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 18px 50px rgba(77, 86, 243, 0.25);
}

.info-strip h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.info-strip p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-top: 12px;
}

.info-strip-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.info-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  background: var(--voy-green);
  border-radius: 50%;
  margin-top: 5px;
}

.info-item span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.white-btn {
  margin-top: 12px;
  align-self: flex-start;
  background: white;
  color: var(--voy-blue);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.white-btn:hover {
  background: var(--voy-green);
  color: var(--voy-dark);
}

/* PRODUCTOS */

#productos {
  background: var(--voy-gray);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.product-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
  border: 1px solid var(--voy-border);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(77, 86, 243, 0.16);
  border-color: var(--voy-blue-light);
}

.product-img {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-img.blue-bg {
  background: var(--voy-blue-light);
}

.product-img.green-bg {
  background: #e8fac0;
}

.product-img.mid-bg {
  background: #ebe8ff;
}

.product-info {
  padding: 22px 24px 24px;
}

.product-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--voy-blue-mid);
  margin-bottom: 6px;
  display: block;
}

.product-name {
  font-size: 18px;
  font-weight: 900;
  color: var(--voy-dark);
  margin-bottom: 6px;
}

.product-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.55;
  margin-bottom: 16px;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 900;
  color: var(--voy-blue);
  text-decoration: none;
  border-bottom: 2px solid var(--voy-blue-light);
  padding-bottom: 2px;
  transition: border-color 0.2s, transform 0.2s;
}

.product-cta:hover {
  border-color: var(--voy-blue);
  transform: translateX(3px);
}

.catalog-btn {
  text-align: center;
  margin-top: 48px;
}

.big-btn {
  font-size: 16px;
  padding: 16px 42px;
}

/* FINAL CTA */

.final-cta {
  background: white;
  text-align: center;
}

.final-cta-inner {
  background: linear-gradient(135deg, var(--voy-gray), #ffffff);
  border: 1px solid var(--voy-border);
  border-radius: 30px;
  padding: 55px 30px;
}

.final-cta h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -0.8px;
}

.final-cta p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: #666;
  line-height: 1.7;
}

/* FOOTER */

footer {
  background: var(--voy-dark);
  color: white;
  padding: 60px 5% 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  width: 110px;
  display: block;
  margin-bottom: 8px; /* 🔥 menos espacio */
}

.footer-bio {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 300px;
}

.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--voy-green);
}

.footer-social span {
  color: rgba(255, 255, 255, 0.15);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--voy-green);
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.32);
}

.footer-bottom p span {
  color: var(--voy-green);
}

/* WHATSAPP BUTTON */

.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.55);
}

.whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.wa-pulse {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  background: var(--voy-green);
  border-radius: 50%;
  border: 3px solid white;
  animation: pulse 1.8s infinite;
}

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

  50% {
    transform: scale(1.3);
    opacity: 0.6;
  }
}

/* MOBILE NAV */

.mobile-menu {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: white;
  padding: 24px 5%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  z-index: 99;

  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;

  transition: all 0.35s ease;
  border-bottom: 1px solid var(--voy-blue-light);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--voy-dark);
  font-size: 16px;
  font-weight: 900;
  background: var(--voy-gray);
  border: 1px solid var(--voy-blue-light);

  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.mobile-menu a:hover {
  background: var(--voy-blue);
  color: white;
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.2s; }

/* RESPONSIVE */

@media (max-width: 768px) {
  nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 42px;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-sub {
    margin: 0 auto 36px;
  }

  .hero-card {
    max-width: 430px;
  }

  .trust-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .info-strip {
    grid-template-columns: 1fr;
    padding: 36px 28px;
  }

  .white-btn {
    align-self: stretch;
    text-align: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  header {
    height: 64px;
  }

  .mobile-menu {
    top: 64px;
  }

  #inicio {
    padding-top: 95px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-card {
    padding: 32px 24px;
  }

  .hero-logo-big {
    font-size: 64px;
  }

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

  section {
    padding: 62px 5%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .product-img {
    height: 190px;
  }

  .whatsapp-btn {
    width: 54px;
    height: 54px;
    right: 20px;
    bottom: 20px;
  }
}

/* MARCAS */wwww

.category-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 45px;
}

.category-box {
  background: white;
  border: 1px solid var(--voy-border);
  border-radius: 24px;
  padding: 28px 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  color: var(--voy-blue);
  box-shadow: 0 12px 35px rgba(77, 86, 243, 0.08);
  transition: 0.25s ease;
}

.category-box:hover {
  background: var(--voy-blue);
  color: white;
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(77, 86, 243, 0.22);
}

.brand-carousel {
  margin-top: 55px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--voy-border);
  border-radius: 28px;
  padding: 24px 0;
  box-shadow: 0 14px 45px rgba(77, 86, 243, 0.08);
  position: relative;
}

.brand-carousel::before,
.brand-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 90px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.brand-carousel::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}

.brand-carousel::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

.brand-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: scrollBrands 28s linear infinite;
}

.brand-carousel:hover .brand-track {
  animation-play-state: paused;
}

.brand-track span {
  background: var(--voy-gray);
  border: 1px solid var(--voy-border);
  border-radius: 50px;
  padding: 12px 20px;
  min-width: max-content;
  font-size: 14px;
  font-weight: 900;
  color: var(--voy-dark);
}

.brand-track span:nth-child(3n) {
  background: var(--voy-blue);
  color: white;
}

.brand-track span:nth-child(4n) {
  background: var(--voy-blue-light);
  color: var(--voy-blue);
}

.brand-track span:nth-child(5n) {
  background: #e8fac0;
  color: var(--voy-dark);
}

@keyframes scrollBrands {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .category-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .category-box {
    font-size: 16px;
    padding: 22px 14px;
  }
}

@media (max-width: 480px) {
  .category-showcase {
    grid-template-columns: 1fr;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* OVERLAY FONDO (EFECTO INPUT) */

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 90;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* FORMULARIO CLIENTE */

.client-form-section {
  background: white;
}

.client-form-box {
  background: var(--voy-gray);
  border: 1px solid var(--voy-border);
  border-radius: 34px;
  padding: 42px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  box-shadow: 0 18px 55px rgba(77, 86, 243, 0.10);
}

.form-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--voy-dark);
}

.form-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 24px;
}

.form-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-benefits span {
  background: white;
  border: 1px solid var(--voy-border);
  border-radius: 16px;
  padding: 13px 16px;
  font-weight: 800;
  color: var(--voy-dark);
}

.client-form {
  background: white;
  border-radius: 28px;
  padding: 30px;
  border: 1px solid var(--voy-border);
  box-shadow: 0 14px 40px rgba(77, 86, 243, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: 900;
  color: var(--voy-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--voy-blue-light);
  background: var(--voy-gray);
  border-radius: 16px;
  padding: 14px 16px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: var(--voy-dark);
  outline: none;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--voy-blue);
  background: white;
  box-shadow: 0 0 0 4px rgba(77, 86, 243, 0.10);
}

.form-group textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
  border: none;
  cursor: pointer;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .client-form-box {
    grid-template-columns: 1fr;
    padding: 30px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .client-form {
    padding: 24px 18px;
  }
}