body {
  font-family: "Roboto", sans-serif;
}

:root {
  --negro: #272727;
  --morado: #652D90;
  --morado-dark: #4e2270;
  --amarillo: #FFC600;
  --amarillo-dark: #e6b200;
  --naranja: #ff5700;
  --verde: #00914e;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  padding-top: 114px;
}
@media (max-width: 1399px) {
  body {
    padding-top: 70px;
  }
}

.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: #652D90;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  top: 0;
  left: 0;
  display: none;
  transition: 0.3s;
  mix-blend-mode: difference;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.3s ease;
  padding: 0;
}
#navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}
#navbar {
  /* @media (max-width: $bp-xs) {
    padding: 10px 20px;

    &.scrolled {
      padding: 8px 20px;
    }
  } */
}

.header-logo {
  margin-left: 10px;
}

img.custom-logo,
.header-logo img {
  width: 95px;
  height: auto;
  display: block;
}

.header-emprende {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  height: 70px;
  width: 100%;
}

.menu-emprende {
  display: flex;
  align-items: center;
  width: fit-content;
}

.menu-emprende-lista {
  list-style: none !important;
  margin: 0;
  padding: 0 !important;
  display: flex;
  align-items: center;
  gap: 22px;
}
.menu-emprende-lista > li {
  position: relative;
  margin: 0;
  padding: 0;
}
.menu-emprende-lista > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #272727 !important;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  padding: 10px 0;
}
.menu-emprende-lista > li > a:hover {
  opacity: 0.8;
}
.menu-emprende-lista > li.menu-item-has-children > a::after {
  font-family: "Material Icons";
  content: "\e5cf";
  font-size: 20px;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  transition: 0.3s;
}
.menu-emprende-lista > li.menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}
.menu-emprende-lista > li.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.menu-emprende-lista .sub-menu {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  z-index: 999;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
}
.menu-emprende-lista .sub-menu li {
  margin: 0;
  padding: 0;
}
.menu-emprende-lista .sub-menu li a {
  display: block;
  padding: 10px 16px;
  text-decoration: none;
  color: #272727 !important;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}
.menu-emprende-lista .sub-menu li a:hover {
  background-color: #f8f9fa;
}

.header-emprende-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: #fff;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.header-emprende-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #272727;
  position: relative;
}
.header-emprende-toggle span::before, .header-emprende-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: #272727;
}
.header-emprende-toggle span::before {
  top: -6px;
}
.header-emprende-toggle span::after {
  top: 6px;
}

.menu-emprende-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.25s;
  z-index: 9998;
}
.menu-emprende-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu-emprende-offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  width: min(92vw, 380px);
  height: 100vh;
  background: #fff;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.16);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 9999;
  overflow-y: auto;
  padding: 20px;
}
.menu-emprende-offcanvas.is-open {
  transform: translateX(0);
}

.menu-emprende-offcanvas-close {
  display: flex;
  justify-content: flex-end;
}
.menu-emprende-offcanvas-close button {
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #272727;
}

.menu-emprende-mobile-top {
  margin-bottom: 20px;
}
.menu-emprende-mobile-top ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-emprende-mobile-top li {
  border-bottom: 1px solid #eee;
}
.menu-emprende-mobile-top a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  color: #272727 !important;
  font-size: 14px;
}

.menu-emprende-mobile-top-list > li:last-child .sub-menu li:last-child {
  border-bottom: none;
}

.menu-emprende-mobile-group {
  border-top: 1px solid #eaeaea;
  padding-top: 14px;
  margin-top: 14px;
}

.menu-emprende-mobile-group-title {
  font-size: 15px;
  font-weight: 600;
  color: #272727;
  margin-bottom: 12px;
}

.menu-emprende-mobile-section {
  margin-bottom: 16px;
}

.menu-emprende-mobile-section-title {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 8px;
}

