:root {
  --bg: #f5f4fa;
  --surface: #ffffff;
  --surface-alt: #eeecf5;
  --surface-strong: #ffffff;
  --ink: #171c26;
  --muted: #5c6573;
  --line: #d4cfe3;
  --accent: #5e35b1;
  --accent-strong: #3d2277;
  --accent-soft: rgba(94, 53, 177, 0.12);
  --support: #1f9b6a;
  --support-strong: #157a52;
  --shadow: 0 18px 48px rgba(28, 22, 58, 0.07);
  --shadow-sm: 0 8px 24px rgba(28, 22, 58, 0.05);
  --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.7) inset, var(--shadow-sm);
  --radius: 20px;
  --radius-sm: 14px;
  --wrap: 1160px;
  --section-y: clamp(2.5rem, 5vw, 4.25rem);
  --section-y-tight: clamp(1.75rem, 3vw, 2.75rem);
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(ellipse 120% 80% at 10% -10%, rgba(94, 53, 177, 0.07), transparent 42%),
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(31, 155, 106, 0.05), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 55%);
  font-family: var(--font-sans);
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-strong);
}

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

.wrap {
  width: min(100% - 2rem, var(--wrap));
  margin: 0 auto;
}

.site-topbar {
  background: #22183d;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
}

.site-topbar__inner,
.site-header__inner,
.site-footer__inner,
.vc-section-heading--split,
.vc-final-cta__grid,
.vc-why__grid,
.vc-service-content__grid,
.vc-archive-hero__grid,
.vc-hero__grid {
  display: flex;
  gap: 1.25rem;
}

.site-topbar__inner {
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
}

.site-topbar__inner p {
  margin: 0;
}

.site-topbar__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.site-topbar__links a {
  color: rgba(255, 255, 255, 0.88);
}

.site-header,
.site-footer {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(221, 216, 235, 0.8);
}

.site-header__inner {
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.site-branding {
  min-width: 0;
}

.site-title {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 700;
}

.site-tagline {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-branding .custom-logo-link,
.site-branding a.vc-site-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.site-branding .custom-logo-link img.custom-logo,
.site-branding a.vc-site-logo img.custom-logo {
  height: auto;
  width: auto;
  max-height: 52px;
  max-width: min(280px, 44vw);
  object-fit: contain;
}

@media (max-width: 720px) {
  .site-branding .custom-logo-link img.custom-logo,
  .site-branding a.vc-site-logo img.custom-logo {
    max-height: 44px;
    max-width: min(240px, 58vw);
  }
}

.vc-locale-notice {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(94, 53, 177, 0.2);
  background: rgba(94, 53, 177, 0.06);
  color: var(--ink);
  font-size: 0.95rem;
}

.vc-locale-notice p {
  margin: 0;
}

.vc-locale-notice--compact {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.vc-archive-lang-hint {
  padding-top: 1.25rem;
}

.site-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.site-nav .menu,
.site-footer__nav .menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav .menu {
  justify-content: center;
  flex: 0 0 auto;
}

.site-header__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font: inherit;
  color: var(--ink);
}

.site-main {
  padding: 0 0 5rem;
}

.page-shell,
.content-grid,
.shop-wrap {
  display: grid;
  gap: 1.25rem;
}

.page-shell {
  padding-top: 2.5rem;
}

.card,
.entry-content,
.woocommerce .woocommerce-MyAccount-navigation,
.woocommerce .woocommerce-MyAccount-content {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card {
  padding: 1.5rem 1.45rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: rgba(94, 53, 177, 0.22);
  box-shadow: var(--shadow);
}

.entry-content {
  box-shadow: none;
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

h1,
h2,
h3,
.entry-title,
.page-title {
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 1.15;
}

h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.25;
}

.entry-title,
.page-title,
.hero-section h1,
.vc-hero h1,
.vc-service-hero h1 {
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.vc-homepage .vc-section-heading h2,
.vc-section-heading h2 {
  max-width: 28rem;
}

.vc-section-heading > div > p:last-of-type:not(.eyebrow),
.vc-section-heading > p {
  max-width: 52ch;
  margin-top: 0.75rem;
  font-size: 1.05rem;
  line-height: 1.55;
}

.hero-copy,
.entry-content,
.archive-description,
.woocommerce-result-count,
.vc-form-description,
.vc-section-heading p:last-child {
  color: var(--muted);
}

.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--support-strong);
  font-size: 0.72rem;
  margin: 0 0 0.75rem;
  font-weight: 700;
}

.vc-section {
  padding: var(--section-y) 0;
}

.vc-section--hero {
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: var(--section-y-tight);
}

.vc-section--band {
  background: linear-gradient(180deg, var(--surface-alt) 0%, rgba(238, 236, 245, 0.35) 100%);
  border-block: 1px solid rgba(212, 207, 227, 0.55);
}

.vc-section--cta {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.vc-homepage .vc-final-cta {
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button:hover {
  color: #fff;
  background: var(--accent-strong);
}

.button--ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

.button--ghost:hover {
  background: var(--surface-alt);
  color: var(--ink);
}

.hero-actions,
.vc-card-actions,
.vc-direct-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill,
.vc-price-from,
.wc-block-components-notice-banner,
.added_to_cart.wc-forward {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.88rem;
  font-weight: 700;
}

.vc-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.28rem 0.7rem;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(94, 53, 177, 0.1);
  color: var(--accent-strong);
}

.vc-badge--category {
  background: rgba(31, 155, 106, 0.12);
  color: var(--support-strong);
}

.vc-badge--shop {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.vc-badge--muted {
  background: rgba(92, 101, 115, 0.12);
  color: var(--muted);
}

.vc-service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
}

.vc-service-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.35rem 1.35rem 0.85rem;
  border-bottom: 1px solid rgba(212, 207, 227, 0.65);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(247, 245, 252, 0.5) 100%);
}

.vc-service-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.vc-service-card__price {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent-strong);
  white-space: nowrap;
}

