:root {
  --vv-navy: #071C33;
  --vv-deep-navy: #04111F;
  --vv-gold: #C89B43;
  --vv-soft-gold: #E7C873;
  --vv-cream: #F7F0E3;
  --vv-warm-white: #FFFDF7;
  --vv-muted-cream: #D8D1C3;
  --cream: var(--vv-cream);
  --cream-2: var(--vv-warm-white);
  --navy: var(--vv-navy);
  --deep-navy: var(--vv-deep-navy);
  --text-navy: var(--vv-cream);
  --muted: var(--vv-muted-cream);
  --gold: var(--vv-gold);
  --gold-soft: var(--vv-soft-gold);
  --line: rgba(231, 200, 115, 0.24);
  --white: #ffffff;
  --green: #9ed7ba;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  direction: rtl;
  font-family: Tahoma, Arial, sans-serif;
  color: var(--text-navy);
  background:
    radial-gradient(circle at 12% 0%, rgba(200, 155, 67, 0.12), transparent 28rem),
    linear-gradient(180deg, var(--vv-navy) 0%, var(--vv-deep-navy) 100%);
  line-height: 1.75;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  background: rgba(4, 17, 31, 0.96);
  border-bottom: 1px solid rgba(231, 200, 115, 0.26);
  position: sticky;
  top: 0;
  z-index: 10;
  color: var(--cream-2);
}

.nav-wrap,
.section,
.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand {
  min-width: 220px;
  color: var(--cream-2);
}

.brand img,
.footer-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex: 0 0 auto;
  opacity: 1;
  mix-blend-mode: normal;
  filter: drop-shadow(0 2px 5px rgba(7, 28, 51, 0.18));
  background: var(--vv-warm-white);
  border: 1px solid rgba(231, 200, 115, 0.44);
  border-radius: 8px;
  padding: 4px;
  image-rendering: auto;
}

.brand strong,
.footer-brand strong {
  display: block;
  font-size: 1.05rem;
}

.brand span,
.footer-brand span {
  display: block;
  color: rgba(255, 253, 247, 0.78);
  font-size: 0.84rem;
}

.section {
  padding: 52px 0;
}

.hero {
  padding: 70px 0 48px;
  background: linear-gradient(180deg, rgba(231, 200, 115, 0.08), rgba(4, 17, 31, 0));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 8px;
}

h1,
h2,
h3 {
  line-height: 1.35;
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(2rem, 5vw, 4.1rem);
  max-width: 760px;
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}

h3 {
  font-size: 1.14rem;
}

p {
  margin: 0 0 14px;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 760px;
}

.hero-panel,
.card,
.package-card,
.form-card,
.story-card,
.support-card,
.faq-item,
.notice {
  background: linear-gradient(180deg, rgba(7, 28, 51, 0.98), rgba(4, 17, 31, 0.96));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--vv-cream);
}

.hero-panel {
  padding: 26px;
}

.hero-panel ul,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel li,
.check-list li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(231, 200, 115, 0.18);
}

.hero-panel li:last-child,
.check-list li:last-child {
  border-bottom: 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--deep-navy);
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

.btn.secondary {
  background: rgba(7, 28, 51, 0.72);
  color: var(--vv-cream);
}

.btn.portal {
  background: var(--navy);
  border-color: rgba(231, 200, 115, 0.42);
  color: var(--cream-2);
}

.btn.small {
  min-height: 38px;
  padding: 7px 12px;
  font-size: 0.88rem;
}

.header-cta {
  flex: 0 0 auto;
}

.site-header .btn.secondary {
  border-color: rgba(231, 200, 115, 0.72);
  color: var(--cream-2);
}

.site-header .btn:hover,
.site-header .btn.secondary:hover {
  background: var(--gold-soft);
  color: var(--deep-navy);
}

.grid-3,
.packages-grid,
.support-grid,
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.support-grid,
.stories-grid {
  grid-template-columns: repeat(2, 1fr);
}

.card,
.story-card,
.support-card {
  padding: 22px;
}

.muted {
  color: var(--muted);
}

.packages-grid {
  align-items: stretch;
}

.package-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.package-card.popular {
  border: 2px solid var(--gold);
  transform: translateY(-8px);
}

.package-card .price {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gold);
}

