:root {
  --brand-primary: #7a1f33;
  --brand-primary-hover: #661a2b;
  --brand-bg: #f7f1e8;
  --brand-text: #1f2937;
  --brand-muted: #5b6472;
  --brand-border: #e8dccb;
  --focus-ring: #a62f48;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--brand-text);
  background: radial-gradient(circle at top right, #fff7ea 0, #f8f3ec 35%, #f6f2eb 100%);
}

h1, h2, h3, h4, h5, h6,
.navbar-brand,
.btn {
  font-family: "Lexend", sans-serif;
}

a {
  color: var(--brand-primary);
}

a:hover {
  color: var(--brand-primary-hover);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1040;
  background: #fff;
  color: #111;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid var(--brand-border);
}

:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
}

.navbar {
  box-shadow: 0 6px 16px rgba(20, 18, 16, 0.04);
}

.vc-header {
  position: sticky;
  top: 0;
  z-index: 1030;
}

.vc-header__nav {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(232, 220, 203, 0.78);
  box-shadow: 0 8px 28px rgba(20, 18, 16, 0.05);
  backdrop-filter: blur(14px);
}

.vc-header__inner {
  max-width: 1220px;
  margin: 0 auto;
  min-height: 82px;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.vc-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.vc-header__brand--logo {
  gap: 0.7rem;
}

.vc-header__logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
  border-radius: 50%;
  transition: transform 220ms ease, filter 220ms ease;
  filter: drop-shadow(0 2px 6px rgba(200, 155, 60, 0.18));
}

.vc-header__brand:hover .vc-header__logo-img {
  transform: scale(1.06);
  filter: drop-shadow(0 4px 16px rgba(200, 155, 60, 0.42));
}

.vc-header__brand-label {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.vc-header__brand-label strong {
  font-family: "Quicksand", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1a1a;
}

.vc-header__brand-label span {
  font-family: "Quicksand", sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #c89b3c;
  text-transform: uppercase;
}

.vc-header__brand-mark {
  width: 40px;
  height: 40px;
  border: 2px solid var(--brand-primary);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.vc-header__brand-text {
  display: inline-flex;
  flex-direction: column;
  color: #222;
  font-family: "Quicksand", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.05;
  text-transform: uppercase;
}

.vc-header__brand-text em {
  font-style: normal;
  color: var(--brand-muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.vc-header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--brand-border);
  border-radius: 0.9rem;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.22rem;
}

.vc-header__toggle-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-primary);
}

.vc-header__collapse {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

@media (min-width: 992px) {
  .vc-header__collapse.collapse {
    display: flex !important;
  }
}

.vc-header__links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

.vc-header__link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0.65rem 1.02rem;
  border-radius: 999px;
  color: #2f3441;
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.vc-header__link:hover,
.vc-header__link.is-active {
  color: var(--brand-primary);
  background: #f8edf1;
  box-shadow: inset 0 0 0 1px rgba(122, 31, 51, 0.06);
}

.vc-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
  flex-shrink: 0;
}

.vc-header__inline-form {
  margin: 0;
}

.vc-btn-ghost,
.vc-btn-solid,
.vc-account {
  min-height: 48px;
  padding: 0.7rem 1.18rem;
  border-radius: 999px;
  font-family: "Quicksand", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.vc-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  background: transparent;
  border: 1.5px solid var(--brand-primary);
}

.vc-btn-ghost:hover,
.vc-btn-ghost.is-active {
  color: #fff;
  background: var(--brand-primary);
}

.vc-btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--brand-primary);
  border: 1.5px solid var(--brand-primary);
}

.vc-btn-solid:hover {
  color: #fff;
  background: var(--brand-primary-hover);
  border-color: var(--brand-primary-hover);
  box-shadow: 0 10px 24px rgba(122, 31, 51, 0.18);
}

.vc-account {
  display: inline-flex;
  align-items: center;
  gap: 0.68rem;
  border: 1px solid var(--brand-border);
  background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
  color: #28303f;
  padding: 0.42rem 0.7rem 0.42rem 0.48rem;
  box-shadow: 0 8px 18px rgba(122, 31, 51, 0.06);
}

.vc-account:hover,
.vc-account:focus {
  border-color: rgba(122, 31, 51, 0.28);
  color: inherit;
}

.vc-account__crest {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top left, #fff 0%, #f6dfe6 55%, #f0cfd8 100%);
  border: 1px solid rgba(122, 31, 51, 0.16);
  overflow: hidden;
  flex: 0 0 auto;
}

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