.menu-emprende-mobile-products {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-emprende-mobile-products li {
  border-bottom: 1px solid #f2f2f2;
}
.menu-emprende-mobile-products a {
  display: block;
  text-decoration: none;
  padding: 14px 8px;
  min-height: 48px;
  color: #272727 !important;
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 1399px) {
  .menu-emprende {
    display: none;
  }
  .header-emprende-toggle {
    display: inline-flex;
  }
}
.contSubmenu {
  background-color: #FFC600;
  width: 100%;
}

._submenu-contDropdowns {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

._submenu-btnEmpresa {
  position: relative;
  display: flex;
  align-items: center;
  height: 44px;
}
._submenu-btnEmpresa ._submenu-dropdown-btn::after {
  display: none;
}

._submenu-btnEmpresa360 {
  display: none;
}

@media (max-width: 1399px) {
  ._submenu-btnEmpresa360 {
    display: flex;
  }
  ._submenu-btnEmpresa {
    display: none;
  }
}
._submenu-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 44px;
}
@media (max-width: 1399px) {
  ._submenu-dropdown {
    display: none;
  }
}
._submenu-dropdown:hover ._submenu-dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
._submenu-dropdown:hover ._submenu-dropdown-btn::after {
  transform: rotate(180deg);
}

._submenu-dropdown-btn,
._submenu-btnEmpresa a {
  background-color: #FFC600;
  color: #333 !important;
  padding: 10px;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  white-space: nowrap;
}
._submenu-dropdown-btn:hover,
._submenu-btnEmpresa a:hover {
  background-color: #e6b200;
}

._submenu-dropdown-btn::after {
  font-family: "Material Icons";
  content: "\e5cf";
  font-size: 20px;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  transition: 0.3s;
}

._submenu-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 650px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  padding: 14px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.2s ease;
  pointer-events: none;
}
@media (max-width: 1300px) {
  ._submenu-dropdown-menu {
    min-width: 450px;
  }
}

._submenu-tituloDropdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
  margin-top: 12px;
}
._submenu-tituloDropdown:first-child {
  margin-top: 0;
}
._submenu-tituloDropdown span {
  font-size: 14px;
  color: #666;
}
._submenu-tituloDropdown hr {
  margin: 0;
  border: none;
  border-top: 1px solid #e5e5e5;
}

._submenu-contItemsSubMenu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 10px;
  row-gap: 10px;
  margin-bottom: 10px;
}
@media (max-width: 1300px) {
  ._submenu-contItemsSubMenu {
    grid-template-columns: 1fr 1fr;
  }
}

._submenu-itemSubMenu {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 12px 10px;
  min-height: 48px;
  border: 0.5px solid rgba(51, 51, 51, 0.06);
  border-radius: 5px;
  text-decoration: none;
}
._submenu-itemSubMenu:hover {
  background-color: #f2f2f2;
  transition: 0.3s;
}
._submenu-itemSubMenu span {
  display: block;
  color: #212529;
  font-size: 14px;
  line-height: 1.35;
  flex: 1;
}
._submenu-itemSubMenu:hover span {
  color: #000;
}

._submenu-contDropdowns ._submenu-dropdown:last-of-type ._submenu-dropdown-menu {
  left: auto;
  right: 0;
}

@media (max-width: 1670px) {
  ._submenu-contDropdowns ._submenu-dropdown:nth-last-of-type(2) ._submenu-dropdown-menu {
    left: auto;
    right: 0;
  }
}
.site-footer {
  font-family: "Roboto", sans-serif;
}

.footer-main {
  background: #272727;
  padding: 3rem 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
}