.badge {
  display: inline-flex;
  align-self: flex-start;
  border: 1px solid var(--gold-soft);
  background: rgba(200, 155, 67, 0.18);
  color: var(--vv-soft-gold);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.82rem;
  font-weight: 700;
}

.package-card .btn {
  margin-top: auto;
}

.premium-wide {
  margin-top: 20px;
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.form-card {
  padding: 24px;
  max-width: 820px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(231, 200, 115, 0.34);
  background: var(--vv-warm-white);
  border-radius: 8px;
  padding: 11px 12px;
  color: #102033;
  font: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
}

.consent input {
  width: auto;
  margin-top: 8px;
}

.confirmation {
  display: none;
  margin-top: 18px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(158, 215, 186, 0.12);
  color: var(--green);
  border: 1px solid rgba(158, 215, 186, 0.42);
  font-weight: 700;
}

.confirmation.show {
  display: block;
}

.page-title {
  padding: 46px 0 18px;
  background: rgba(4, 17, 31, 0.22);
}

.faq-group {
  margin-bottom: 18px;
}

.faq-group h2 {
  font-size: 1.35rem;
}

.faq-item {
  margin: 10px 0;
  overflow: hidden;
}

.faq-item summary {
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 800;
}

.faq-item p {
  padding: 0 18px 18px;
  color: var(--muted);
}

.notice {
  padding: 18px;
  border-right: 4px solid var(--gold);
}

.assessment-note {
  margin-top: 16px;
  font-size: 0.94rem;
}

.site-footer {
  margin-top: 40px;
  padding: 34px 0 38px;
  border-top: 1px solid rgba(231, 200, 115, 0.26);
  background: var(--vv-deep-navy);
  color: var(--cream-2);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 16px;
  align-items: start;
}

.footer-brand img {
  width: 58px;
  height: 58px;
}

.footer-compliance {
  margin: 0;
  color: rgba(255, 253, 247, 0.76);
}

.footer-links,
.footer-contact {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
}

.footer-links {
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  margin-top: 2px;
}

.footer-contact {
  grid-template-columns: repeat(6, minmax(76px, 1fr));
  align-items: center;
  padding: 8px;
  border: 1px solid rgba(231, 200, 115, 0.18);
  border-radius: 16px;
  background: rgba(7, 28, 51, 0.34);
}

.footer-links a {
  border: 1px solid rgba(231, 200, 115, 0.26);
  border-radius: 999px;
  min-height: 48px;
  padding: 8px 12px;
  background: rgba(4, 17, 31, 0.46);
  color: var(--cream-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 700;
}

.footer-contact > a {
  min-height: 48px;
  border: 1px solid rgba(231, 200, 115, 0.24);
  border-radius: 999px;
  padding: 6px 8px;
  background: rgba(4, 17, 31, 0.48);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.footer-links a:hover {
  border-color: var(--gold-soft);
  background: rgba(200, 155, 67, 0.12);
}

.footer-contact > a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 6px;
  text-align: center;
  font-weight: 700;
  font-size: 0.76rem;
  line-height: 1.25;
}

.footer-contact > a:hover {
  transform: translateY(-2px);
  border-color: var(--gold-soft);
  background: rgba(200, 155, 67, 0.12);
}

.footer-contact small {
  color: rgba(255, 253, 247, 0.76);
  font-size: 0.72rem;
  line-height: 1.45;
}

.contact-safety {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 253, 247, 0.76);
  font-size: 0.86rem;
  line-height: 1.6;
}

.icon {
  color: var(--gold-soft);
  font-weight: 800;
  width: 27px;
  height: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(231, 200, 115, 0.38);
  border-radius: 999px;
  background: rgba(200, 155, 67, 0.1);
  font-size: 1rem;
  flex: 0 0 auto;
}

.footer-contact .icon svg {
  width: 21px;
  height: 21px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact a[aria-label="فيسبوك"] .icon svg {
  fill: currentColor;
  stroke: none;
}

.mobile-sticky {
  display: none;
}

.mobile-sticky .btn.secondary {
  color: var(--cream-2);
  border-color: rgba(231, 200, 115, 0.55);
}

.mobile-sticky .btn {
  flex: 1;
  min-width: 0;
  padding: 9px 10px;
  min-height: 42px;
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  body {
    padding-bottom: 78px;
  }

  .nav-wrap {
    align-items: center;
    flex-direction: row;
    padding: 10px 0;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand span {
    font-size: 0.78rem;
  }

  .header-cta {
    white-space: nowrap;
  }

  .hero-grid,
  .grid-3,
  .packages-grid,
  .support-grid,
  .stories-grid,
  .premium-wide,
  .form-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .package-card.popular {
    transform: none;
  }

  .section {
    padding: 36px 0;
  }

  .hero {
    padding-top: 44px;
  }

  .mobile-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: flex;
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: var(--vv-deep-navy);
    border-top: 1px solid rgba(231, 200, 115, 0.34);
    box-shadow: 0 -12px 30px rgba(4, 17, 31, 0.24);
  }

  .site-footer {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 520px) {
  .nav-wrap,
  .section,
  .footer-inner {
    width: min(100% - 22px, 1120px);
  }

  .brand img {
    width: 56px;
    height: 56px;
  }

  .header-cta {
    font-size: 0.78rem;
    padding-inline: 9px;
  }

  .actions .btn,
  .footer-links a {
    width: 100%;
  }

  .footer-contact {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 6px;
    padding: 8px;
  }

  .footer-contact > a {
    flex-direction: column;
    gap: 3px;
    padding: 5px 3px;
    font-size: 0.68rem;
  }

  .footer-contact .icon {
    width: 26px;
    height: 26px;
  }

  .footer-contact .icon svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 390px) {
  .footer-contact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Build 14 revised client experiences */
.client-experiences-page {
  background:
    radial-gradient(circle at 12% 0%, rgba(231, 200, 115, 0.16), transparent 31rem),
    linear-gradient(180deg, var(--vv-navy) 0%, var(--vv-deep-navy) 100%);
}

.client-proof-hero {
  padding-top: 66px;
}

.client-proof-hero-grid,
.proof-category-grid,
.proof-card-grid,
.proof-text-grid,
.case-path-grid,
.final-proof-cta {
  display: grid;
  gap: 16px;
}

.client-proof-hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  align-items: stretch;
}

.client-proof-hero h1 {
  color: var(--vv-warm-white);
  font-size: clamp(2.6rem, 8vw, 5rem);
}

.client-proof-hero .lead,
.proof-gallery .lead,
.final-proof-cta p {
  max-width: 820px;
  color: var(--vv-muted-cream);
}

.proof-privacy-panel,
.proof-category-card,
.proof-placeholder,
.proof-text-grid article,
.case-path-grid article,
.consent-panel,
.final-proof-cta {
  border: 1px solid rgba(231, 200, 115, 0.28);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.085), rgba(255, 253, 247, 0.035)),
    rgba(4, 17, 31, 0.82);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.24);
}