.vc-account__crest-fallback {
  color: var(--brand-primary);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.vc-account__content {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.26rem;
  min-width: 0;
}

.vc-account__meta {
  display: inline-flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.36rem;
}

.vc-account__tier {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.28rem;
  padding: 0.08rem 0.48rem;
  border-radius: 999px;
  background: var(--brand-primary);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.vc-account__name {
  max-width: 7rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #151821;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
}

.vc-account__role {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.28rem;
  padding: 0.08rem 0.48rem;
  border-radius: 999px;
  background: rgba(122, 31, 51, 0.06);
  color: var(--brand-muted);
  font-size: 0.66rem;
  font-weight: 800;
}

.vc-account__caret {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(122, 31, 51, 0.05);
  color: var(--brand-muted);
  flex: 0 0 auto;
}

.vc-account__caret svg {
  width: 14px;
  height: 14px;
}

.vc-account__menu {
  min-width: 16rem;
  border-radius: 1rem;
  border: 1px solid var(--brand-border);
  box-shadow: 0 18px 44px rgba(20, 18, 16, 0.12);
  padding: 0.5rem;
}

.vc-account__menu .dropdown-item {
  border-radius: 0.7rem;
}

.vc-header--app .vc-header__actions {
  margin-left: auto;
}

@media (max-width: 991.98px) {
  .vc-header__inner {
    flex-wrap: wrap;
    align-items: center;
    padding: 0.85rem 1rem;
  }

  .vc-header__toggle {
    display: inline-flex;
  }

  .vc-header__collapse {
    width: 100%;
    flex-basis: 100%;
    display: block;
  }

  .vc-header__collapse:not(.show) {
    display: none;
  }

  .vc-header__links {
    flex-direction: column;
    align-items: stretch;
    margin-top: 0.75rem;
    justify-content: flex-start;
    gap: 0.45rem;
  }

  .vc-header__link {
    width: 100%;
    justify-content: flex-start;
  }

  .vc-header__actions {
    margin-top: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .vc-btn-ghost,
  .vc-btn-solid,
  .vc-account {
    width: 100%;
    justify-content: center;
  }

  .vc-account__content {
    align-items: center;
  }

  .vc-account__meta {
    min-width: auto;
    justify-content: center;
  }

  .vc-account__name {
    max-width: none;
  }
}

@media (max-width: 390px) {
  .vc-header__inner {
    min-height: 74px;
    padding: 0.72rem 0.8rem;
    gap: 0.8rem;
  }

  .vc-header__brand {
    min-width: 0;
    gap: 0.58rem;
  }

  .vc-header__logo-img {
    width: 40px;
    height: 40px;
  }

  .vc-header__brand-label strong {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
  }

  .vc-header__brand-label span {
    font-size: 0.54rem;
    letter-spacing: 0.06em;
  }

  .vc-header__toggle {
    width: 42px;
    height: 42px;
  }

  .vc-header__link,
  .vc-btn-ghost,
  .vc-btn-solid,
  .vc-account {
    min-height: 46px;
    font-size: 0.9rem;
  }

  .vc-footer {
    padding: 54px 20px 0;
  }

  .vc-footer__inner {
    gap: 22px;
    padding-bottom: 30px;
  }

  .vc-footer__logo {
    gap: 10px;
    align-items: center;
  }

  .vc-footer__logo-img {
    width: 46px;
    height: 46px;
  }

  .vc-footer__logo-text {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
  }

  .vc-footer__logo-text em {
    font-size: 0.56rem;
    letter-spacing: 0.06em;
  }

  .vc-footer__brand-desc,
  .vc-footer__links a {
    font-size: 0.82rem;
  }

  .vc-footer__socials {
    gap: 8px;
  }

  .vc-footer__social {
    width: 34px;
    height: 34px;
  }

  .vc-footer__bottom {
    padding: 16px 0 18px;
    font-size: 0.72rem;
  }
}

.nav-link {
  color: #334155;
}

.nav-link.active,
.nav-link:hover {
  color: var(--brand-primary);
}

.navbar .dropdown-menu {
  border-radius: 0.85rem;
  border: 1px solid var(--brand-border);
  box-shadow: 0 18px 40px rgba(20, 18, 16, 0.10);
}

.navbar .dropdown-item {
  font-family: "Source Sans 3", sans-serif;
  padding: 0.65rem 1rem;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background: rgba(122, 31, 51, 0.08);
  color: var(--brand-primary);
}

.navbar .dropdown-header {
  color: var(--brand-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.admin-menu-btn__icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.btn-brand {
  color: #fff;
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.btn-brand:hover,
.btn-brand:focus {
  color: #fff;
  background-color: var(--brand-primary-hover);
  border-color: var(--brand-primary-hover);
}

.btn-outline-brand {
  color: var(--brand-primary);
  border: 1px solid var(--brand-primary);
}

.btn-outline-brand:hover {
  color: #fff;
  background: var(--brand-primary);
}

.page-builder-renderer {
  width: 100%;
}

.page-builder-renderer section {
  position: relative;
  padding: 4rem 0;
}

.page-builder-renderer section + section {
  margin-top: 0;
}

.page-builder-renderer .page-block {
  margin-bottom: 1.25rem;
}

.page-builder-renderer .page-block__title {
  font-family: "Lexend", sans-serif;
  font-size: clamp(1.5rem, 2vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: var(--brand-primary);
}

.page-builder-renderer .page-block__subtitle {
  color: var(--brand-muted);
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.page-builder-renderer .page-block__text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--brand-text);
}

.page-builder-renderer .page-list-card {
  padding: 0.75rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--brand-border);
  box-shadow: 0 12px 30px rgba(32, 21, 19, 0.06);
}

.page-builder-preview {
  background:
    radial-gradient(circle at top left, rgba(122, 31, 51, 0.06), transparent 30%),
    #fff;
  overflow: auto;
  max-height: calc(100vh - 14rem);
  min-height: 32rem;
}

.page-builder-preview__viewport {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-width: 100%;
  min-height: 100%;
  height: 100%;
  overflow: auto;
}

.page-builder-preview__frame {
  display: block;
  border: 0;
  border-radius: 0.9rem;
  background: #fff;
  box-shadow: 0 12px 30px rgba(32, 21, 19, 0.08);
  transition: width 0.18s ease;
  margin: 0 auto;
  min-height: 100%;
}

.page-builder-preview__frame[data-preview-preset="full"] {
  width: 100% !important;
  max-width: 100% !important;
  border-radius: 0.4rem;
}

.page-builder-preview.is-hidden {
  display: none;
}

.page-builder-layout--preview-hidden [data-page-builder-column="editor"] {
  flex: 0 0 100%;
  max-width: 100%;
}

.page-builder-layout--preview-hidden [data-page-builder-column="preview"] {
  display: none;
}

.page-builder-layout--inspector-hidden [data-page-builder-inspector-column] {
  display: none;
}

.page-builder-layout--inspector-hidden [data-page-builder-canvas-column] {
  flex: 0 0 100%;
  max-width: 100%;
}

.page-builder-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  padding: 0.45rem 0.6rem;
  border: 1px solid var(--brand-border);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.72);
}

.page-builder-shortcuts__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-primary);
  margin-right: 0.2rem;
}

.page-builder-shortcuts__chip {
  display: inline-flex;
  align-items: center;
  min-height: 1.65rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  border: 1px solid var(--brand-border);
  background: #fff;
  font-size: 0.75rem;
  color: var(--brand-muted);
}

.page-builder-root .card-header,
.page-builder-root .card-body,
.page-builder-root .card-footer {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.page-builder-root .card-body {
  padding-left: 0.85rem;
  padding-right: 0.85rem;
}

.page-builder-root .page-builder-toolbar {
  gap: 0.35rem !important;
  margin-bottom: 0.5rem !important;
}

.page-builder-root .page-builder-node__header {
  padding: 0.55rem 0.75rem;
  gap: 0.5rem;
}

.page-builder-root .page-builder-node__body {
  padding: 0.65rem;
}

.page-builder-root .page-builder-node {
  border-radius: 0.85rem;
}

.page-builder-root .page-builder-node__title {
  font-size: 0.96rem;
}

.page-builder-root .btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.82rem;
}

.page-builder-root .form-label.small,
.page-builder-root .form-check-label.small,
.page-builder-root .text-muted.small {
  font-size: 0.78rem;
}

.page-builder-root .mb-3 {
  margin-bottom: 0.75rem !important;
}

.page-builder-root .mb-2 {
  margin-bottom: 0.5rem !important;
}

.page-builder-root .d-flex.gap-2,
.page-builder-root .d-flex.gap-3 {
  gap: 0.4rem !important;
}

.page-builder-root .btn-group-sm > .btn {
  padding: 0.25rem 0.45rem;
  font-size: 0.8rem;
}

.page-builder-root .page-builder-list-drop-zone {
  height: 8px;
}

.page-builder-root .page-builder-drop-zone {
  min-height: 10px;
}

.page-builder-root-list {
  display: grid;
  gap: 0.75rem;
}

.page-builder-node {
  border: 1px solid var(--brand-border);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 12px 30px rgba(32, 21, 19, 0.06);
  overflow: hidden;
}

.page-builder-node.is-selected {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(122, 31, 51, 0.12), 0 12px 30px rgba(32, 21, 19, 0.06);
}

.page-builder-node__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  background: linear-gradient(180deg, #fff, #fefbf7);
  border-bottom: 1px solid var(--brand-border);
}

.page-builder-node__body {
  padding: 0.9rem;
}

.page-builder-drag-handle {
  border: 1px solid var(--brand-border);
  background: #f7f1e8;
  color: var(--brand-primary);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: grab;
}

.page-builder-drag-handle--sm {
  padding: 0.15rem 0.45rem;
  font-size: 0.7rem;
}

.page-builder-node__title {
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  color: var(--brand-text);
}

.page-builder-child-list {
  display: grid;
  gap: 0.5rem;
}

.page-builder-drop-zone {
  min-height: 12px;
  border-radius: 999px;
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.page-builder-drop-zone.is-drop-target {
  background: rgba(122, 31, 51, 0.14);
  transform: scaleY(1.5);
}

.page-builder-list-drop-zone {
  height: 10px;
  border-radius: 999px;
  margin: 0.35rem 0;
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.page-builder-list-drop-zone.is-drop-target {
  background: rgba(122, 31, 51, 0.14);
  transform: scaleY(1.5);
}

.page-builder-block-preview {
  font-size: 0.92rem;
  color: var(--brand-muted);
}

.page-builder-item-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.page-builder-preview .page-builder-renderer section {
  padding: 2rem 0;
}

.page-builder-preview .page-builder-renderer section:first-child {
  padding-top: 0;
}

.page-builder-preview .page-builder-renderer section:last-child {
  padding-bottom: 0;
}

.auth-page {
  position: relative;
  isolation: isolate;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: calc(100vh - 10rem);
  padding: 3rem 1rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 34%, rgba(122, 31, 51, 0.08) 0, rgba(122, 31, 51, 0.08) 7%, transparent 8%),
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.7) 0, rgba(255, 255, 255, 0.4) 5%, transparent 6%),
    linear-gradient(180deg, #f7f1e8 0%, #f4eee6 100%);
}

.auth-page::before,
.auth-page::after {
  content: "";
  position: absolute;
  inset: auto -8vw 20% -8vw;
  height: 140px;
  background: radial-gradient(circle, rgba(122, 31, 51, 0.9) 0%, rgba(122, 31, 51, 0.72) 18%, rgba(122, 31, 51, 0.28) 42%, transparent 72%);
  filter: blur(12px);
  opacity: 0.35;
  z-index: -1;
}

.auth-page::after {
  inset: 26% -10vw auto -10vw;
  opacity: 0.2;
  transform: rotate(-2deg);
}

.auth-orb {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.92) 0 16%, rgba(122, 31, 51, 0.14) 17%, rgba(122, 31, 51, 0.03) 42%, transparent 68%);
  filter: blur(3px);
  opacity: 0.55;
  z-index: -1;
}

.auth-orb-left {
  left: -6rem;
  top: 2rem;
}

.auth-orb-right {
  right: -5rem;
  bottom: 3rem;
}

.auth-shell {
  width: min(100%, 980px);
  display: grid;
  gap: 1.5rem;
  justify-items: center;
}

.auth-brand {
  text-align: center;
}

.auth-brand__wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  color: var(--brand-primary);
}