.footer-col {
  margin-bottom: 3rem;
}
.footer-col--1 {
  flex: 0 0 100%;
}
.footer-col--2 {
  flex: 0 0 50%;
}
.footer-col--3 {
  flex: 0 0 50%;
}
.footer-col--4 {
  flex: 0 0 100%;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .footer-col {
    margin-bottom: 0;
  }
  .footer-col--1 {
    flex: 0 0 25%;
    padding-right: 1.5rem;
  }
  .footer-col--2 {
    flex: 0 0 16.66667%;
    padding-right: 1rem;
  }
  .footer-col--3 {
    flex: 0 0 25%;
    padding-right: 1.5rem;
  }
  .footer-col--4 {
    flex: 0 0 33.33333%;
  }
}
.footer-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}
.footer-logo img {
  width: 140px;
  height: auto;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.footer-heading {
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FFC600;
  margin: 0;
}

* + .footer-heading {
  margin-top: 1.5rem;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav-list li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav-list li a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.6);
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
}
.footer-social a svg {
  width: 16px;
  height: 16px;
}
.footer-social a:hover {
  background: #652D90;
  border-color: #652D90;
  color: #fff;
  transform: translateY(-2px);
}

.footer-newsletter {
  margin-top: 1rem;
}
.footer-newsletter__group {
  display: flex;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-newsletter__group input[type=email] {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border: none;
  outline: none;
  padding: 11px 14px;
  font-size: 13px;
  color: #fff;
  font-family: "Roboto", sans-serif;
}
.footer-newsletter__group input[type=email]::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.footer-newsletter__group input[type=email]:focus {
  background: rgba(255, 255, 255, 0.11);
}
.footer-newsletter__group button {
  background: #652D90;
  border: none;
  padding: 0 16px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.2s;
}
.footer-newsletter__group button:hover {
  background: #4e2270;
}
.footer-newsletter__group button svg {
  flex-shrink: 0;
}

.footer-premio {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-premio__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.footer-premio__link img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.footer-premio__link span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}
.footer-premio__link:hover img {
  opacity: 1;
}
.footer-premio__link:hover span {
  color: rgba(255, 255, 255, 0.8);
}

.footer-addresses {
  background: #1f1f1f;
  padding: 14px 0;
}
.footer-addresses__text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
  text-align: center;
  line-height: 1.7;
}

.footer-bottom {
  background: #161616;
  padding: 14px 0;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  margin: 0;
  text-align: center;
}

.page-hero {
  background: linear-gradient(135deg, rgba(101, 45, 144, 0.22) 0%, rgba(101, 45, 144, 0.04) 100%), #272727;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #652D90 0%, #FFC600 100%);
}
.page-hero .contenedor-emprende {
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-hero h1 {
  font-family: "Roboto", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.01em;
}
.page-hero .page-hero__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.65);
  margin: 12px 0 0;
  line-height: 1.6;
}
.page-hero .page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
  justify-content: center;
}
.page-hero .page-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.page-hero .page-hero__breadcrumb a:hover {
  color: #FFC600;
}
.page-hero .page-hero__breadcrumb span {
  color: rgba(255, 255, 255, 0.25);
}