.vc-service-card__body {
  flex: 1;
  padding: 1.15rem 1.35rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.vc-service-card__title {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.3;
}

.vc-service-card__title a {
  color: inherit;
}

.vc-service-card__title a:hover {
  color: var(--accent);
}

.vc-service-card__tagline {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.vc-service-card__footer {
  margin-top: auto;
  padding: 1rem 1.35rem 1.35rem;
  border-top: 1px solid rgba(212, 207, 227, 0.45);
  background: rgba(255, 255, 255, 0.5);
}

.vc-product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
}

.vc-product-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.2rem 1.35rem 0.9rem;
}

.vc-product-card__price {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--accent-strong);
}

.vc-product-card__price .woocommerce-Price-amount {
  font-weight: inherit;
}

.vc-product-card__body {
  padding: 0 1.35rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vc-product-card__title {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.35;
}

.vc-product-card__title a {
  color: inherit;
}

.vc-product-card__excerpt {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.vc-product-card__actions {
  margin-top: auto;
  padding: 1rem 1.35rem 1.35rem;
  border-top: 1px solid rgba(212, 207, 227, 0.45);
}

.vc-product-card--placeholder {
  padding: 1.5rem 1.45rem;
  grid-column: 1 / -1;
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}

.vc-product-card--placeholder .vc-product-card__excerpt {
  margin-left: auto;
  margin-right: auto;
}

.vc-link-inline {
  font-weight: 600;
}

.vc-archive-hero,
.vc-service-hero,
.vc-service-content,
.vc-service-lists,
.vc-service-calculator,
.vc-faq {
  padding: var(--section-y-tight) 0;
}

.vc-services-archive .vc-services-overview {
  padding-bottom: var(--section-y);
}

.vc-hero__grid,
.vc-archive-hero__grid,
.vc-service-hero__grid,
.vc-final-cta__grid,
.vc-why__grid,
.vc-service-content__grid {
  align-items: stretch;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.vc-final-cta__grid > .card:last-child {
  border: 1px solid rgba(94, 53, 177, 0.15);
  background: linear-gradient(165deg, #ffffff 0%, #f7f5fc 100%);
}

.vc-final-cta__card {
  background: linear-gradient(145deg, #2a1a52 0%, #5e35b1 48%, #3d2277 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(45, 25, 93, 0.35);
}

.vc-final-cta__card .eyebrow {
  color: rgba(180, 255, 210, 0.95);
}

.vc-final-cta__card h2 {
  color: #fff;
}

.vc-final-cta__card p {
  color: rgba(255, 255, 255, 0.88);
}

.vc-final-cta__card .button--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.vc-final-cta__card .button--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.vc-final-cta__card .button:not(.button--ghost) {
  background: #fff;
  color: var(--accent-strong);
}

.vc-final-cta__card .button:not(.button--ghost):hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent-strong);
}

.vc-final-cta__card .vc-direct-links a {
  color: rgba(255, 255, 255, 0.95);
}

.vc-hero__grid > *:first-child,
.vc-service-hero__grid > *:first-child {
  flex: 1.3;
}

.vc-hero__grid > *:last-child,
.vc-service-hero__grid > *:last-child {
  flex: 0.9;
}

.vc-hero__content,
.vc-hero__panel,
.vc-final-cta__card {
  padding: 2rem;
  border-radius: calc(var(--radius) + 4px);
}

.vc-hero__content {
  background:
    radial-gradient(circle at top right, rgba(38, 169, 108, 0.12), transparent 32%),
    linear-gradient(145deg, #ffffff 0%, #f1effa 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.vc-hero__panel {
  background: linear-gradient(180deg, #2d195d 0%, #522d9b 100%);
  color: #fff;
}

.vc-hero__panel h2,
.vc-hero__panel a,
.vc-hero__panel strong {
  color: #fff;
}

.vc-hero__contacts {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}

.vc-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.vc-section-heading {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.vc-section-heading--split {
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.vc-section-heading--split .button {
  flex-shrink: 0;
}

.vc-section-heading--tight {
  margin-bottom: 0.75rem;
}

.vc-bullet-grid,
.vc-services-grid,
.vc-review-grid,
.vc-case-grid,
.vc-steps-grid,
.vc-account-grid,
.vc-account-list,
.vc-three-column-grid {
  display: grid;
  gap: 1.25rem;
}

.vc-bullet-grid,
.vc-review-grid,
.vc-case-grid,
.vc-account-grid,
.vc-account-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vc-bullet-card {
  min-height: 5.5rem;
  display: flex;
  align-items: center;
}

.vc-bullet-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.vc-services-grid,
.vc-product-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.vc-three-column-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vc-steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vc-step-card {
  position: relative;
  padding-top: 3.5rem;
}

.vc-step-number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--support);
  color: #fff;
  font-weight: 700;
}

.vc-case-card__split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.vc-check-list {
  display: grid;
  gap: 1rem;
}

.vc-review-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.vc-stars {
  margin: 0 0 0.75rem;
  color: var(--support);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
}

.vc-form-shell {
  display: grid;
  gap: 1rem;
}

.vc-form {
  display: grid;
  gap: 1rem;
}

.vc-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.vc-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.94rem;
}

.vc-form input,
.vc-form textarea,
.vc-form select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.vc-form__full {
  grid-column: 1 / -1;
}

.vc-form__trap {
  position: absolute;
  left: -9999px;
}

.vc-form-notice {
  padding: 0.85rem 1rem;
  border-radius: 16px;
  font-weight: 600;
}

.vc-form-notice--success {
  background: rgba(38, 169, 108, 0.12);
  color: var(--support-strong);
}

.vc-form-notice--warning {
  background: rgba(94, 53, 177, 0.1);
  color: var(--accent-strong);
}

.vc-form-notice--error {
  background: rgba(220, 72, 72, 0.12);
  color: #b03f3f;
}

.vc-service-sidebar .vc-form-shell {
  gap: 0.75rem;
}

.vc-faq-list {
  display: grid;
  gap: 0.85rem;
}

.vc-faq-item summary {
  cursor: pointer;
  font-weight: 700;
}

.vc-faq-item .entry-content {
  margin-top: 0.9rem;
}

.vc-account-section {
  display: grid;
  gap: 1rem;
}

.vc-account-card p {
  margin: 0.2rem 0 0.6rem;
}

.woocommerce .woocommerce-MyAccount-navigation,
.woocommerce .woocommerce-MyAccount-content {
  padding: 1.25rem;
}

.woocommerce .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.woocommerce .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 0.8rem 0.95rem;
  border-radius: 14px;
  background: var(--surface-alt);
  color: var(--ink);
  font-weight: 600;
}

.woocommerce .woocommerce-MyAccount-navigation .is-active a,
.woocommerce .woocommerce-MyAccount-navigation a:hover {
  background: var(--accent);
  color: #fff;
}

.woocommerce form .form-row {
  margin-bottom: 1rem;
}

.shop-wrap .products,
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.woocommerce ul.products li.product.vc-product-loop,
.woocommerce-page ul.products li.product.vc-product-loop {
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.vc-product-loop__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.vc-product-loop__card:hover {
  border-color: rgba(94, 53, 177, 0.22);
  box-shadow: var(--shadow);
}

.vc-product-loop__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, var(--surface-alt) 0%, #e8e4f2 100%);
  overflow: hidden;
}

.vc-product-loop__img-link {
  display: block;
  height: 100%;
}

.vc-product-loop__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.vc-product-loop__card:hover .vc-product-loop__img {
  transform: scale(1.03);
}

.vc-product-loop__sale {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--support);
  color: #fff;
}

.vc-product-loop__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.45rem;
  padding: 1.15rem 1.25rem 1.25rem;
}

.vc-product-loop__body .vc-badge {
  margin-bottom: 0.15rem;
}

.vc-product-loop__title {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
}

.vc-product-loop__title a {
  color: inherit;
}

.vc-product-loop__title a:hover {
  color: var(--accent);
}

.vc-product-loop__excerpt {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
  flex: 1;
}

.vc-product-loop__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-top: 0.5rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(212, 207, 227, 0.55);
}