.auth-brand__sigil {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.auth-brand__text {
  margin-top: 0.2rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.auth-brand__subtext {
  font-size: 0.65rem;
  letter-spacing: 0.55em;
  margin-left: 0.55em;
}

.auth-card {
  width: min(100%, 540px);
  border-radius: 1.25rem;
  background: #b18c74;
  padding: 0.5rem;
  box-shadow: 0 24px 60px rgba(79, 42, 24, 0.12);
}

.auth-card__body {
  background: rgba(255, 248, 241, 0.92);
  border-radius: 0 1rem 1rem 1rem;
  padding: 1.45rem 1.35rem 1.35rem;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.auth-tabs__tab {
  position: relative;
  z-index: 1;
  padding: 1rem 1rem 0.95rem;
  text-align: center;
  text-decoration: none;
  color: #111827;
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  border-radius: 0.9rem 0.9rem 0 0;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.auth-tabs__tab:hover {
  color: var(--brand-primary);
}

.auth-tabs__tab.is-active {
  background: rgba(255, 248, 241, 0.95);
}

.auth-lead {
  margin: 0 0 1rem;
  color: #1f2937;
  font-size: 0.98rem;
  line-height: 1.55;
}

.auth-input {
  min-height: 48px;
  border-radius: 0.5rem;
  border-color: #eadfd2;
}

.auth-input::placeholder {
  color: #94a3b8;
}

.auth-social {
  padding-top: 0.25rem;
}

.auth-divider {
  position: relative;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: #64748b;
  font-size: 0.88rem;
}

.auth-divider::before {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  border-top: 1px solid #eadfd2;
}

.auth-divider span {
  position: relative;
  padding: 0 0.75rem;
  background: rgba(255, 248, 241, 0.92);
}

.btn-auth-primary,
.btn-auth-google {
  min-height: 50px;
  border-radius: 0.35rem;
  font-family: "Lexend", sans-serif;
  font-weight: 700;
}

.btn-auth-primary {
  color: #fff;
  background: var(--brand-primary);
  border: 0;
  padding-inline: 1.25rem;
  box-shadow: 0 10px 24px rgba(122, 31, 51, 0.18);
}

.btn-auth-primary:hover,
.btn-auth-primary:focus {
  color: #fff;
  background: var(--brand-primary-hover);
}

.btn-auth-google {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #334155;
}

.btn-auth-google:hover {
  background: #fff;
  color: #111827;
  border-color: #cbd5e1;
}

.auth-google-mark {
  display: inline-grid;
  place-items: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  background: conic-gradient(from 45deg, #ea4335 0 25%, #fbbc05 25% 50%, #34a853 50% 75%, #4285f4 75% 100%);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}

.auth-forgot {
  color: #7c2d12;
  text-decoration: none;
}

.auth-forgot:hover {
  text-decoration: underline;
}

.text-brand,
.link-brand {
  color: var(--brand-primary);
}

.hero-section {
  background: linear-gradient(135deg, #fff 0%, #f6ede2 100%);
  border: 1px solid var(--brand-border);
}

.course-card {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.course-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 24px rgba(40, 30, 20, 0.08);
}

.lesson-content {
  line-height: 1.75;
}

.lesson-content img,
.lesson-content video,
.lesson-content iframe {
  max-width: 100%;
  height: auto;
}

.lesson-content blockquote {
  padding-left: 1rem;
  border-left: 4px solid var(--brand-border);
  color: var(--brand-muted);
}

.lesson-content pre {
  padding: 1rem;
  background: #f8fafc;
  border-radius: 0.75rem;
  overflow: auto;
}

.dashboard-chart {
  position: relative;
  min-height: 320px;
}

.dashboard-chart canvas {
  width: 100% !important;
  height: 320px !important;
}

.dashboard-chart-empty {
  min-height: 120px;
}

.ck-editor__editable_inline {
  min-height: 320px;
}

.info-card,
.kpi-card,
.comment-card {
  background: #fff;
  border: 1px solid var(--brand-border);
  border-radius: 0.85rem;
  padding: 1rem;
}

.kpi-label {
  margin: 0;
  color: var(--brand-muted);
  font-size: 0.9rem;
}

.kpi-value {
  margin: 0.2rem 0 0;
  font-size: 1.4rem;
  font-weight: 700;
}

.badge-free {
  background: #f3f4f6;
  color: #374151;
}

.badge-pro {
  background: #7a1f33;
  color: #fff;
}

.sticky-card {
  position: sticky;
  top: 6.5rem;
}

.list-group-item.active {
  border-color: var(--brand-primary);
  background: rgba(122, 31, 51, 0.08);
  color: #111827;
}

.list-group-item-action {
  cursor: pointer;
}

footer {
  border-top-color: var(--brand-border) !important;
}

@media (max-width: 991.98px) {
  .sticky-card {
    position: static;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


 
   /* ================================================================
      VIETMARM ACADEMY – LANDING PAGE (100% match reference)
      Fonts: SVN-Magnificent (headings fallback: Cormorant Garamond)
             Quicksand (body/ui text)
      Brand: #8B1A2F | Cream: #fdf6f0 | White: #fff
      ================================================================ */

 @font-face {
  font-family: 'SVN-Magnificent';
  src: url('/fonts/SVN-Magnificent.woff2') format('woff2'),
  url('/fonts/SVN-Magnificent.woff') format('woff'),
  url('/fonts/SVN-Magnificent.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --vc-red:      #8B1A2F;
  --vc-red-dark: #6d1325;
  --vc-red-light: #f5e8ec;
  --vc-cream:    #fdf6f0;
  --vc-cream2:   #f8ede4;
  --vc-blush:    #fff8fb;
  --vc-peach:    #fff1e8;
  --vc-gold-soft:#f5d9b8;
  --vc-surface:  rgba(255,255,255,0.78);
  --vc-text:     #1a1a1a;
  --vc-muted:    #6b6b6b;
  --vc-border:   #ede0d6;
  --font-head:   'SVN-Magnificent', 'Cormorant Garamond', Georgia, serif;
  --font-body:   'Quicksand', 'Source Sans 3', sans-serif;
}

/* ── RESET for landing page scope ── */
.vc-lp, .vc-lp * { box-sizing: border-box; }
.vc-lp {
  font-family: var(--font-body);
  color: var(--vc-text);
  background:
    radial-gradient(circle at top left, rgba(245, 216, 223, 0.38), transparent 28%),
    radial-gradient(circle at top right, rgba(245, 217, 184, 0.18), transparent 32%),
    linear-gradient(180deg, #fffdfb 0%, #fff8f4 100%);
  overflow-x: hidden;
}
.vc-lp a { text-decoration: none; }
.vc-lp img { display: block; }
.vc-lp p { margin: 0; }
.vc-lp h1, .vc-lp h2, .vc-lp h3, .vc-lp h4 {
  margin: 0;
  font-family: var(--font-head);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.vc-soft-divider {
  position: relative;
  height: 54px;
  overflow: hidden;
  pointer-events: none;
}

.vc-soft-divider::before,
.vc-soft-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.vc-soft-divider::before {
  display: none;
}

.vc-soft-divider::after {
  top: 10px;
  width: min(760px, calc(100% - 72px));
  height: 28px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.78;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 760 28' fill='none'%3E%3Cpath d='M2 14C36 14 42 4 92 4C142 4 148 24 198 24C248 24 252 9 304 9C356 9 360 24 412 24C464 24 468 9 520 9C572 9 576 24 628 24C680 24 688 14 758 14' stroke='%23bd9198' stroke-width='1.45' stroke-linecap='round'/%3E%3Cpath d='M306 14H454' stroke='%23d4b17b' stroke-width='1.1' stroke-linecap='round' stroke-dasharray='1 8'/%3E%3C/svg%3E");
}

.vc-soft-divider--cream {
  background: linear-gradient(180deg, rgba(255,249,243,0.96), rgba(255,253,250,0));
}

.vc-soft-divider--rose {
  background: linear-gradient(180deg, rgba(255,244,241,0.72), rgba(255,251,248,0));
}

.vc-soft-divider--gold {
  background: linear-gradient(180deg, rgba(248,238,226,0.78), rgba(255,250,245,0));
}

/* ────────────────────────────────────
   1. HERO SECTION
   ──────────────────────────────────── */
.vc-hero {
  position: relative;
  background:
    radial-gradient(circle at 16% 18%, rgba(139, 26, 47, 0.10), transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(245, 217, 184, 0.34), transparent 20%),
    linear-gradient(135deg, #fffdfb 0%, #fff4ef 52%, #fff8fb 100%);
  overflow: hidden;
  min-height: 580px;
}

/* Cream blob top-right behind image */
.vc-hero::before {
  content: "";
  position: absolute;
  top: -2%; right: -3%;
  width: 58%;
  height: 100%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,0.68), transparent 28%),
    linear-gradient(180deg, rgba(253, 246, 240, 0.96), rgba(248, 237, 228, 0.92));
  clip-path: ellipse(82% 100% at 82% 50%);
  z-index: 0;
}
.vc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.14) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.22), transparent 72%);
  pointer-events: none;
}

.vc-hero__text::after {
  content: "";
  display: block;
  width: 150px;
  height: 18px;
  margin-top: 26px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 18' fill='none'%3E%3Cpath d='M2 9C20 9 20 3 38 3C56 3 56 15 74 15C92 15 92 3 110 3C128 3 128 9 148 9' stroke='%23cba56b' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M52 9H98' stroke='%238b1a2f' stroke-width='1.2' stroke-linecap='round' stroke-dasharray='1 6'/%3E%3C/svg%3E");
  opacity: 0.88;
}

.vc-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1220px;
  margin: 0 auto;
  padding: 74px 32px 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 56px;
  align-items: center;
  min-height: 580px;
}

.vc-hero__text {
  max-width: 660px;
}

.vc-hero__eyebrow {
  font-family: var(--font-body);
  width: fit-content;
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(210, 171, 112, 0.38);
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,248,240,0.88));
  box-shadow: 0 10px 24px rgba(122,31,51,0.05);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c49a44;
  margin-bottom: 24px;
  display: inline-flex;
}

.vc-hero__title {
  font-family: var(--font-head);
  max-width: 12ch;
  font-size: clamp(2.85rem, 5.2vw, 5rem);
  font-weight: 600;
  color: var(--vc-text);
  line-height: 0.96;
  text-wrap: balance;
  margin-bottom: 24px;
}
.vc-hero__title em {
  font-style: italic;
  color: var(--vc-red);
}

.vc-hero__sub {
  max-width: 58ch;
  font-size: 1.06rem;
  line-height: 1.78;
  color: #5f6370;
  margin-bottom: 30px;
  font-weight: 500;
}
.vc-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.vc-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--vc-red);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  padding: 16px 34px;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(139,26,47,0.28);
  transition: background 200ms, transform 180ms, box-shadow 200ms;
  cursor: pointer;
  text-decoration: none;
}
.vc-hero__cta:hover {
  background: var(--vc-red-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(139,26,47,0.38);
}
.vc-hero__cta svg { width: 18px; height: 18px; }
.vc-hero__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid rgba(139,26,47,0.14);
  background: rgba(255,255,255,0.72);
  color: var(--vc-text);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
  transition: background 200ms, border-color 200ms, transform 180ms, box-shadow 200ms;
}
.vc-hero__secondary:hover {
  background: rgba(255,255,255,0.94);
  border-color: rgba(139,26,47,0.28);
  color: var(--vc-red);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(122,31,51,0.10);
}
.vc-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  max-width: 680px;
}
.vc-hero__highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(139,26,47,0.08);
  color: #55313a;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(122,31,51,0.05);
}
.vc-hero__highlight::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vc-red), #d97786);
  box-shadow: 0 0 0 4px rgba(139,26,47,0.08);
}

/* Image side */
.vc-hero__img-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  padding-right: 16px;
}
.vc-hero__img-frame {
  position: relative;
  width: min(100%, 430px);
  padding: 14px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.54)),
    linear-gradient(135deg, rgba(139,26,47,0.10), rgba(245,217,184,0.14));
  box-shadow:
    0 28px 70px rgba(122, 31, 51, 0.15),
    inset 0 1px 0 rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.72);
  backdrop-filter: blur(12px);
}
.vc-hero__img-frame::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.85), rgba(255,255,255,0));
  pointer-events: none;
}

/* Red oval decorative behind instructor */
.vc-hero__oval {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 280px; height: 420px;
  background: var(--vc-red);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  z-index: 0;
  opacity: 0.12;
}