.proof-privacy-panel {
  padding: clamp(20px, 4vw, 32px);
}

.proof-privacy-panel p,
.proof-category-card p,
.proof-placeholder p,
.proof-text-grid p,
.case-path-grid p,
.consent-panel li {
  color: var(--vv-muted-cream);
}

.proof-mark {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(231, 200, 115, 0.42);
  border-radius: 16px;
  background: rgba(200, 155, 67, 0.14);
  color: var(--vv-soft-gold);
  font-size: 1.8rem;
}

.proof-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.proof-badges span,
.proof-category-card span,
.proof-gallery-heading span,
.proof-placeholder span {
  border: 1px solid rgba(231, 200, 115, 0.34);
  border-radius: 999px;
  background: rgba(200, 155, 67, 0.12);
  color: var(--vv-soft-gold);
  font-weight: 800;
}

.proof-badges span {
  min-height: 40px;
  padding: 8px 12px;
}

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

.proof-category-card,
.proof-placeholder,
.proof-text-grid article,
.case-path-grid article {
  padding: 18px;
}

.proof-category-card span,
.proof-placeholder span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 10px;
  font-size: 0.78rem;
}

.proof-gallery-section {
  margin-top: 18px;
}

.proof-gallery-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.proof-gallery-heading h3 {
  color: var(--vv-warm-white);
}

.proof-gallery-heading span {
  padding: 5px 10px;
  font-size: 0.78rem;
  white-space: nowrap;
}

.proof-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proof-placeholder {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-style: dashed;
}

.proof-placeholder h4,
.proof-text-grid h4 {
  margin: 0 0 10px;
  color: var(--vv-warm-white);
  font-size: 1.05rem;
}