.vc-product-loop__price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-strong);
}

.vc-product-loop__price .woocommerce-Price-amount {
  font-weight: inherit;
}

.woocommerce ul.products li.product .vc-product-loop__footer .button,
.woocommerce ul.products li.product .vc-product-loop__footer a.button {
  padding: 0.55rem 1rem !important;
  font-size: 0.88rem !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.vc-product-card {
  width: auto !important;
  margin: 0 !important;
}

.vc-shop__header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(212, 207, 227, 0.75);
}

.vc-shop__header .page-title {
  margin: 0 0 0.5rem;
}

.vc-shop .woocommerce-result-count,
.vc-shop .woocommerce-ordering {
  margin-top: 1rem;
}

.vc-shop .woocommerce-breadcrumb {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.woocommerce div.product div.summary,
.woocommerce div.product div.images {
  margin-bottom: 2rem;
}

.woocommerce .button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button {
  border-radius: 999px !important;
  background: var(--accent) !important;
  color: #fff !important;
}

.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover {
  background: var(--accent-strong) !important;
}

.site-footer {
  margin-top: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, var(--surface-alt) 100%);
}

.site-footer__inner {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: clamp(2rem, 4vw, 3rem) 0 1.5rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 14rem);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.site-footer__name {
  display: block;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.site-footer__lede {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer__company,
.site-footer__address {
  margin: 0 0 0.45rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.site-footer__heading {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.site-footer__nav .menu {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.site-footer__nav .menu a {
  font-weight: 600;
  color: var(--ink);
}

.site-footer__nav .menu a:hover {
  color: var(--accent);
}

.site-footer__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.site-footer__contact-list a {
  font-weight: 600;
  font-size: 1rem;
}

.site-footer__bar {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  padding-top: 1.25rem;
  border-top: 1px solid rgba(212, 207, 227, 0.75);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.site-footer__legal {
  margin: 0;
  font-size: 0.82rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.site-footer__legal a {
  font-weight: 600;
  color: var(--muted);
}

.site-footer__legal a:hover {
  color: var(--accent);
}

.site-footer__legal-sep {
  color: rgba(92, 101, 115, 0.45);
}

@media (max-width: 1200px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.vc-lang-switcher {
  flex-shrink: 0;
}

.vc-lang-switcher--header {
  display: flex;
  align-items: center;
}

.vc-lang-switcher--header .vc-lang-switcher__list {
  flex-wrap: nowrap;
}

.vc-lang-switcher--footer {
  justify-content: flex-start;
}

.site-footer__col--lang {
  min-width: 0;
}

.vc-lang-switcher__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.3rem;
}

.vc-lang-switcher__list li {
  margin: 0;
}

.vc-lang-switcher__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  padding: 0.32rem 0.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  line-height: 1;
  border: 1px solid rgba(212, 207, 227, 0.95);
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

a.vc-lang-switcher__pill:hover {
  border-color: rgba(94, 53, 177, 0.45);
  color: var(--accent-strong);
  background: var(--surface-alt);
}

.vc-lang-switcher__pill--current {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  cursor: default;
}

.vc-whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  background: var(--support);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(38, 169, 108, 0.32);
}

.vc-whatsapp-float:hover {
  color: #fff;
  background: var(--support-strong);
}

.button--small {
  padding: 0.45rem 0.85rem !important;
  font-size: 0.85rem !important;
}

.vc-page-main {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
}

.vc-page-shell {
  max-width: 52rem;
}

.vc-page-card {
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.vc-page-header .entry-title {
  margin: 0 0 1rem;
}

.vc-page-content {
  font-size: 1.02rem;
}

.vc-prose > *:first-child {
  margin-top: 0;
}

.vc-prose > *:last-child {
  margin-bottom: 0;
}

.vc-prose h2,
.vc-prose h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.65rem;
}

.vc-prose ul,
.vc-prose ol {
  padding-left: 1.25rem;
  margin: 0.75rem 0 1rem;
}

.vc-page-intro {
  margin-bottom: 1.75rem;
}

.vc-page-lead {
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.vc-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.5rem 0;
}

.vc-page-link-list {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
}

.vc-detail-card {
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, var(--surface-alt) 100%);
  margin: 1.25rem 0;
}

.vc-detail-card__title {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
}

.vc-detail-card__line {
  margin: 0 0 0.65rem;
  color: var(--ink);
}

.vc-detail-card__meta {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.vc-detail-card__label {
  font-weight: 700;
  color: var(--ink);
  margin-right: 0.25rem;
}

.vc-contact-details__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.vc-legal-nav {
  margin: 1.25rem 0 1.75rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--surface-strong);
}

.vc-legal-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.vc-legal-nav a {
  font-weight: 600;
  font-size: 0.9rem;
}

.vc-legal-prose {
  margin-top: 1.5rem;
}

.vc-legal-prose h2 {
  margin-top: 2rem;
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
}

.vc-legal-prose h2:first-child {
  margin-top: 0;
}

.vc-legal-prose p,
.vc-legal-prose li {
  color: var(--muted);
  line-height: 1.65;
}

.vc-legal-lede {
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.6;
}

.vc-legal-layer .vc-page-shell {
  max-width: 48rem;
}

.vc-single-service .vc-section-heading--tight {
  margin-bottom: 1rem;
}

.vc-svc-hero__tagline {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
  max-width: 40rem;
}

.vc-svc-hero__panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vc-svc-hero__price {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-strong);
}

.vc-svc-meta {
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.vc-svc-meta dt {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}

.vc-svc-meta dd {
  margin: 0.2rem 0 0;
  font-weight: 600;
}

.vc-svc-sidebar__title {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.vc-svc-sidebar__hint {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.vc-svc-list-card h2 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
}

.vc-svc-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.55;
}

.vc-svc-list__empty {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.vc-svc-pricing__body {
  margin: 0 0 1.25rem;
  color: var(--muted);
  line-height: 1.6;
}

.vc-svc-final-cta {
  padding: var(--section-y-tight) 0;
}

.vc-svc-final-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: linear-gradient(120deg, #f7f5fc 0%, #eef6f2 100%);
  border: 1px solid rgba(94, 53, 177, 0.15);
}

.vc-svc-final-cta__text {
  flex: 1;
  min-width: min(100%, 18rem);
}

.vc-svc-final-cta__text h2 {
  margin: 0.35rem 0 0.5rem;
}

.vc-svc-final-cta__text p {
  margin: 0;
  color: var(--muted);
}

.vc-single-product__top {
  margin-bottom: 2rem;
}

.vc-single-product__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
}

.vc-single-product__summary {
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.vc-single-product__summary .product_title {
  margin-top: 0;
}

.vc-single-product__trust {
  margin: 0 0 2.5rem;
}

.vc-single-product__trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.vc-trust-card__title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.vc-trust-card p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.woocommerce div.product .woocommerce-tabs {
  margin-top: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  border-bottom: 1px solid var(--line);
}

@media (max-width: 1080px) {
  .vc-services-grid,
  .vc-product-preview,
  .vc-bullet-grid,
  .vc-review-grid,
  .vc-case-grid,
  .vc-account-grid,
  .vc-account-list,
  .vc-three-column-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vc-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-topbar__inner,
  .site-header__inner,
  .vc-section-heading--split,
  .vc-final-cta__grid,
  .vc-why__grid,
  .vc-service-content__grid,
  .vc-archive-hero__grid,
  .vc-hero__grid,
  .vc-service-hero__grid {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
  }

  .site-nav.is-open {
    display: flex;
    flex-direction: column;
  }

  .site-nav .menu,
  .site-footer__nav .menu,
  .site-header__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav .menu {
    justify-content: start;
  }

  .vc-form__grid,
  .vc-case-card__split,
  .shop-wrap .products,
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .vc-single-product__grid,
  .vc-single-product__trust-grid {
    grid-template-columns: 1fr;
  }

  .vc-svc-final-cta__inner {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .vc-services-grid,
  .vc-product-preview,
  .vc-bullet-grid,
  .vc-review-grid,
  .vc-case-grid,
  .vc-account-grid,
  .vc-account-list,
  .vc-three-column-grid,
  .vc-steps-grid {
    grid-template-columns: 1fr;
  }

  .vc-hero__content,
  .vc-hero__panel,
  .vc-final-cta__card,
  .card {
    padding: 1.15rem;
  }

  .site-topbar__links,
  .hero-actions,
  .vc-card-actions,
  .vc-direct-links,
  .site-header__actions {
    width: 100%;
  }

  .button,
  .button--ghost {
    width: 100%;
  }
}