.vc-hero__img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 402px;
  height: 620px;
  object-fit: contain;
  object-position: center;
  border-radius: 28px;
  display: block;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,0.14), transparent 34%),
    linear-gradient(180deg, #170a0d 0%, #090506 100%);
  padding: 34px;
  box-shadow: inset 0 0 0 1px rgba(203,165,107,0.18);
}

.vc-hero__brand-card {
  position: absolute;
  right: -24px;
  bottom: 26px;
  z-index: 2;
  width: 240px;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(139,26,47,0.10);
  box-shadow: 0 18px 44px rgba(122,31,51,0.14);
  backdrop-filter: blur(10px);
}

.vc-hero__brand-card-eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  color: #c49a44;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vc-hero__brand-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--vc-text);
  font-family: var(--font-head);
  font-size: 1.12rem;
  line-height: 1.1;
}

.vc-hero__brand-card span:last-child {
  display: block;
  color: #616571;
  font-family: var(--font-body);
  font-size: 0.84rem;
  line-height: 1.6;
}

/* Floating reviews pill */
.vc-hero__pill {
  position: absolute;
  bottom: 22px; left: -78px;
  background: rgba(255,255,255,0.88);
  border-radius: 50px;
  padding: 12px 18px;
  box-shadow: 0 12px 40px rgba(91, 33, 46, 0.16);
  border: 1px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  white-space: nowrap;
}
.vc-hero__pill-avatars {
  display: flex;
  margin-left: -4px;
}
.vc-hero__pill-av {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  overflow: hidden;
  background: var(--vc-red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--vc-red);
  font-family: var(--font-body);
}
.vc-hero__pill-av:first-child { margin-left: 0; }

.vc-hero__pill-text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--vc-text);
  font-family: var(--font-body);
}
.vc-hero__pill-text span {
  font-size: 0.78rem;
  color: var(--vc-muted);
  font-family: var(--font-body);
}

/* ── Wave break ── */
.vc-wave { line-height: 0; overflow: hidden; }
.vc-wave svg { display: block; width: 100%; }

/* ────────────────────────────────────
   2. VIDEO SECTION
   ──────────────────────────────────── */
.vc-video-section {
  background: var(--vc-cream);
  padding: 70px 28px;
}
.vc-video__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

/* Plyr Custom UI */
.vc-video__player-wrap {
  max-width: 100%;
  margin: 36px auto 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(139, 26, 47, 0.15);
  border: 1px solid var(--vc-border);
}

.plyr--full-ui.plyr--video .plyr__control--overlaid {
  background: var(--vc-red) !important;
}

.plyr--video .plyr__controls {
  font-family: var(--font-body);
}

.plyr--full-ui input[type=range] {
  color: var(--vc-red) !important;
}

.vc-section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vc-red);
  margin-bottom: 14px;
  display: block;
}
.vc-section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.6vw, 3.15rem);
  font-weight: 600;
  color: var(--vc-text);
  margin-bottom: 20px;
  line-height: 1.02;
  text-wrap: balance;
}
.vc-section-title em { font-style: italic; color: var(--vc-red); }
.vc-section-title--left { text-align: left; }
.vc-section-title--tight { margin-bottom: 0; }
.vc-section-intro {
  font-family: var(--font-body);
  color: #626673;
  font-size: 1.02rem;
  max-width: 62ch;
  margin: 0 auto;
  line-height: 1.82;
  font-weight: 500;
}

/* ────────────────────────────────────
   3. PLATFORM / FEATURES SECTION
   ──────────────────────────────────── */
.vc-platform {
  background: #fff;
  padding: 80px 28px;
}
.vc-platform__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Stats chips row */
.vc-platform__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.vc-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--vc-red-light);
  color: var(--vc-red);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(139,26,47,0.15);
}
.vc-chip svg { width: 14px; height: 14px; }

.vc-platform__desc {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--vc-muted);
  margin-bottom: 28px;
  font-weight: 500;
}
.vc-platform__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--vc-red);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(139,26,47,0.25);
  transition: background 200ms, transform 180ms;
  text-decoration: none;
}
.vc-platform__cta:hover { background: var(--vc-red-dark); color: #fff; transform: translateY(-2px); }
.vc-platform__cta svg { width: 16px; height: 16px; }

/* Laptop mockup */
.vc-laptop-wrap { position: relative; }
.vc-laptop {
  position: relative;
  filter: drop-shadow(0 32px 60px rgba(0,0,0,0.15));
}
.vc-laptop__body {
  background: #2c2c2c;
  border-radius: 14px 14px 0 0;
  padding: 12px 12px 0;
}
.vc-laptop__cam-bar {
  display: flex;
  justify-content: center;
  padding-bottom: 6px;
}
.vc-laptop__cam {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #555;
}
.vc-laptop__screen {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.vc-laptop__screen img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.vc-laptop__base {
  background: linear-gradient(to bottom, #3a3a3a, #222);
  height: 22px;
  border-radius: 0 0 4px 4px;
  margin: 0 -20px;
}
.vc-laptop__foot {
  background: linear-gradient(to bottom, #2a2a2a, #1a1a1a);
  height: 6px;
  width: 40%;
  margin: 0 auto;
  border-radius: 0 0 6px 6px;
}

/* Detail images floating */
.vc-laptop__float-img {
  position: absolute;
  border-radius: 12px;
  border: 3px solid #fff;
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  overflow: hidden;
}
.vc-laptop__float-img--tr {
  top: -24px; right: -28px;
  width: 130px;
}
.vc-laptop__float-img img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* ────────────────────────────────────
   4. COURSES SECTION
   ──────────────────────────────────── */
.vc-courses {
  background:
    radial-gradient(circle at top right, rgba(139,26,47,0.09), transparent 24%),
    radial-gradient(circle at bottom left, rgba(245,217,184,0.24), transparent 26%),
    linear-gradient(180deg, #fff7f2 0%, #fffdfb 100%);
  padding: 80px 28px;
  position: relative;
  overflow: hidden;
}
.vc-courses::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 32px;
  border: 1px solid rgba(139,26,47,0.06);
  background: linear-gradient(180deg, rgba(255,255,255,0.24), rgba(255,255,255,0));
  pointer-events: none;
}
.vc-courses::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 14% 22%, rgba(139,26,47,0.05) 0, rgba(139,26,47,0.05) 1px, transparent 1px),
    radial-gradient(circle at 86% 78%, rgba(203,165,107,0.08) 0, rgba(203,165,107,0.08) 1px, transparent 1px);
  background-size: 20px 20px, 22px 22px;
  background-position: 0 0, 8px 8px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.28), transparent 32%, transparent 68%, rgba(0,0,0,0.18));
  pointer-events: none;
  opacity: 0.6;
}
.vc-courses__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
.vc-courses__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 20px;
}
.vc-courses__header-text {
  max-width: 760px;
}
.vc-courses__lead {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: #626673;
  font-weight: 500;
}
.vc-courses__viewall {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--vc-red);
  border: 1.5px solid var(--vc-red);
  padding: 10px 22px;
  border-radius: 8px;
  transition: background 200ms, color 200ms;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
  align-self: center;
}
.vc-courses__viewall:hover { background: var(--vc-red); color: #fff; }

.vc-courses__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Course Card */
.vc-course-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,252,248,0.96));
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(139,26,47,0.10);
  transition: box-shadow 240ms, transform 240ms;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 32px rgba(122, 31, 51, 0.06);
  position: relative;
}
.vc-course-card:hover {
  box-shadow: 0 24px 58px rgba(139,26,47,0.14);
  transform: translateY(-5px);
}
.vc-course-card::before {
  content: "";
  position: absolute;
  inset: 12px 12px auto auto;
  width: 84px;
  height: 84px;
  border-top: 1px solid rgba(203,165,107,0.35);
  border-right: 1px solid rgba(203,165,107,0.35);
  border-radius: 0 18px 0 0;
  pointer-events: none;
  opacity: 0.9;
}

.vc-course-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--vc-cream);
}
.vc-course-card__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  gap: 14px;
  padding: 22px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(245,217,184,0.16), transparent 30%),
    linear-gradient(180deg, #1a0b0f 0%, #0a0506 100%);
}

.vc-course-card__placeholder.is-confidence {
  background:
    radial-gradient(circle at 22% 20%, rgba(245,217,184,0.18), transparent 26%),
    linear-gradient(160deg, #17080d 0%, #32111c 100%);
}

.vc-course-card__placeholder.is-speech {
  background:
    radial-gradient(circle at 80% 16%, rgba(255,255,255,0.10), transparent 18%),
    linear-gradient(160deg, #15090b 0%, #4a1823 100%);
}

.vc-course-card__placeholder.is-stage {
  background:
    radial-gradient(circle at 50% 0%, rgba(245,217,184,0.18), transparent 28%),
    linear-gradient(160deg, #1b0c10 0%, #2a0f18 60%, #4e1a26 100%);
}

.vc-course-card__placeholder-logo {
  width: min(56%, 180px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.28));
}

.vc-course-card__placeholder-kicker {
  display: inline-flex;
  padding: 0.38rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(245,217,184,0.25);
  color: rgba(245,217,184,0.92);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vc-course-card__placeholder-title {
  max-width: 18ch;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.5;
}

.vc-course-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}
.vc-course-card:hover .vc-course-card__img img { transform: scale(1.06); }

.vc-course-card__tag {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--vc-red);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

/* Instructor mini badge */
.vc-course-card__instructor-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
  padding: 20px 12px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vc-course-card__instructor-av {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  background: var(--vc-red-light);
}
.vc-course-card__instructor-av--text {
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: #fff;
}
.vc-course-card__instructor-name {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.vc-course-card__body {
  padding: 22px 20px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vc-course-card__title {
  font-family: var(--font-head);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--vc-text);
  line-height: 1.12;
  text-wrap: balance;
}
.vc-course-card__desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #626673;
  line-height: 1.74;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vc-course-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 18px;
  border-top: 1px solid var(--vc-border);
  gap: 10px;
  flex-wrap: wrap;
}
.vc-course-card__price-wrap {}
.vc-course-card__price-old {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #aaa;
  text-decoration: line-through;
  display: block;
  line-height: 1;
}
.vc-course-card__price {
  font-family: var(--font-body);
  font-size: 1.24rem;
  font-weight: 700;
  color: var(--vc-red);
  line-height: 1.1;
}
.vc-course-card__btn {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--vc-red);
  border: 1.5px solid var(--vc-red);
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 200ms, color 200ms;
  white-space: nowrap;
}
.vc-course-card__btn:hover { background: var(--vc-red); color: #fff; }

/* ────────────────────────────────────
   5. SOCIAL PROOF / TRUST SECTION
   ──────────────────────────────────── */
.vc-trust {
  background: var(--vc-red);
  padding: 80px 28px;
  position: relative;
  overflow: hidden;
}

/* Wave top */
.vc-trust::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: var(--vc-cream);
  clip-path: ellipse(55% 100% at 50% 0%);
}

/* Decorative circles */
.vc-trust__deco {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: #fff;
  pointer-events: none;
}
.vc-trust__deco--1 { width: 300px; height: 300px; top: -80px; right: -60px; }
.vc-trust__deco--2 { width: 200px; height: 200px; bottom: -60px; left: -40px; }
.vc-trust__deco--3 { width: 120px; height: 120px; top: 40%; right: 15%; }

.vc-trust__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
  padding-top: 24px;
}