.svc-main {
  background: linear-gradient(160deg, #f5f3f9 0%, #fff 60%);
  padding: 56px 0 80px;
}
@media (max-width: 768px) {
  .svc-main {
    padding: 32px 0 56px;
  }
}

.svc-section {
  margin-top: 52px;
}
@media (max-width: 768px) {
  .svc-section {
    margin-top: 36px;
  }
}

.svc-intro {
  font-size: 17px;
  color: #444;
  line-height: 1.75;
  max-width: 800px;
  margin: 36px 0 0;
}
.svc-intro strong {
  color: #272727;
}
.svc-intro a {
  color: #652D90;
  text-decoration: none;
}
.svc-intro a:hover {
  text-decoration: underline;
}

.svc-heading {
  font-family: "Roboto", sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 800;
  color: #272727;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.svc-heading--second {
  margin-top: 32px;
}

.svc-subheading {
  font-family: "Roboto", sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 700;
  color: #272727;
  margin: 28px 0 10px;
}
.svc-subheading--accent {
  color: #ff5700;
  margin: 24px 0 8px;
}

.svc-text {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin: 0 0 12px;
}
.svc-text a {
  color: #ff5700;
  text-decoration: none;
}
.svc-text a:hover {
  text-decoration: underline;
}

.svc-note {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin: 16px 0 0;
}
.svc-note a {
  color: #652D90;
  font-weight: 600;
  text-decoration: none;
}
.svc-note a:hover {
  text-decoration: underline;
}

.svc-whatsapp {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-top: 20px;
}
.svc-whatsapp a {
  color: #ff5700;
  text-decoration: none;
  font-weight: 700;
}
.svc-whatsapp a:hover {
  text-decoration: underline;
}

.svc-closing {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}

.svc-highlight {
  color: #ff5700;
}

.svc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 4px;
}
.svc-list li {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  padding: 7px 0 7px 22px;
  position: relative;
  border-bottom: 1px solid rgba(101, 45, 144, 0.06);
}
.svc-list li:last-child {
  border-bottom: none;
}
.svc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 8px;
  background: #652D90;
  border-radius: 50%;
}
.svc-list li strong {
  color: #272727;
}
.svc-list li a {
  color: #652D90;
  text-decoration: none;
  font-weight: 600;
}
.svc-list li a:hover {
  text-decoration: underline;
}
.svc-list--highlight li {
  padding: 10px 0 10px 20px;
  border-bottom-color: rgba(101, 45, 144, 0.07);
}
.svc-list--highlight li::before {
  top: 17px;
  width: 7px;
  height: 7px;
  background: #ff5700;
}
.svc-list--highlight li strong {
  color: #ff5700;
}