.proof-placeholder.video-ready {
  min-height: 220px;
}

.proof-text-grid,
.case-path-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.consent-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  padding: clamp(20px, 4vw, 30px);
}

.consent-panel ul {
  margin: 0;
  padding-inline-start: 20px;
}

.consent-panel li + li {
  margin-top: 8px;
}

.proof-compliance .notice {
  border-color: rgba(231, 200, 115, 0.34);
}

.final-proof-cta {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: clamp(20px, 4vw, 30px);
}

@media (max-width: 980px) {
  .client-proof-hero-grid,
  .proof-category-grid,
  .proof-card-grid,
  .proof-card-grid.two,
  .proof-text-grid,
  .case-path-grid,
  .consent-panel,
  .final-proof-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .proof-gallery-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .proof-badges span {
    width: 100%;
  }
}

/* Homepage widget-first UX */
.home-page .section {
  scroll-margin-top: 92px;
}

.home-page .btn.small {
  min-height: 48px;
}

.home-hero {
  padding-top: 64px;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.trust-line,
.helper-line {
  color: var(--vv-muted-cream);
}

.trust-line {
  border-right: 3px solid var(--vv-gold);
  padding: 12px 14px;
  background: rgba(255, 253, 247, 0.04);
  border-radius: 8px;
  margin-top: 18px;
}

.helper-line {
  font-size: 0.94rem;
  margin-top: 10px;
}

.quick-widget,
.hero-assessment-note,
.wizard-card,
.summary-card,
.teaser-card {
  background: linear-gradient(180deg, rgba(7, 28, 51, 0.96), rgba(4, 17, 31, 0.96));
  border: 1px solid rgba(231, 200, 115, 0.24);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  color: var(--vv-cream);
}

.quick-widget {
  padding: 24px;
  backdrop-filter: blur(14px);
}

.hero-assessment-note {
  padding: 24px;
  backdrop-filter: blur(14px);
  display: grid;
  gap: 14px;
}

.hero-assessment-note .btn {
  justify-self: start;
}

.widget-heading,
.section-heading {
  margin-bottom: 18px;
}

.widget-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-heading {
  max-width: 780px;
}

.quick-assessment {
  display: grid;
  gap: 16px;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}

legend {
  font-weight: 800;
  margin-bottom: 8px;
}

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

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

.choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.choice-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.chip {
  min-height: 48px;
  border: 1px solid rgba(231, 200, 115, 0.28);
  border-radius: 12px;
  background: rgba(255, 253, 247, 0.05);
  color: var(--vv-cream);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.chip[aria-pressed="true"] {
  background: rgba(200, 155, 67, 0.2);
  border-color: var(--vv-soft-gold);
  color: var(--vv-warm-white);
}

.choice {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 10px;
  border: 1px solid rgba(231, 200, 115, 0.28);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.055);
  color: var(--vv-cream);
  cursor: pointer;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.35;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  min-height: auto;
}

.choice span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.choice::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(231, 200, 115, 0.55);
  background: rgba(4, 17, 31, 0.48);
  flex: 0 0 auto;
}

.checkbox-choice::before {
  width: 13px;
  height: 13px;
  border-radius: 4px;
}

.choice:hover,
.choice:focus-within {
  transform: translateY(-1px);
  border-color: rgba(231, 200, 115, 0.58);
  background: rgba(255, 253, 247, 0.08);
}

.choice.is-selected,
.choice:has(input:checked) {
  border-color: var(--vv-soft-gold);
  background: linear-gradient(180deg, rgba(200, 155, 67, 0.24), rgba(200, 155, 67, 0.12));
  color: var(--vv-warm-white);
  box-shadow: 0 12px 26px rgba(200, 155, 67, 0.13);
}

.choice.is-selected::before,
.choice:has(input:checked)::before {
  border-color: var(--vv-soft-gold);
  background: var(--vv-soft-gold);
  box-shadow: 0 0 0 3px rgba(200, 155, 67, 0.16);
}