.vc-trust__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 18px;
  text-wrap: balance;
}
.vc-trust__title em { font-style: italic; color: rgba(255,255,255,0.7); }

.vc-trust__sub {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.82;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  font-weight: 500;
  max-width: 58ch;
}

.vc-trust__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.vc-stat {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 22px 18px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: background 200ms;
}
.vc-stat:hover { background: rgba(255,255,255,0.17); }
.vc-stat__num {
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.vc-stat__label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.76);
  font-weight: 600;
}

/* Testimonial cards */
.vc-testi-stack { display: grid; gap: 16px; }

.vc-testi {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 16px;
  padding: 18px 20px;
  backdrop-filter: blur(6px);
}
.vc-testi__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
}
.vc-testi__stars svg { width: 14px; height: 14px; }

.vc-testi__quote {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin-bottom: 14px;
  font-style: italic;
}
.vc-testi__author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.vc-testi__av {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}
.vc-testi__av img { width: 100%; height: 100%; object-fit: cover; }
.vc-testi__name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.vc-testi__role {
  font-family: var(--font-body);
  font-size: 0.73rem;
  color: rgba(255,255,255,0.58);
}

/* ────────────────────────────────────
   6. PARTNERS SECTION
   ──────────────────────────────────── */
.vc-partners {
  background: #fff;
  padding: 64px 28px;
  border-top: 1px solid var(--vc-border);
}
.vc-partners__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.vc-partners__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 32px;
  display: block;
}
.vc-partners__title {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--vc-text);
  margin-bottom: 40px;
}
.vc-partners__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.vc-partner {
  opacity: 0.45;
  filter: grayscale(1);
  transition: opacity 220ms, filter 220ms;
  cursor: pointer;
}
.vc-partner:hover { opacity: 1; filter: grayscale(0); }
.vc-partner__name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: #555;
  letter-spacing: 0.04em;
}

/* ────────────────────────────────────
   7. FOOTER (full-width dark)
   ──────────────────────────────────── */
.vc-footer {
  background: #1a1a1a;
  padding: 64px 28px 0;
  color: rgba(255,255,255,0.7);
}
.vc-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.vc-footer__brand {}
.vc-footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
}
.vc-footer__logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  padding: 4px;
  border: 1.5px solid rgba(200,155,60,0.35);
  transition: border-color 220ms, box-shadow 220ms;
  box-shadow: 0 2px 12px rgba(200,155,60,0.15);
}
.vc-footer__logo:hover .vc-footer__logo-img {
  border-color: rgba(200,155,60,0.75);
  box-shadow: 0 4px 20px rgba(200,155,60,0.35);
}
.vc-footer__logo-text {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.3;
}
.vc-footer__logo-text em {
  display: block;
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.10em;
  color: #c89b3c;
  font-weight: 600;
}
.vc-footer__brand-desc {
  font-family: var(--font-body);
  font-size: 0.87rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  font-weight: 500;
}
.vc-footer__socials {
  display: flex;
  gap: 10px;
}
.vc-footer__social {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: background 200ms, color 200ms, border-color 200ms;
  cursor: pointer;
}
.vc-footer__social:hover { background: var(--vc-red); border-color: var(--vc-red); color: #fff; }
.vc-footer__social svg { width: 16px; height: 16px; }

.vc-footer__col-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 16px;
}
.vc-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.vc-footer__links a {
  font-family: var(--font-body);
  font-size: 0.87rem;
  color: rgba(255,255,255,0.52);
  font-weight: 500;
  text-decoration: none;
  transition: color 180ms;
}
.vc-footer__links a:hover { color: rgba(255,255,255,0.9); }

.vc-footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ────────────────────────────────────
   RESPONSIVE
   ──────────────────────────────────── */
@media (max-width: 1100px) {
  .vc-hero__text::after { margin-left: auto; margin-right: auto; }
  .vc-hero__inner { grid-template-columns: 1fr; text-align: center; padding: 56px 24px 60px; }
  .vc-hero__text { max-width: 760px; margin: 0 auto; }
  .vc-hero__eyebrow { margin-left: auto; margin-right: auto; }
  .vc-hero__title { max-width: 11ch; margin-left: auto; margin-right: auto; font-size: clamp(2.7rem, 8vw, 4.3rem); }
  .vc-hero__sub { margin: 0 auto 32px; max-width: 60ch; }
  .vc-hero__actions { justify-content: center; }
  .vc-hero__highlights { justify-content: center; margin-left: auto; margin-right: auto; }
  .vc-hero__img-col { padding-right: 0; }
  .vc-hero__img-frame { width: min(100%, 420px); }
  .vc-hero__img { height: 480px; max-width: 100%; }
  .vc-hero__brand-card {
    right: 50%;
    bottom: 18px;
    transform: translateX(50%);
    width: min(82%, 320px);
  }
  .vc-hero__pill { left: 50%; transform: translateX(-50%); }
  .vc-hero::before { width: 100%; clip-path: none; height: 50%; top: auto; bottom: 0; }
  .vc-platform__inner { grid-template-columns: 1fr; gap: 48px; }
  .vc-trust__inner { grid-template-columns: 1fr; gap: 40px; }
  .vc-courses__grid { grid-template-columns: 1fr 1fr; }
  .vc-footer__inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 720px) {
  .vc-soft-divider { height: 40px; }
  .vc-soft-divider::before { top: 21px; width: calc(100% - 32px); }
  .vc-soft-divider::after { top: 6px; width: calc(100% - 64px); height: 24px; }
  .vc-courses__grid { grid-template-columns: 1fr; }
  .vc-trust__stats { grid-template-columns: 1fr 1fr; }
  .vc-footer__inner { grid-template-columns: 1fr; }
  .vc-footer__bottom { flex-direction: column; text-align: center; }
  .vc-hero__inner { padding: 42px 20px 56px; gap: 34px; }
  .vc-hero__eyebrow { padding: 0.65rem 1rem; font-size: 0.74rem; margin-bottom: 18px; }
  .vc-hero__title { max-width: none; font-size: clamp(2.25rem, 12vw, 3.3rem); line-height: 0.98; }
  .vc-hero__sub { font-size: 0.98rem; line-height: 1.75; }
  .vc-hero__text::after { width: 120px; }
  .vc-hero__actions { gap: 12px; }
  .vc-hero__cta,
  .vc-hero__secondary { width: 100%; }
  .vc-hero__highlights { gap: 10px; margin-top: 22px; }
  .vc-hero__highlight { width: 100%; justify-content: center; text-align: center; }
  .vc-hero__img-frame { width: min(100%, 360px); padding: 12px; border-radius: 28px; }
  .vc-hero__img { height: 320px; border-radius: 22px; padding: 24px; }
  .vc-hero__brand-card {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 14px;
    border-radius: 20px;
    text-align: left;
  }
  .vc-hero__pill {
    position: static;
    transform: none;
    margin: 16px auto 0;
    width: fit-content;
  }
  .vc-courses__header { margin-bottom: 30px; gap: 14px; }
  .vc-courses__viewall,
  .vc-course-card__btn { width: 100%; justify-content: center; text-align: center; }
  .vc-course-card__body,
  .vc-course-card__footer { padding-left: 16px; padding-right: 16px; }
  .vc-course-card__title { font-size: 1.16rem; }
  .vc-course-card__desc { font-size: 0.9rem; line-height: 1.7; }
  .vc-why { padding: 68px 20px; }
  .vc-why__header { margin-bottom: 34px; }
  .vc-why__inner::after { width: 110px; height: 30px; inset: 16px 16px auto auto; }
  .vc-why-card { padding: 22px 18px; border-radius: 18px; }
  .vc-why-card__icon { width: 52px; height: 52px; margin-bottom: 16px; }
  .vc-why-card__title { font-size: 1.18rem; }
  .vc-why-card__desc { font-size: 0.9rem; line-height: 1.7; }
  .vc-stats-bar { padding: 28px 20px; }
  .vc-stats-bar__item { min-width: 0; }
  .vc-stats-bar__num { font-size: 2rem; }
  .vc-stats-bar__label { font-size: 0.76rem; letter-spacing: 0.05em; }
  .vc-feedback { padding: 68px 20px; }
  .vc-feedback::after { bottom: 16px; background-size: calc(100% - 24px) 18px; }
  .vc-feedback__header { margin-bottom: 30px; }
  .vc-feedback__meta { gap: 8px; }
  .vc-feedback__meta-item { width: 100%; justify-content: center; font-size: 0.78rem; }
  .vc-fb-slider { padding: 14px; border-radius: 22px; }
  .vc-fb-track { gap: 14px; }
  .vc-fb-controls { gap: 10px; margin-top: 20px; }
  .vc-fb-btn { width: 44px; height: 44px; }
  .vc-fb-img-wrap img { padding: 18px; }
  .vc-cta-banner { padding: 68px 20px; }
  .vc-cta-banner__inner::before { inset: -14px; border-radius: 24px; }
  .vc-cta-banner__inner::after { width: 150px; bottom: -28px; }
  .vc-cta-banner__title { font-size: clamp(1.8rem, 9vw, 2.5rem); }
  .vc-cta-banner__sub { font-size: 0.96rem; line-height: 1.72; }
  .vc-cta-banner__btn { width: 100%; justify-content: center; }
  .vc-platform, .vc-courses, .vc-trust, .vc-video-section, .vc-partners { padding: 56px 20px; }
}