.svc-steps {
  list-style: none;
  counter-reset: svc-step;
  padding: 0;
  margin: 0 0 16px;
}
.svc-steps > li {
  counter-increment: svc-step;
  position: relative;
  padding: 10px 0 10px 44px;
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  border-bottom: 1px solid rgba(101, 45, 144, 0.06);
}
.svc-steps > li:last-child {
  border-bottom: none;
}
.svc-steps > li::before {
  content: counter(svc-step);
  position: absolute;
  left: 0;
  top: 10px;
  width: 28px;
  height: 28px;
  background: #652D90;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 800;
  font-size: 13px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-steps > li strong {
  color: #272727;
}
.svc-steps > li a {
  color: #652D90;
  font-weight: 600;
  text-decoration: none;
}
.svc-steps > li a:hover {
  text-decoration: underline;
}

.svc-ol {
  list-style: none;
  padding-left: 20px;
  margin: 0 0 24px;
  counter-reset: svc-counter;
}
.svc-ol li {
  counter-increment: svc-counter;
  position: relative;
  padding-left: 10px;
  margin-bottom: 20px;
}
.svc-ol li::before {
  content: counter(svc-counter) ".";
  position: absolute;
  left: -20px;
  top: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 800;
  color: #652D90;
  font-size: 15px;
}
.svc-ol li strong {
  font-size: 15px;
  color: #272727;
  display: block;
  margin-bottom: 6px;
}
.svc-ol li p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.svc-types {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (max-width: 768px) {
  .svc-types {
    grid-template-columns: 1fr;
  }
}
.svc-types li {
  background: rgba(101, 45, 144, 0.05);
  border: 1px solid rgba(101, 45, 144, 0.12);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}
.svc-types li strong {
  color: #652D90;
  display: block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.svc-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.svc-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(101, 45, 144, 0.1);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 2px 12px rgba(39, 39, 39, 0.04);
  transition: box-shadow 0.18s, border-color 0.18s;
}
.svc-benefit:hover {
  border-color: rgba(101, 45, 144, 0.25);
  box-shadow: 0 4px 20px rgba(39, 39, 39, 0.07);
}
.svc-benefit__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.svc-benefit__title {
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #272727;
  margin: 0 0 4px;
}
.svc-benefit__desc {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

.svc-form-box {
  background: #1e1e2e;
  border-radius: 20px;
  padding: 36px 32px;
  position: sticky;
  top: 100px;
}
@media (max-width: 768px) {
  .svc-form-box {
    position: static;
    padding: 28px 20px;
  }
}
.svc-form-box__title {
  font-family: "Roboto", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.35;
}
.svc-form-box__subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 24px;
}
.svc-form-box .wpcf7 input[type=text],
.svc-form-box .wpcf7 input[type=email],
.svc-form-box .wpcf7 input[type=tel] {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  padding: 10px 14px;
  margin-bottom: 12px;
  transition: border-color 0.18s, box-shadow 0.18s;
  box-sizing: border-box;
}
.svc-form-box .wpcf7 input[type=text]::placeholder,
.svc-form-box .wpcf7 input[type=email]::placeholder,
.svc-form-box .wpcf7 input[type=tel]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.svc-form-box .wpcf7 input[type=text]:focus,
.svc-form-box .wpcf7 input[type=email]:focus,
.svc-form-box .wpcf7 input[type=tel]:focus {
  border-color: #652D90;
  box-shadow: 0 0 0 3px rgba(101, 45, 144, 0.3);
  background: rgba(255, 255, 255, 0.12);
  outline: none;
  color: #fff;
}
.svc-form-box .wpcf7 button[type=submit],
.svc-form-box .wpcf7 input[type=submit] {
  display: block;
  width: 100%;
  padding: 12px 24px;
  background: #ff5700;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s;
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.svc-form-box .wpcf7 button[type=submit]:hover,
.svc-form-box .wpcf7 input[type=submit]:hover {
  background: #d64800;
  transform: translateY(-1px);
}
.svc-form-box .wpcf7 label {
  display: block;
  font-size: 0;
}
.svc-form-box .wpcf7 p {
  margin: 0;
}
.svc-form-box .wpcf7 .wpcf7-response-output {
  margin: 12px 0 0;
  border: none;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  padding: 0;
}
.svc-form-box .wpcf7 .wpcf7-not-valid-tip {
  color: #ff6b6b;
  font-size: 12px;
}

.svc-product-img {
  border-radius: 16px;
  width: 100%;
}

.svc-product-card {
  background: #fff;
  border: 1px solid rgba(101, 45, 144, 0.12);
  border-radius: 16px;
  padding: 32px 28px 28px;
  box-shadow: 0 4px 24px rgba(39, 39, 39, 0.06);
}
.svc-product-card__eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 6px;
}
.svc-product-card__title {
  font-family: "Roboto", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 900;
  color: #272727;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.svc-product-card__includes-label {
  font-size: 13px;
  font-weight: 700;
  color: #ff5700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 8px;
}
.svc-product-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.svc-product-card__list li {
  font-size: 14px;
  color: #555;
  padding: 5px 0 5px 22px;
  position: relative;
  line-height: 1.4;
}
.svc-product-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: #652D90;
  border-radius: 50%;
}
.svc-product-card__note {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
  margin: 0 0 20px;
  font-style: italic;
}
.svc-product-card__price {
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: #272727;
  margin: 0 0 20px;
}
.svc-product-card__price .woocommerce-Price-amount {
  color: #272727;
}
.svc-product-card__price del {
  color: #aaa;
  font-size: 1rem;
}
.svc-product-card__price ins {
  text-decoration: none;
}

.svc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 28px;
  background: #652D90;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
}
.svc-btn:hover {
  background: #4e2270;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(101, 45, 144, 0.3);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.75rem;
}
.row > * {
  box-sizing: border-box;
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
.row.g-5 {
  margin: 0 -1.5rem;
  row-gap: 3rem;
}
.row.g-5 > * {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 992px) {
  .col-lg-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-lg-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
}
.align-items-center {
  align-items: center;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
  .mt-lg-0 {
    margin-top: 0;
  }
  .mb-lg-0 {
    margin-bottom: 0;
  }
}