.checkbox-choice.is-selected::before,
.checkbox-choice:has(input:checked)::before {
  background:
    linear-gradient(135deg, transparent 0 38%, #04111f 39% 48%, transparent 49%),
    var(--vv-soft-gold);
}

.widget-note,
.widget-result,
.summary-card {
  border: 1px solid rgba(231, 200, 115, 0.28);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(255, 253, 247, 0.05);
  color: var(--vv-muted-cream);
}

.widget-result.is-visible {
  animation: softFade 260ms ease both;
}

.widget-submit.is-loading {
  pointer-events: none;
  opacity: 0.88;
}

.widget-submit.is-loading::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-inline-end: 8px;
  border: 2px solid rgba(4, 17, 31, 0.28);
  border-top-color: var(--vv-deep-navy);
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

.icon-box {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(231, 200, 115, 0.42);
  border-radius: 12px;
  background: rgba(200, 155, 67, 0.13);
  color: var(--vv-soft-gold);
  font-weight: 900;
  flex: 0 0 auto;
}

.lift-card {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.lift-card:hover,
.lift-card:focus-within,
.chip:hover {
  transform: translateY(-3px);
  border-color: rgba(231, 200, 115, 0.5);
}

.home-card-grid .card,
.comfort-grid .card {
  border-radius: 16px;
}

.comfort-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.comfort-grid .card {
  grid-column: span 2;
  padding: 20px;
}

.comfort-grid .wide {
  grid-column: span 4;
}

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: stretch;
}

.teaser-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
}

.teaser-card .btn {
  margin-top: auto;
}

.teaser-card.featured {
  grid-column: span 3;
  min-height: 260px;
}

.teaser-card.support {
  grid-column: span 4;
}

.teaser-card.small {
  grid-column: span 2;
}

.assessment-section {
  padding-bottom: 96px;
}

.summary-card {
  margin-bottom: 18px;
}

.summary-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.wizard-card {
  padding: 26px;
  max-width: 900px;
  overflow: hidden;
}

.wizard-trust-notes {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  padding: 13px 14px;
  border: 1px solid rgba(231, 200, 115, 0.24);
  border-radius: 16px;
  background: rgba(200, 155, 67, 0.08);
  color: var(--vv-muted-cream);
  font-size: 0.9rem;
  line-height: 1.65;
}

.wizard-trust-notes span {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.wizard-trust-notes span::before {
  content: "✓";
  color: var(--vv-soft-gold);
  font-weight: 900;
}

.wizard-progress-top {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 8px;
}

.wizard-step-count {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 5px 11px;
  border: 1px solid rgba(231, 200, 115, 0.3);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.055);
  color: var(--vv-soft-gold);
  font-size: 0.86rem;
  font-weight: 800;
}

.wizard-progress {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.09);
  overflow: hidden;
  margin-bottom: 16px;
}

.wizard-progress span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: var(--vv-gold);
  transition: width 220ms ease;
}

.wizard-step-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
}

.wizard-step-list li {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
  border: 1px solid rgba(231, 200, 115, 0.22);
  border-radius: 14px;
  background: rgba(255, 253, 247, 0.04);
  color: var(--vv-muted-cream);
  font-size: 0.8rem;
  font-weight: 800;
}

.wizard-step-list li.is-active,
.wizard-step-list li.is-complete {
  border-color: rgba(231, 200, 115, 0.58);
  background: rgba(200, 155, 67, 0.15);
  color: var(--vv-warm-white);
}

.wizard-step {
  animation: softFade 220ms ease both;
}

.step-helper {
  margin-top: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(231, 200, 115, 0.24);
  border-radius: 12px;
  background: rgba(200, 155, 67, 0.08);
  color: var(--vv-soft-gold);
  font-size: 0.9rem;
  font-weight: 700;
}

.wizard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

button,
.btn,
.chip,
input,
select,
textarea {
  min-height: 48px;
}

button:focus-visible,
.btn:focus-visible,
.chip:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(231, 200, 115, 0.72);
  outline-offset: 3px;
}

.btn,
.chip {
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.btn:active,
.chip:active {
  transform: translateY(0) scale(0.99);
}

.home-mobile-sticky {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 220ms ease, opacity 220ms ease;
}

.home-mobile-sticky.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Build 10 trust visual layer */
.section {
  position: relative;
}

.section:nth-of-type(even)::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.028), transparent 34%, rgba(200, 155, 67, 0.032)),
    rgba(255, 253, 247, 0.014);
  pointer-events: none;
  z-index: -1;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.trust-badges.center {
  justify-content: center;
}

.trust-badges.compact {
  margin-top: 10px;
}