/* ────────────────────────────────────
   WHY CHOOSE US - FEATURE CARDS SECTION
   ──────────────────────────────────── */
.vc-why {
  background:
    radial-gradient(circle at top left, rgba(139,26,47,0.08), transparent 26%),
    radial-gradient(circle at bottom right, rgba(245,217,184,0.24), transparent 22%),
    linear-gradient(180deg, #fffdfc 0%, #fff7f2 100%);
  padding: 90px 28px;
  position: relative;
  overflow: hidden;
}
.vc-why::before {
  content: "";
  position: absolute;
  top: -120px; left: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(139,26,47,0.07) 0%, transparent 72%);
  border-radius: 50%;
  pointer-events: none;
}
.vc-why::after {
  content: "";
  position: absolute;
  bottom: -80px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(245,217,184,0.18) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}
.vc-why__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.vc-why__inner::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 40px;
  border: 1px solid rgba(139,26,47,0.06);
  background: linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,255,255,0));
  pointer-events: none;
}
.vc-why__inner::after {
  content: "";
  position: absolute;
  inset: 20px 20px auto auto;
  width: 164px;
  height: 44px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.32;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 164 44' fill='none'%3E%3Cpath d='M2 30C22 30 22 10 42 10C62 10 62 34 82 34C102 34 102 14 122 14C142 14 142 30 162 30' stroke='%238b1a2f' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M34 22H130' stroke='%23cba56b' stroke-width='1.1' stroke-linecap='round' stroke-dasharray='1 7'/%3E%3C/svg%3E");
}
.vc-why__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.vc-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.vc-why-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,250,246,0.86)),
    linear-gradient(160deg, rgba(245, 232, 236, 0.24), rgba(255,255,255,0));
  border: 1px solid rgba(139,26,47,0.10);
  border-radius: 20px;
  padding: 30px 26px;
  transition: box-shadow 250ms, transform 250ms, border-color 250ms;
  cursor: default;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 34px rgba(122, 31, 51, 0.05);
}
.vc-why-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--vc-red), rgba(139,26,47,0.4));
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 250ms;
}
.vc-why-card:hover {
  box-shadow: 0 24px 60px rgba(139,26,47,0.12);
  transform: translateY(-6px);
  border-color: rgba(139,26,47,0.2);
}
.vc-why-card:hover::before { opacity: 1; }
.vc-why-card__icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--vc-red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background 250ms;
}
.vc-why-card:hover .vc-why-card__icon {
  background: rgba(139,26,47,0.12);
}
.vc-why-card__icon svg {
  width: 28px; height: 28px;
  color: var(--vc-red);
}
.vc-why-card__title {
  font-family: var(--font-head);
  font-size: 1.38rem;
  font-weight: 600;
  color: var(--vc-text);
  margin-bottom: 14px;
  line-height: 1.08;
  text-wrap: balance;
}
.vc-why-card__desc {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.78;
  color: #626673;
  font-weight: 500;
}
.vc-why-card__badge {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--vc-red-light);
  color: var(--vc-red);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Stats bar */
.vc-stats-bar {
  position: relative;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.12), transparent 18%),
    radial-gradient(circle at 80% 10%, rgba(245,217,184,0.18), transparent 20%),
    linear-gradient(120deg, #7a1730 0%, #8b1a2f 42%, #5b1020 100%);
  padding: 34px 28px;
  overflow: hidden;
}
.vc-stats-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.45;
  pointer-events: none;
}
.vc-stats-bar__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.vc-stats-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 120px;
}
.vc-stats-bar__num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 600;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.01em;
}
.vc-stats-bar__label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}
.vc-stats-bar__sep {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ────────────────────────────────────
   FEEDBACK PHOTO SLIDER SECTION
   ──────────────────────────────────── */
.vc-feedback {
  background:
    radial-gradient(circle at 12% 18%, rgba(245,217,184,0.24), transparent 18%),
    radial-gradient(circle at 86% 20%, rgba(139,26,47,0.09), transparent 22%),
    linear-gradient(180deg, #fffdfb 0%, #fff4ee 100%);
  padding: 90px 28px;
  overflow: hidden;
  position: relative;
}
.vc-feedback::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.28) 0%, transparent 35%),
    linear-gradient(315deg, rgba(255,255,255,0.14) 0%, transparent 30%);
  pointer-events: none;
}
.vc-feedback::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: min(1120px, calc(100% - 40px)) 24px;
  opacity: 0.55;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1120 24' fill='none'%3E%3Cpath d='M2 12H398C430 12 436 4 456 4C476 4 482 12 514 12H606C638 12 644 20 664 20C684 20 690 12 722 12H1118' stroke='%23b7818b' stroke-width='1.2' stroke-linecap='round'/%3E%3Cpath d='M500 12H620' stroke='%23cba56b' stroke-width='1.2' stroke-linecap='round' stroke-dasharray='1 7'/%3E%3C/svg%3E");
}
.vc-feedback__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
.vc-feedback__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.vc-feedback__sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #626673;
  margin-top: 16px;
  font-weight: 500;
  line-height: 1.8;
}
.vc-feedback__meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.vc-feedback__meta-item {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(139,26,47,0.08);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: #5e3842;
  box-shadow: 0 12px 24px rgba(122,31,51,0.05);
}

/* Slider track */
.vc-fb-slider {
  position: relative;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.52), rgba(255,255,255,0.22));
  border: 1px solid rgba(139,26,47,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
}
.vc-fb-track-wrap {
  overflow: hidden;
  border-radius: 16px;
}
.vc-fb-track {
  display: flex;
  gap: 20px;
  transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.vc-fb-slide {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
}
@media (max-width: 1024px) {
  .vc-fb-slide { flex: 0 0 calc((100% - 20px) / 2); }
}
@media (max-width: 640px) {
  .vc-fb-slide { flex: 0 0 100%; }
}

.vc-fb-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,248,244,0.95));
  box-shadow: 0 16px 36px rgba(122,31,51,0.10);
  border: 1px solid rgba(139,26,47,0.10);
  aspect-ratio: 4/3;
  cursor: zoom-in;
  transition: transform 250ms, box-shadow 250ms;
}
.vc-fb-img-wrap:hover {
  transform: scale(1.02);
  box-shadow: 0 18px 48px rgba(139,26,47,0.18);
}
.vc-fb-img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 350ms ease;
  background:
    radial-gradient(circle at top, rgba(245,217,184,0.14), transparent 28%),
    linear-gradient(180deg, #16090c 0%, #0b0506 100%);
  padding: 24px;
}
.vc-fb-img-wrap:hover img { transform: scale(1.04); }

/* Slider controls */
.vc-fb-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.vc-fb-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--vc-border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 200ms, border-color 200ms, box-shadow 200ms;
  color: var(--vc-text);
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.vc-fb-btn:hover {
  background: var(--vc-red);
  border-color: var(--vc-red);
  color: #fff;
  box-shadow: 0 8px 24px rgba(139,26,47,0.22);
}
.vc-fb-btn svg { width: 20px; height: 20px; }

.vc-fb-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.vc-fb-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--vc-border);
  cursor: pointer;
  transition: background 200ms, transform 200ms, width 200ms;
  border: none;
  padding: 0;
}
.vc-fb-dot.is-active {
  background: var(--vc-red);
  width: 24px;
  border-radius: 4px;
}

/* Lightbox */
.vc-fb-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms;
}
.vc-fb-lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}
.vc-fb-lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.vc-fb-lightbox__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: background 200ms;
}
.vc-fb-lightbox__close:hover { background: rgba(255,255,255,0.25); }

/* ────────────────────────────────────
   CTA BANNER SECTION
   ──────────────────────────────────── */
.vc-cta-banner {
  background:
    radial-gradient(circle at 20% 25%, rgba(255,255,255,0.10), transparent 18%),
    radial-gradient(circle at 80% 0%, rgba(245,217,184,0.22), transparent 22%),
    linear-gradient(135deg, #641426 0%, #8b1a2f 45%, #43101b 100%);
  padding: 80px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vc-cta-banner::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.14), rgba(255,255,255,0.02));
  pointer-events: none;
}
.vc-cta-banner::after {
  content: "";
  position: absolute;
  bottom: -80px; left: -40px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,217,184,0.22), rgba(245,217,184,0.01));
  pointer-events: none;
}
.vc-cta-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.vc-cta-banner__inner::before {
  content: "";
  position: absolute;
  inset: -24px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
  pointer-events: none;
}
.vc-cta-banner__inner::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -42px;
  transform: translateX(-50%);
  width: 230px;
  height: 22px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.8;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 230 22' fill='none'%3E%3Cpath d='M2 11C30 11 30 4 58 4C86 4 86 18 114 18C142 18 142 4 170 4C198 4 198 11 228 11' stroke='%23f5d9b8' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M86 11H144' stroke='white' stroke-opacity='.7' stroke-width='1.1' stroke-linecap='round' stroke-dasharray='1 7'/%3E%3C/svg%3E");
  pointer-events: none;
}
.vc-cta-banner__eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  display: block;
}
.vc-cta-banner__title {
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.04;
  margin-bottom: 18px;
  text-wrap: balance;
}
.vc-cta-banner__title em {
  font-style: italic;
  color: rgba(255,255,255,0.7);
}
.vc-cta-banner__sub {
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.82;
  margin-bottom: 36px;
  font-weight: 500;
}
.vc-cta-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--vc-red);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 38px;
  border-radius: 50px;
  text-decoration: none;
  transition: box-shadow 200ms, transform 180ms;
  box-shadow: 0 12px 36px rgba(0,0,0,0.2);
  cursor: pointer;
}
.vc-cta-banner__btn:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  transform: translateY(-3px);
  color: var(--vc-red-dark);
}
.vc-cta-banner__btn svg { width: 18px; height: 18px; }
.vc-cta-banner__note {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

/* ────────────────────────────────────
   ABOUT / CONTACT PAGES
   ──────────────────────────────────── */
.vc-page-hero {
  position: relative;
  padding: 84px 28px 48px;
  overflow: hidden;
}
.vc-page-hero--about {
  background:
    radial-gradient(circle at 12% 18%, rgba(139,26,47,0.10), transparent 20%),
    radial-gradient(circle at 88% 14%, rgba(245,217,184,0.30), transparent 22%),
    linear-gradient(135deg, #fffdfa 0%, #fff4ee 55%, #fff8fb 100%);
}
.vc-page-hero--contact {
  background:
    radial-gradient(circle at 20% 12%, rgba(245,217,184,0.22), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(139,26,47,0.10), transparent 20%),
    linear-gradient(135deg, #fffdfb 0%, #fff6f0 60%, #fff9f6 100%);
}
.vc-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.14) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.18), transparent 78%);
  pointer-events: none;
}
.vc-page-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(860px, calc(100% - 56px));
  height: 26px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.55;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 860 26' fill='none'%3E%3Cpath d='M2 13C44 13 50 4 106 4C162 4 168 22 224 22C280 22 284 8 342 8C400 8 404 22 462 22C520 22 524 8 582 8C640 8 646 22 702 22C758 22 766 13 858 13' stroke='%23be9398' stroke-width='1.35' stroke-linecap='round'/%3E%3Cpath d='M350 13H510' stroke='%23d0ae76' stroke-width='1.05' stroke-linecap='round' stroke-dasharray='1 8'/%3E%3C/svg%3E");
}
.vc-page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
  gap: 28px;
  align-items: stretch;
}
.vc-page-hero__content {
  padding: 22px 0;
}
.vc-page-hero__eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--vc-red);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.vc-page-hero__title {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--vc-text);
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: 1.12;
}
.vc-page-hero__title em {
  color: var(--vc-red);
  font-style: italic;
}
.vc-page-hero__sub {
  max-width: 640px;
  margin: 0 0 30px;
  color: var(--vc-muted);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 500;
}
.vc-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.vc-page-hero__panel,
.vc-contact-hero-card {
  position: relative;
  padding: 28px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,251,247,0.78)),
    linear-gradient(160deg, rgba(245,232,236,0.20), rgba(255,255,255,0));
  border: 1px solid rgba(139,26,47,0.10);
  box-shadow: 0 24px 60px rgba(122,31,51,0.08);
  backdrop-filter: blur(14px);
}
.vc-page-hero__panel::before,
.vc-contact-hero-card::before {
  content: "";
  position: absolute;
  inset: 14px 14px auto auto;
  width: 92px;
  height: 92px;
  border-top: 1px solid rgba(203,165,107,0.26);
  border-right: 1px solid rgba(203,165,107,0.26);
  border-radius: 0 22px 0 0;
  pointer-events: none;
}
.vc-page-hero__panel-card {
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(139,26,47,0.10);
}
.vc-page-hero__panel-label,
.vc-contact-hero-card__eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--vc-red);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.vc-page-hero__panel-card strong,
.vc-contact-hero-card__title {
  display: block;
  margin-bottom: 10px;
  color: var(--vc-text);
  font-family: var(--font-head);
  font-size: 1.5rem;
  line-height: 1.25;
}
.vc-page-hero__panel-card p,
.vc-contact-hero-card__hours span {
  margin: 0;
  color: var(--vc-muted);
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.75;
  font-weight: 500;
}
.vc-page-hero__panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.vc-page-metric {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(139,26,47,0.08);
}
.vc-page-metric strong {
  display: block;
  margin-bottom: 4px;
  color: var(--vc-red);
  font-family: var(--font-head);
  font-size: 1.8rem;
  line-height: 1;
}
.vc-page-metric span {
  color: #6d4f57;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.5;
}
.vc-page-section,
.vc-page-band {
  position: relative;
  padding: 84px 28px;
}
.vc-page-section {
  background:
    radial-gradient(circle at top left, rgba(139,26,47,0.06), transparent 24%),
    linear-gradient(180deg, #fffdfb 0%, #fff8f4 100%);
}
.vc-page-band {
  background:
    radial-gradient(circle at bottom right, rgba(245,217,184,0.20), transparent 24%),
    linear-gradient(180deg, #fff6ef 0%, #fffdfb 100%);
}
.vc-page-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.vc-page-section__intro {
  max-width: 760px;
  margin-bottom: 48px;
}
.vc-story-grid,
.vc-values-grid,
.vc-contact-grid,
.vc-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.vc-story-card,
.vc-value-card,
.vc-contact-card,
.vc-process-step,
.vc-faq-item {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,251,247,0.86));
  border: 1px solid rgba(139,26,47,0.10);
  box-shadow: 0 16px 36px rgba(122,31,51,0.06);
  overflow: hidden;
}
.vc-story-card::before,
.vc-value-card::before,
.vc-contact-card::before,
.vc-process-step::before,
.vc-faq-item::before {
  content: "";
  position: absolute;
  inset: 12px 12px auto auto;
  width: 72px;
  height: 72px;
  border-top: 1px solid rgba(203,165,107,0.22);
  border-right: 1px solid rgba(203,165,107,0.22);
  border-radius: 0 18px 0 0;
  pointer-events: none;
}
.vc-story-card__index,
.vc-process-step__index {
  display: inline-flex;
  margin-bottom: 16px;
  color: rgba(139,26,47,0.52);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.vc-story-card__title,
.vc-value-card__title,
.vc-contact-card__title,
.vc-process-step__title,
.vc-faq-item__title {
  margin: 0 0 12px;
  color: var(--vc-text);
  font-family: var(--font-head);
  font-size: 1.34rem;
  line-height: 1.28;
}
.vc-story-card__desc,
.vc-value-card__desc,
.vc-contact-card__desc,
.vc-process-step__desc,
.vc-faq-item__desc {
  margin: 0;
  color: var(--vc-muted);
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.78;
  font-weight: 500;
}
.vc-value-card__icon,
.vc-contact-card__icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: var(--vc-red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vc-red);
}
.vc-value-card__icon svg,
.vc-contact-card__icon svg {
  width: 28px;
  height: 28px;
}
.vc-contact-card__action {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--vc-red);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}
.vc-page-callout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,250,246,0.82)),
    linear-gradient(160deg, rgba(245,217,184,0.18), rgba(255,255,255,0));
  border: 1px solid rgba(139,26,47,0.10);
  box-shadow: 0 20px 48px rgba(122,31,51,0.08);
}
.vc-page-callout__body p {
  margin: 0 0 16px;
  color: var(--vc-muted);
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.82;
  font-weight: 500;
}
.vc-page-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.vc-page-list li {
  position: relative;
  padding-left: 18px;
  color: var(--vc-text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.7;
  font-weight: 700;
}
.vc-page-list li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--vc-red);
  transform: translateY(-50%);
}
.vc-contact-hero-card__hours {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(139,26,47,0.10);
  display: grid;
  gap: 6px;
}
.vc-contact-hero-card__hours strong {
  color: var(--vc-text);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 800;
}
.vc-faq-list {
  display: grid;
  gap: 16px;
}
.vc-page-cta {
  padding: 0 28px 88px;
  background: linear-gradient(180deg, #fffdfb 0%, #fff8f4 100%);
}
.vc-page-cta__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 46px 34px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(245,217,184,0.20), transparent 24%),
    linear-gradient(135deg, #6a1628 0%, #8b1a2f 45%, #45111c 100%);
  color: #fff;
  text-align: center;
  box-shadow: 0 28px 64px rgba(98, 25, 42, 0.18);
}
.vc-page-cta__inner::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  width: 180px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.78;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 18' fill='none'%3E%3Cpath d='M2 9C24 9 24 3 46 3C68 3 68 15 90 15C112 15 112 3 134 3C156 3 156 9 178 9' stroke='%23c8a56b' stroke-width='1.3' stroke-linecap='round'/%3E%3Cpath d='M64 9H116' stroke='%238b1a2f' stroke-width='1.05' stroke-linecap='round' stroke-dasharray='1 7'/%3E%3C/svg%3E");
}
.vc-page-cta__eyebrow {
  display: block;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.68);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.vc-page-cta__title {
  max-width: 820px;
  margin: 0 auto 16px;
  color: #fff;
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.2;
}
.vc-page-cta__sub {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255,255,255,0.76);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 500;
}
.vc-page-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.vc-page-cta__ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms, transform 180ms;
}
.vc-page-cta__ghost:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive for new sections */
@media (max-width: 1024px) {
  .vc-why__grid { grid-template-columns: repeat(2, 1fr); }
  .vc-page-hero__inner,
  .vc-page-callout,
  .vc-story-grid,
  .vc-values-grid,
  .vc-contact-grid,
  .vc-process-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .vc-why__grid { grid-template-columns: 1fr; }
  .vc-stats-bar__inner { flex-direction: column; gap: 28px; }
  .vc-stats-bar__sep { display: none; }
  .vc-fb-slider { padding: 18px; }
  .vc-page-hero,
  .vc-page-section,
  .vc-page-band,
  .vc-page-cta { padding-left: 20px; padding-right: 20px; }
  .vc-page-hero { padding-top: 64px; }
  .vc-page-hero::after {
    width: calc(100% - 28px);
    height: 20px;
    bottom: 10px;
  }
  .vc-page-hero__panel,
  .vc-contact-hero-card,
  .vc-page-callout,
  .vc-page-cta__inner,
  .vc-story-card,
  .vc-value-card,
  .vc-contact-card,
  .vc-process-step,
  .vc-faq-item { padding: 22px; }
  .vc-page-hero__panel-grid { grid-template-columns: 1fr; }
  .vc-page-hero__title { font-size: clamp(1.95rem, 10vw, 2.8rem); line-height: 1.04; }
  .vc-page-hero__sub { font-size: 0.95rem; line-height: 1.74; }
  .vc-page-hero__actions { gap: 12px; }
  .vc-page-hero__actions .vc-hero__cta,
  .vc-page-hero__actions .vc-hero__secondary,
  .vc-page-cta__actions .vc-cta-banner__btn,
  .vc-page-cta__actions .vc-page-cta__ghost { width: 100%; }
  .vc-page-cta__inner::after { width: 140px; bottom: -24px; }
  .vc-page-cta__title { font-size: clamp(1.65rem, 8vw, 2.3rem); line-height: 1.08; }
  .vc-page-cta__sub { font-size: 0.95rem; line-height: 1.72; }
  .vc-why, .vc-feedback { padding: 60px 20px; }
  .vc-cta-banner { padding: 60px 20px; }
}