.trust-badges span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid rgba(231, 200, 115, 0.32);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.075), rgba(255, 253, 247, 0.035)),
    rgba(4, 17, 31, 0.44);
  color: rgba(255, 253, 247, 0.88);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.13);
}

.trust-badges span::before {
  content: "";
  width: 7px;
  height: 7px;
  border: 1px solid var(--vv-soft-gold);
  border-radius: 999px;
  background: rgba(200, 155, 67, 0.24);
  box-shadow: 0 0 16px rgba(231, 200, 115, 0.28);
  flex: 0 0 auto;
}

.line-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card,
.package-card,
.form-card,
.story-card,
.support-card,
.notice,
.quick-widget,
.wizard-card,
.summary-card,
.teaser-card {
  border-radius: 20px;
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.22);
}

.card,
.teaser-card,
.quick-widget,
.wizard-card,
.summary-card,
.notice {
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.088), rgba(255, 253, 247, 0.032)),
    rgba(5, 20, 36, 0.92);
}

.lift-card,
.package-card,
.support-action,
.support-status,
.support-faq details,
.faq-item,
.finder-option,
.portal-chips a,
.footer-contact > a {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.lift-card:hover,
.package-card:hover,
.support-action:hover,
.support-status:hover,
.support-faq details:hover,
.faq-item:hover,
.footer-contact > a:hover {
  transform: translateY(-3px);
  border-color: rgba(231, 200, 115, 0.5);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background:
    linear-gradient(180deg, var(--vv-soft-gold), var(--vv-gold));
  box-shadow: 0 14px 32px rgba(200, 155, 67, 0.18);
}

.btn.secondary {
  background: rgba(4, 17, 31, 0.34);
  color: var(--vv-cream);
  border-color: rgba(231, 200, 115, 0.52);
  box-shadow: none;
}

.btn:hover {
  box-shadow: 0 16px 34px rgba(200, 155, 67, 0.22), 0 12px 28px rgba(0, 0, 0, 0.22);
}

input,
select,
textarea {
  border-color: rgba(231, 200, 115, 0.3);
  border-radius: 16px;
  background: rgba(3, 14, 25, 0.72);
  color: var(--vv-warm-white);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(231, 200, 115, 0.82);
  background: rgba(4, 17, 31, 0.94);
  box-shadow: 0 0 0 4px rgba(200, 155, 67, 0.18);
}

textarea {
  min-height: 112px;
}

.wizard-card label,
.wizard-card legend {
  color: var(--vv-warm-white);
}

.wizard-card .form-grid {
  gap: 18px 16px;
}

.wizard-card fieldset {
  display: grid;
  gap: 9px;
}

.premium-intake {
  border-color: rgba(231, 200, 115, 0.3);
}

.conditional-panel,
.finance-section,
.professional-section,
.assets-section,
.premium-subcard,
.soft-panel {
  display: grid;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(231, 200, 115, 0.22);
  border-radius: 18px;
  background: rgba(255, 253, 247, 0.045);
}

.conditional-panel[hidden],
.finance-section[hidden],
[data-invitation-panel][hidden],
[data-visit-purpose-other][hidden],
[data-residence-permit-other][hidden],
[data-financial-support-other][hidden],
[data-passport-documents-panel][hidden],
[data-passport-other][hidden],
[data-work-other][hidden],
[data-family-assets-helper][hidden],
[data-assets-other][hidden],
[data-return-ties-other][hidden],
[data-travel-history-panel][hidden],
[data-schengen-travel-panel][hidden],
[data-schengen-application-panel][hidden],
[data-previous-authority-other][hidden],
[data-refusal-other][hidden] {
  display: none;
}

.finance-block {
  display: grid;
  gap: 9px;
}

.field-title {
  color: var(--vv-warm-white);
  font-weight: 800;
}

.field-helper {
  margin: 0;
  color: var(--vv-muted-cream);
  font-size: 0.9rem;
}

.optional-toggle {
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(231, 200, 115, 0.22);
  border-radius: 14px;
  background: rgba(255, 253, 247, 0.045);
}

.optional-toggle input {
  accent-color: var(--vv-gold);
}

.permit-grid,
.purpose-grid,
.passport-grid,
.work-status-grid,
.finance-method-grid,
.assets-grid,
.return-tie-grid,
.canada-contacts-grid,
.travel-quick-grid,
.schengen-grid,
.embassy-grid,
.refusal-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.select-multiple-label select {
  min-height: 150px;
  padding-block: 10px;
}

.select-multiple-label option {
  padding: 8px;
}

.btn:disabled,
.btn[disabled] {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
  box-shadow: none;
}

.final-step-copy {
  padding: 14px;
  border: 1px solid rgba(158, 215, 186, 0.3);
  border-radius: 16px;
  background: rgba(158, 215, 186, 0.09);
}

.wizard-actions,
.wizard-buttons {
  justify-content: flex-start;
  align-items: center;
}

.wizard-actions [data-wizard-next],
.wizard-actions [data-wizard-submit],
.wizard-buttons [data-support-next],
.wizard-buttons [data-support-submit] {
  min-width: 170px;
}

.wizard-actions [data-wizard-prev],
.wizard-buttons [data-support-prev] {
  min-width: 130px;
}

.wizard-progress,
.wizard-steps span {
  box-shadow: inset 0 0 0 1px rgba(231, 200, 115, 0.16);
}

.wizard-progress span,
.wizard-steps span.is-active {
  background: linear-gradient(90deg, var(--vv-gold), var(--vv-soft-gold));
  box-shadow: 0 0 22px rgba(200, 155, 67, 0.24);
}

.faq-item summary,
.support-faq summary,
.package-details summary {
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.faq-item summary:hover,
.support-faq summary:hover,
.package-details summary:hover {
  background: rgba(200, 155, 67, 0.1);
}

.trust-page-hero {
  padding-top: 66px;
}

.trust-band {
  padding-top: 28px;
}

.trust-card-grid .card {
  padding: 24px;
}

.premium-notice {
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(200, 155, 67, 0.12), rgba(255, 253, 247, 0.045)),
    rgba(5, 20, 36, 0.94);
}

.vv-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.vv-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes softFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 860px) {
  .home-hero-grid,
  .comfort-grid,
  .teaser-grid,
  .summary-card ul {
    grid-template-columns: 1fr;
  }

  .comfort-grid .card,
  .comfort-grid .wide,
  .teaser-card.featured,
  .teaser-card.support,
  .teaser-card.small {
    grid-column: auto;
  }

  .quick-widget {
    padding: 18px;
  }

  .hero-assessment-note {
    padding: 18px;
  }

  .wizard-card {
    padding: 18px;
  }

  .choice-grid,
  .choice-grid.compact,
  .permit-grid,
  .purpose-grid,
  .passport-grid,
  .work-status-grid,
  .finance-method-grid,
  .assets-grid,
  .return-tie-grid,
  .canada-contacts-grid,
  .travel-quick-grid,
  .schengen-grid,
  .embassy-grid,
  .refusal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wizard-step-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .wizard-step-list li {
    min-height: 38px;
    padding: 6px 5px;
    font-size: 0.72rem;
  }
}