.admin-shell {
  max-width: 1380px;
  margin: 0 auto;
  padding: 18px 20px 48px;
}

.admin-shell__topnav {
  margin-bottom: 14px;
}

.admin-shell__content {
  min-width: 0;
}

.admin-topnav-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.97), rgba(255,250,246,0.94));
  border: 1px solid rgba(122,31,51,0.08);
  box-shadow: 0 10px 22px rgba(80,43,30,0.05);
}

.admin-topnav-card__meta {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-width: 0;
  flex-wrap: wrap;
}

.admin-topnav-card__eyebrow {
  display: inline-flex;
  color: var(--vc-red);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.admin-topnav-card__summary {
  margin: 0;
  color: #6b7280;
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.4;
}

.admin-topnav {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
  padding-bottom: 2px;
}

.admin-topnav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.58rem 0.82rem;
  text-decoration: none;
  color: #1f2937;
  border: 1px solid rgba(122,31,51,0.10);
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 800;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.admin-topnav__link:hover,
.admin-topnav__link.is-active {
  background: rgba(122,31,51,0.08);
  color: var(--vc-red);
  border-color: rgba(122,31,51,0.22);
}

.admin-topnav__link.is-active {
  background: var(--vc-red);
  color: #fff;
  border-color: var(--vc-red);
  box-shadow: 0 8px 18px rgba(122,31,51,0.16);
}

.admin-topnav__link--ghost {
  background: rgba(250,244,239,0.92);
}

.admin-overview {
  margin-bottom: 18px;
}

.dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.95fr);
  gap: 22px;
  align-items: start;
  padding: 8px 0 10px;
}

.dashboard-hero__eyebrow {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--brand-muted);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.dashboard-hero__title {
  margin: 0 0 10px;
  font-size: clamp(2.6rem, 4vw, 3.55rem);
  line-height: 0.96;
  color: #1d1f2d;
}

.dashboard-hero__summary {
  max-width: 720px;
  margin: 0;
  color: #495465;
  font-size: 1rem;
  line-height: 1.7;
}

.dashboard-hero__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dashboard-stat {
  padding: 18px 18px 16px;
  border: 1px solid rgba(122,31,51,0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,248,245,0.94));
  box-shadow: 0 14px 30px rgba(80,43,30,0.06);
}

.dashboard-stat__label {
  margin: 0 0 8px;
  color: var(--brand-muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-stat__value {
  margin: 0 0 8px;
  color: #1d1f2d;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1;
}

.admin-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.admin-overview-card,
.admin-overview-panel {
  border: 1px solid rgba(122,31,51,0.08);
  border-radius: 22px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 14px 30px rgba(80,43,30,0.06);
}

.admin-overview-card {
  padding: 18px;
}

.admin-overview-card__label {
  margin: 0 0 8px;
  color: var(--brand-muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-overview-card__value {
  margin: 0 0 6px;
  font-size: 2rem;
  line-height: 1;
  color: #1c2230;
}

.admin-overview-card__sub {
  margin: 0;
  color: var(--brand-muted);
  font-size: 0.9rem;
}

.admin-overview-panel {
  padding: 20px;
}

.admin-chart-panel {
  margin-bottom: 18px;
}

.admin-panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.admin-panel-heading__eyebrow {
  display: inline-flex;
  margin-bottom: 4px;
  color: var(--vc-red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-panel-heading__title {
  margin: 0 0 4px;
  font-size: 1.06rem;
  line-height: 1.2;
  color: #1c2230;
}

.admin-chart-wrap {
  position: relative;
  height: 240px;
}

.admin-chart-legend {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.admin-chart-legend i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--vc-red);
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(122,31,51,0.10);
}

.admin-overview-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.admin-overview-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(122,31,51,0.08);
  background: linear-gradient(180deg, #fff, #fffaf8);
  color: #1f2937;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.admin-overview-link:hover {
  transform: translateY(-2px);
  border-color: rgba(122,31,51,0.18);
  box-shadow: 0 12px 24px rgba(122,31,51,0.08);
}

.admin-overview-link strong {
  font-size: 1rem;
}

.admin-overview-link span {
  color: var(--brand-muted);
  font-size: 0.88rem;
}

.admin-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: 18px;
}

.admin-user-list,
.admin-order-list {
  display: grid;
  gap: 12px;
}

.admin-user-item,
.admin-order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(122,31,51,0.08);
  background: #fff;
}

.admin-user-item__avatar {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(122,31,51,0.08);
  color: var(--vc-red);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(122,31,51,0.12);
}

.admin-user-item__name {
  font-size: 1rem;
  line-height: 1.2;
}

.admin-user-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.admin-user-pill.is-admin {
  background: rgba(17,24,39,0.10);
  color: #111827;
}

.admin-user-pill.is-user {
  background: rgba(99,102,241,0.10);
  color: #4f46e5;
}

.admin-user-pill.is-pro {
  background: rgba(16,185,129,0.14);
  color: #047857;
}

.admin-user-pill.is-free {
  background: rgba(122,31,51,0.08);
  color: var(--vc-red);
}

.admin-user-pill.is-new {
  background: rgba(234,88,12,0.14);
  color: #c2410c;
}

.admin-user-item__body,
.admin-order-item__body {
  min-width: 0;
  flex: 1 1 auto;
}

.dashboard-stat__sub {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.dashboard-stat__trend {
  display: inline-flex;
  align-items: center;
  padding: 0.14rem 0.48rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.dashboard-stat__trend.is-up {
  background: rgba(16,185,129,0.14);
  color: #047857;
}

.dashboard-stat__trend.is-down {
  background: rgba(220,38,38,0.12);
  color: #b91c1c;
}

.admin-order-item__side {
  text-align: right;
  white-space: nowrap;
  flex: 0 0 auto;
}

.admin-activity-list,
.admin-alert-list {
  display: grid;
  gap: 12px;
}

.admin-activity-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(122,31,51,0.08);
  background: #fff;
}

.admin-activity-item__time {
  color: var(--brand-muted);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.admin-activity-item__body strong {
  font-size: 0.98rem;
}

.admin-activity-item__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.14rem 0.48rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-activity-item__badge.is-success {
  background: rgba(25,135,84,0.12);
  color: #198754;
}

.admin-activity-item__badge.is-warning {
  background: rgba(255,193,7,0.18);
  color: #946200;
}

.admin-activity-item__badge.is-danger {
  background: rgba(220,53,69,0.12);
  color: #dc3545;
}

.admin-activity-item__badge.is-neutral {
  background: rgba(108,117,125,0.12);
  color: #6c757d;
}

.admin-alert-item {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(122,31,51,0.08);
  background: #fff;
}

.admin-alert-item.is-success {
  background: linear-gradient(180deg, #fff, #f4fff8);
}

.admin-alert-item.is-warning {
  background: linear-gradient(180deg, #fff, #fffaf0);
}

.admin-alert-item.is-danger {
  background: linear-gradient(180deg, #fff, #fff5f6);
}

.admin-alert-item__title {
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 4px;
}

.admin-alert-item__detail {
  color: var(--brand-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.admin-alert-item__link {
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--vc-red);
}

.admin-alert-item__link:hover {
  color: #6f2030;
}

@media (max-width: 1100px) {
  .dashboard-hero {
    grid-template-columns: 1fr;
  }

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

  .admin-shell {
    grid-template-columns: 1fr;
    padding: 18px 16px 40px;
  }

  .admin-topnav-card {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-topnav {
    justify-content: flex-start;
  }

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

  .admin-overview-links {
    grid-template-columns: 1fr 1fr;
  }

  .admin-split-grid {
    grid-template-columns: 1fr;
  }

  .admin-user-item,
  .admin-order-item {
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .dashboard-hero__meta,
  .admin-overview-grid,
  .admin-overview-links {
    grid-template-columns: 1fr;
  }

  .admin-user-item,
  .admin-order-item {
    flex-direction: column;
  }

  .admin-order-item__side {
    text-align: left;
  }
}