@media (max-width: 520px) {
  .home-hero {
    padding-top: 34px;
  }

  .chip-grid {
    grid-template-columns: 1fr;
  }

  .choice-grid,
  .choice-grid.compact,
  .permit-grid,
  .purpose-grid,
  .passport-grid,
  .work-status-grid,
  .finance-method-grid,
  .assets-grid,
  .return-tie-grid,
  .canada-contacts-grid,
  .travel-quick-grid,
  .schengen-grid,
  .embassy-grid,
  .refusal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .conditional-panel,
  .finance-section,
  .professional-section,
  .assets-section,
  .premium-subcard,
  .soft-panel {
    padding: 12px;
    gap: 12px;
  }

  .choice {
    min-height: 48px;
    padding: 8px;
    font-size: 0.86rem;
  }

  .wizard-trust-notes {
    padding: 11px;
    font-size: 0.84rem;
  }

  .wizard-progress {
    height: 11px;
  }

  .wizard-actions .btn {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
  }

  .wizard-actions [data-wizard-submit] {
    flex-basis: 100%;
  }

  .trust-badges {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .lift-card:hover,
  .lift-card:focus-within,
  .chip:hover,
  .btn:hover,
  .package-card:hover,
  .support-action:hover,
  .support-status:hover,
  .support-faq details:hover,
  .faq-item:hover,
  .footer-contact > a:hover,
  .vv-reveal {
    transform: none;
  }

  .vv-reveal {
    opacity: 1;
  }
}
