:root {
  --wine-950: #21051a;
  --wine-900: #350522;
  --wine-800: #5c0732;
  --red-700: #b0003a;
  --red-600: #cc092f;
  --magenta-500: #e2185b;
  --navy-950: #090d2a;
  --navy-900: #10153d;
  --navy-800: #1d2458;
  --paper: #fbfafc;
  --muted: #676477;
  --line: #e8e3ea;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(24, 7, 31, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #24202a;
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  border-radius: 0 0 10px 10px;
  color: var(--white);
  background: var(--navy-950);
}

.skip-link:focus {
  top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  background:
    radial-gradient(circle at 22% 0%, rgba(235, 32, 91, 0.55), transparent 28rem),
    linear-gradient(110deg, var(--wine-900), var(--red-700) 45%, var(--navy-900));
  box-shadow: 0 9px 30px rgba(19, 2, 23, 0.18);
}

.nav-wrap {
  width: min(1180px, calc(100% - 2rem));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--white);
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.brand-text strong,
.brand-text span {
  display: block;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

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

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 10px;
  color: var(--white);
  background: transparent;
  padding: 0.55rem 0.72rem;
  font: inherit;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.main-nav a {
  position: relative;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 650;
  text-decoration: none;
  opacity: 0.88;
}

.main-nav a:hover,
.main-nav a:focus,
.main-nav a[aria-current="page"] {
  opacity: 1;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.45rem;
  height: 2px;
  background: var(--white);
  transition: right 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus::after,
.main-nav a[aria-current="page"]::after {
  right: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 28%, rgba(229, 31, 95, 0.4), transparent 24rem),
    linear-gradient(120deg, var(--wine-950), var(--wine-800) 44%, var(--navy-900));
}

.hero::after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -12rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 5rem rgba(255, 255, 255, 0.025),
    0 0 0 10rem rgba(255, 255, 255, 0.018);
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  min-height: 590px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 4rem;
  padding: 4rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.15rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6c97;
  box-shadow: 0 0 0 5px rgba(255, 108, 151, 0.14);
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero h1 span {
  display: block;
  color: #ff8caf;
}

.hero-lead {
  max-width: 680px;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--wine-950);
  background: var(--white);
  box-shadow: 0 13px 34px rgba(0, 0, 0, 0.2);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.hero-art {
  position: relative;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: -1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  transform: rotate(3deg);
}

.hero-art img {
  position: relative;
  width: 100%;
  aspect-ratio: 660 / 312;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.hero-note {
  position: absolute;
  right: -1.1rem;
  bottom: -2.2rem;
  width: min(310px, 88%);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  color: #e8e7f1;
  background: rgba(12, 15, 53, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-note strong {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
}

.hero-note span {
  font-size: 0.75rem;
  line-height: 1.45;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 1.15rem;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: var(--wine-800);
  font-size: 0.88rem;
}

.trust-item span {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.74rem;
}

.section {
  padding: 5.5rem 0;
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 0% 100%, rgba(226, 24, 91, 0.24), transparent 25rem),
    linear-gradient(140deg, var(--navy-950), var(--navy-800));
}

.section-soft {
  background: #f3eff4;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.section-kicker {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--red-600);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-dark .section-kicker {
  color: #ff729c;
}

.section-heading h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4.3vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.section-heading p {
  margin: 1rem 0 0;
  color: var(--muted);
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  padding: 1.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 35px rgba(42, 14, 44, 0.055);
}

.card-number {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  background: linear-gradient(140deg, var(--red-600), var(--navy-800));
}

.card h3 {
  margin: 1rem 0 0.5rem;
  color: var(--wine-900);
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 4rem;
}

.feature + .feature {
  margin-top: 5rem;
}

.feature.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.feature.reverse .feature-image {
  order: 2;
}

.feature-image {
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(145deg, #f2dce5, #dfe2f2);
  box-shadow: var(--shadow);
}

.feature-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.feature-copy h2,
.feature-copy h3 {
  margin: 0 0 1rem;
  color: var(--wine-900);
  font-size: clamp(1.75rem, 3.4vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.feature-copy p {
  color: var(--muted);
}

.feature-copy ul,
.prose ul {
  padding-left: 1.2rem;
}

.feature-copy li,
.prose li {
  margin: 0.55rem 0;
}

.info-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 3rem;
}

.sticky-title {
  position: sticky;
  top: 110px;
  align-self: start;
}

.sticky-title h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.article-stack {
  display: grid;
  gap: 1rem;
}

.article {
  padding: 1.55rem;
  border-left: 3px solid var(--red-600);
  border-radius: 0 18px 18px 0;
  background: var(--white);
}

.article h3 {
  margin: 0 0 0.55rem;
  color: var(--wine-900);
}

.article p {
  margin: 0;
  color: var(--muted);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.security-card {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.security-card h3 {
  margin: 0 0 0.55rem;
  color: var(--white);
}

.security-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

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

details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 1.15rem 3rem 1.15rem 1.2rem;
  color: var(--wine-900);
  font-weight: 750;
}

details p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
}

.cta {
  position: relative;
  overflow: hidden;
  padding: 2.3rem;
  border-radius: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 0%, rgba(255, 255, 255, 0.17), transparent 18rem),
    linear-gradient(120deg, var(--red-700), var(--magenta-500), var(--navy-800));
  box-shadow: var(--shadow);
}

.cta h2 {
  max-width: 750px;
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.cta p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  padding: 5rem 0;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 0%, rgba(232, 30, 93, 0.4), transparent 22rem),
    linear-gradient(120deg, var(--wine-950), var(--red-700), var(--navy-900));
}

.page-hero p {
  max-width: 760px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs {
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

.breadcrumbs a {
  color: inherit;
}

.prose {
  max-width: 860px;
}

.prose h2 {
  margin: 2.4rem 0 0.8rem;
  color: var(--wine-900);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  letter-spacing: -0.035em;
}

.prose h3 {
  color: var(--navy-800);
}

.prose p {
  color: #555060;
}

.notice {
  margin: 1.5rem 0;
  padding: 1.2rem;
  border: 1px solid #e8c9d4;
  border-radius: 14px;
  color: #4f1d31;
  background: #fff2f6;
}

.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: var(--navy-950);
}

.footer-grid {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 3rem;
  padding: 3.4rem 0 2.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

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

.footer-brand strong {
  display: block;
  color: var(--white);
}

.footer-brand span {
  display: block;
  font-size: 0.76rem;
}

.footer-grid h2 {
  margin: 0 0 0.8rem;
  color: var(--white);
  font-size: 0.86rem;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--white);
}

.disclaimer {
  margin-top: 1.2rem;
  font-size: 0.76rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  font-size: 0.72rem;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    padding: 1rem;
    border-radius: 16px;
    background: var(--navy-950);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: grid;
  }

  .hero-grid,
  .feature,
  .feature.reverse,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    gap: 3rem;
  }

  .feature.reverse .feature-image {
    order: 0;
  }

  .sticky-title {
    position: static;
  }

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

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .brand-text span {
    display: none;
  }

  .hero-grid {
    padding: 3.2rem 0 4.5rem;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 15vw, 4rem);
  }

  .cards,
  .security-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 0;
  }

  .hero-note {
    right: 0.5rem;
  }

  .footer-bottom-inner {
    display: block;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

.home-v2 {
  --v2-ink: #211c25;
  --v2-muted: #6e6670;
  --v2-paper: #fffdfd;
  --v2-tint: #f8f3f6;
  --v2-line: #e8dfe4;
  --v2-red: #cc092f;
  --v2-wine: #7d0735;
  --v2-navy: #11163d;
  background: var(--v2-paper);
  color: var(--v2-ink);
}

.v2-shell {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.v2-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: #fff;
  background:
    radial-gradient(circle at 18% -80%, rgba(255, 92, 138, 0.45), transparent 24rem),
    linear-gradient(105deg, #65072e 0%, #a8063e 45%, #171944 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 12px 35px rgba(37, 6, 27, 0.18);
}

.v2-nav {
  width: min(1180px, calc(100% - 2rem));
  min-height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.v2-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
  text-decoration: none;
}

.v2-brand img {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  object-fit: contain;
  background: #cc092f;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.v2-brand strong,
.v2-brand small {
  display: block;
}

.v2-brand strong {
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.v2-brand small {
  margin-top: 0.08rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.67rem;
}

.home-v2 .v2-menu {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.home-v2 .v2-menu a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.home-v2 .v2-menu a:hover,
.home-v2 .v2-menu a:focus {
  color: #fff;
}

.v2-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(229, 25, 88, 0.34), transparent 26rem),
    linear-gradient(118deg, #26051d 0%, #65052f 46%, #11163d 100%);
}

.v2-hero::before {
  content: "";
  position: absolute;
  width: 38rem;
  height: 38rem;
  right: -13rem;
  bottom: -24rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 5rem rgba(255, 255, 255, 0.018),
    0 0 0 10rem rgba(255, 255, 255, 0.012);
}

.v2-hero-grid {
  position: relative;
  z-index: 1;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  align-items: center;
  gap: 4.8rem;
  padding-block: 4rem 4.6rem;
}

.v2-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #ff8db0;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.v2-kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
}

.v2-kicker-dark {
  color: var(--v2-red);
}

.v2-hero h1 {
  margin: 1rem 0 0;
  max-width: 670px;
  font-size: clamp(3.3rem, 7.4vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.v2-hero-lead {
  max-width: 700px;
  margin: 1.6rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.v2-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.v2-btn-light {
  color: #3a0922;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.v2-btn-outline {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.v2-hero-facts {
  margin: 2.4rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.v2-hero-facts div {
  padding: 0.85rem 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.v2-hero-facts div:first-child {
  padding-left: 0;
  border-left: 0;
}

.v2-hero-facts dt {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.v2-hero-facts dd {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
}

.v2-hero-media {
  margin: 0;
}

.v2-image-frame {
  display: grid;
  place-items: center;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
}

.v2-image-frame img {
  width: 100%;
  height: auto;
  max-height: 390px;
  object-fit: contain;
  border-radius: 17px;
}

.v2-hero-media figcaption {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  text-align: center;
}

.v2-index {
  border-bottom: 1px solid var(--v2-line);
  background: #fff;
}

.v2-index-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.v2-index-grid a {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.75rem;
  padding: 1.35rem 1.25rem;
  border-right: 1px solid var(--v2-line);
  color: inherit;
  text-decoration: none;
}

.v2-index-grid a:first-child {
  border-left: 1px solid var(--v2-line);
}

.v2-index-grid span {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--v2-red);
  font-size: 0.68rem;
  font-weight: 900;
}

.v2-index-grid strong {
  color: var(--v2-wine);
  font-size: 0.82rem;
}

.v2-index-grid small {
  margin-top: 0.15rem;
  color: var(--v2-muted);
  font-size: 0.68rem;
}

.v2-section {
  padding: 6rem 0;
}

.v2-section-tint {
  background: var(--v2-tint);
}

.v2-section-head {
  max-width: 850px;
  margin-bottom: 2.8rem;
}

.v2-section-head h2,
.v2-wide-copy h2,
.v2-corporate-layout h2 {
  margin: 0.8rem 0 0;
  font-size: clamp(2rem, 4.2vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.v2-section-head p,
.v2-wide-copy p,
.v2-corporate-layout p {
  margin: 1.1rem 0 0;
  color: var(--v2-muted);
}

.v2-editorial-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3.5rem;
  align-items: start;
}

.v2-editorial-main {
  padding-left: 1.5rem;
  border-left: 3px solid var(--v2-red);
}

.v2-editorial-main h3 {
  margin: 0;
  color: var(--v2-wine);
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.v2-editorial-main p {
  color: var(--v2-muted);
}

.v2-summary {
  padding: 1.6rem;
  border: 1px solid var(--v2-line);
  border-radius: 18px;
  background: linear-gradient(145deg, #fff, #f9f3f6);
  box-shadow: 0 18px 45px rgba(59, 16, 42, 0.07);
}

.v2-summary > span {
  color: var(--v2-wine);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.v2-summary ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.v2-summary li {
  position: relative;
  padding: 0.52rem 0 0.52rem 1.2rem;
  border-top: 1px solid var(--v2-line);
  color: var(--v2-muted);
  font-size: 0.82rem;
}

.v2-summary li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--v2-red);
}

.v2-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--v2-line);
  border-left: 1px solid var(--v2-line);
}

.v2-service {
  min-height: 245px;
  padding: 1.55rem;
  border-right: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
  background: rgba(255, 255, 255, 0.76);
}

.v2-service b {
  color: var(--v2-red);
  font-size: 0.68rem;
}

.v2-service h3 {
  margin: 1.25rem 0 0.6rem;
  color: var(--v2-wine);
  font-size: 1rem;
}

.v2-service p {
  margin: 0;
  color: var(--v2-muted);
  font-size: 0.82rem;
}

.v2-feature-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 0%, rgba(198, 9, 60, 0.09), transparent 30rem),
    #fff;
}

.v2-wide-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  align-items: center;
}

.v2-wide-image {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 1.4rem;
  border: 1px solid var(--v2-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(61, 13, 43, 0.1);
}

.v2-wide-image img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: contain;
}

.v2-split-headings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--v2-line);
  border-radius: 24px;
  background: var(--v2-line);
}

.v2-split-headings article {
  padding: 2.2rem;
  background: #fff;
}

.v2-label {
  color: var(--v2-red);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.v2-split-headings h2 {
  margin: 0.8rem 0 0;
  color: var(--v2-wine);
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.v2-split-headings p {
  color: var(--v2-muted);
}

.v2-dark {
  color: #fff;
  background:
    radial-gradient(circle at 0% 100%, rgba(208, 10, 69, 0.28), transparent 28rem),
    linear-gradient(135deg, #0c102e, #191d4d);
}

.v2-dark .v2-section-head p {
  color: rgba(255, 255, 255, 0.66);
}

.v2-admin-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.v2-admin-grid article {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
}

.v2-admin-grid article > span {
  color: #ff7da5;
  font-size: 0.69rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.v2-admin-grid h3 {
  margin: 1rem 0 0.6rem;
  font-size: 1rem;
}

.v2-admin-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.v2-process {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
}

.v2-process > div {
  min-height: 145px;
  padding: 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.075);
}

.v2-process b,
.v2-process strong,
.v2-process span {
  display: block;
}

.v2-process b {
  color: #ff7da5;
  font-size: 0.68rem;
}

.v2-process strong {
  margin-top: 0.6rem;
  font-size: 0.9rem;
}

.v2-process span {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
}

.v2-process i {
  width: 26px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.v2-file-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 4rem;
}

.v2-file-intro {
  padding: 2rem;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(145deg, var(--v2-wine), var(--v2-navy));
  box-shadow: 0 20px 48px rgba(40, 7, 30, 0.18);
}

.v2-file-intro h3 {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: -0.035em;
}

.v2-file-intro p {
  color: rgba(255, 255, 255, 0.7);
}

.v2-file-list {
  border-top: 1px solid var(--v2-line);
}

.v2-file-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--v2-line);
}

.v2-file-list strong {
  color: var(--v2-wine);
  font-size: 0.82rem;
}

.v2-file-list span {
  color: var(--v2-muted);
  font-size: 0.8rem;
}

.v2-product-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.v2-product-list article {
  padding: 1.45rem;
  border: 1px solid var(--v2-line);
  border-radius: 16px;
  background: #fff;
}

.v2-product-list h3 {
  margin: 0;
  color: var(--v2-wine);
  font-size: 0.95rem;
}

.v2-product-list p {
  margin-bottom: 0;
  color: var(--v2-muted);
  font-size: 0.8rem;
}

.v2-corporate-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.v2-corporate-panel {
  padding: 2rem;
  border-radius: 20px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 81, 136, 0.3), transparent 16rem),
    linear-gradient(140deg, #69052f, #171944);
  box-shadow: 0 24px 55px rgba(50, 8, 36, 0.18);
}

.v2-corporate-panel > strong {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.v2-corporate-panel ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.v2-corporate-panel li {
  padding: 0.65rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.v2-channel-section {
  color: #fff;
  background:
    radial-gradient(circle at 85% 15%, rgba(212, 17, 77, 0.32), transparent 25rem),
    linear-gradient(130deg, #24051d, #72052f 48%, #11163d);
}

.v2-channel-section .v2-section-head p {
  color: rgba(255, 255, 255, 0.68);
}

.v2-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.v2-channel-grid article {
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.v2-channel-grid .v2-label {
  color: #ff83a8;
}

.v2-channel-grid h3 {
  margin: 1rem 0 0.6rem;
  font-size: 1.06rem;
}

.v2-channel-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
}

.v2-update-note {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
}

.v2-update-note strong {
  color: #fff;
  font-size: 0.85rem;
}

.v2-update-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
}

.v2-access-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.v2-access-grid article {
  padding: 1.5rem;
  border-top: 3px solid var(--v2-red);
  background: var(--v2-tint);
}

.v2-access-grid b {
  color: var(--v2-red);
  font-size: 0.68rem;
}

.v2-access-grid h3 {
  margin: 1rem 0 0.55rem;
  color: var(--v2-wine);
  font-size: 0.95rem;
}

.v2-access-grid p {
  margin: 0;
  color: var(--v2-muted);
  font-size: 0.8rem;
}

.v2-access-detail {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.v2-access-detail > div {
  padding: 1.7rem;
  border: 1px solid var(--v2-line);
  border-radius: 18px;
}

.v2-access-detail h3 {
  margin: 0.7rem 0;
  color: var(--v2-wine);
}

.v2-access-detail p {
  margin: 0;
  color: var(--v2-muted);
  font-size: 0.84rem;
}

.v2-practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.v2-practice-grid article {
  padding: 1.4rem;
  border: 1px solid var(--v2-line);
  border-radius: 16px;
  background: #fff;
}

.v2-practice-grid h3 {
  margin: 0;
  color: var(--v2-wine);
}

.v2-practice-grid p {
  margin-bottom: 0;
  color: var(--v2-muted);
  font-size: 0.8rem;
}

.v2-depth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--v2-line);
  border-left: 1px solid var(--v2-line);
}

.v2-depth-grid article {
  min-height: 250px;
  padding: 1.45rem;
  border-right: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
  background: #fff;
}

.v2-depth-grid article > span {
  color: var(--v2-red);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.v2-depth-grid h3 {
  margin: 1rem 0 0.55rem;
  color: var(--v2-wine);
  font-size: 0.97rem;
}

.v2-depth-grid p {
  margin: 0;
  color: var(--v2-muted);
  font-size: 0.79rem;
}

.v2-faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  align-items: start;
}

.v2-faq details {
  border-color: var(--v2-line);
  border-radius: 13px;
}

.v2-faq summary {
  font-size: 0.86rem;
}

.v2-faq details p {
  font-size: 0.8rem;
}

.v2-footer {
  color: rgba(255, 255, 255, 0.68);
  background: #0b0f2c;
}

.v2-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 4rem;
  padding-block: 3.5rem 2.5rem;
}

.v2-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.v2-footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: contain;
}

.v2-footer-brand strong,
.v2-footer-brand span {
  display: block;
}

.v2-footer-brand strong {
  color: #fff;
}

.inner-v2 {
  color: var(--v2-ink);
  background: #f7f4f6;
}

.inner-v2 .v2-header {
  position: sticky;
  top: 0;
}

.inner-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(229, 25, 88, 0.3), transparent 25rem),
    linear-gradient(118deg, #26051d 0%, #65052f 48%, #11163d 100%);
}

.inner-hero-grid {
  min-height: 410px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.55fr);
  align-items: end;
  gap: 3rem;
  padding-block: 4.5rem 4rem;
}

.inner-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
}

.inner-breadcrumbs a {
  color: #fff;
  text-decoration: none;
}

.inner-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.inner-hero p {
  max-width: 740px;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.inner-summary {
  padding: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.inner-summary span,
.inner-summary strong {
  display: block;
}

.inner-summary span {
  color: #ff9aba;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.inner-summary strong {
  margin-top: 0.55rem;
  font-size: 1.2rem;
  line-height: 1.25;
}

.inner-section {
  padding-block: 4.5rem;
}

.inner-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr);
  gap: 4rem;
  align-items: start;
}

.inner-eyebrow {
  color: var(--v2-red);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.inner-intro h2,
.inner-block h2 {
  margin: 0.75rem 0 0;
  color: var(--v2-wine);
  font-size: clamp(2rem, 4.4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.inner-copy {
  font-size: 1rem;
  line-height: 1.82;
}

.inner-copy p:first-child {
  margin-top: 0;
}

.inner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.inner-card {
  padding: 1.55rem;
  border: 1px solid var(--v2-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(61, 13, 43, 0.06);
}

.inner-card span {
  color: var(--v2-red);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.inner-card h2,
.inner-card h3 {
  margin: 0.65rem 0 0;
  color: var(--v2-wine);
  font-size: 1.16rem;
  line-height: 1.25;
}

.inner-card p {
  margin: 0.75rem 0 0;
  color: var(--v2-muted);
  line-height: 1.68;
}

.inner-band {
  color: #fff;
  background: linear-gradient(120deg, #310824, #72123e 62%, #171b47);
}

.inner-band .inner-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.inner-band .inner-card h2,
.inner-band .inner-card h3,
.inner-band .inner-block h2 {
  color: #fff;
}

.inner-band .inner-card p,
.inner-band .inner-copy {
  color: rgba(255, 255, 255, 0.76);
}

.inner-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.inner-list li {
  position: relative;
  padding-left: 1.6rem;
  line-height: 1.65;
}

.inner-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--v2-red);
}

.inner-faq {
  display: grid;
  gap: 0.75rem;
  margin-top: 2.2rem;
}

.inner-faq details {
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--v2-line);
  border-radius: 15px;
  background: #fff;
}

.inner-faq summary {
  color: var(--v2-wine);
  font-weight: 850;
  cursor: pointer;
}

.inner-faq p {
  margin: 0.85rem 0 0;
  color: var(--v2-muted);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .inner-hero-grid,
  .inner-intro {
    grid-template-columns: 1fr;
  }

  .inner-hero-grid {
    min-height: auto;
    gap: 2rem;
  }

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

@media (max-width: 660px) {
  .inner-hero-grid {
    padding-block: 3.2rem;
  }

  .inner-section {
    padding-block: 3.2rem;
  }

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

.home-v2 {
  --v3-red: #df123f;
  --v3-wine: #69072f;
  --v3-plum: #2b102d;
  --v3-navy: #11183e;
  --v3-ink: #17172a;
  --v3-muted: #666778;
  --v3-line: #e8e8ee;
  --v3-soft: #f7f7fa;
  background: #fff;
}

.home-v2 .v2-header {
  background: linear-gradient(106deg, #7b082f 0%, #9f0939 48%, #11183e 100%);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 28px rgba(23, 10, 30, 0.18);
}

.home-v2 .v2-nav {
  width: min(1440px, calc(100% - 3rem));
  min-height: 76px;
}

.home-v2 .v2-brand {
  gap: 0.9rem;
}

.home-v2 .v2-brand img {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(48, 2, 20, 0.24);
}

.home-v2 .v2-brand strong {
  font-size: 1.02rem;
}

.home-v2 .v2-brand small {
  margin-top: 0.12rem;
  font-size: 0.69rem;
}

.home-v2 .v2-menu {
  gap: 1.65rem;
}

.home-v2 .v2-menu a {
  padding: 0.45rem 0;
  font-size: 0.82rem;
}

.home-v2 .v2-menu a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  margin-top: 0.35rem;
  background: #ff668f;
  transition: width 0.2s ease;
}

.home-v2 .v2-menu a:hover::after,
.home-v2 .v2-menu a:focus::after {
  width: 100%;
}

.home-v2 .v2-shell {
  width: min(1440px, calc(100% - 3rem));
}

.home-v2 .v2-hero {
  background:
    radial-gradient(circle at 54% 16%, rgba(224, 18, 65, 0.22), transparent 30rem),
    linear-gradient(112deg, #2b071f 0%, #6b0732 48%, #11183e 100%);
}

.home-v2 .v2-hero::before {
  width: 48rem;
  height: 48rem;
  right: -17rem;
  bottom: -34rem;
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow:
    0 0 0 5.5rem rgba(255, 255, 255, 0.018),
    0 0 0 11rem rgba(255, 255, 255, 0.012);
}

.home-v2 .v2-hero-grid {
  min-height: 590px;
  grid-template-columns: minmax(0, 0.98fr) minmax(500px, 1.02fr);
  gap: clamp(3rem, 6vw, 7rem);
  padding-block: 3.8rem;
}

.home-v2 .v2-hero h1 {
  max-width: 760px;
  font-size: clamp(3.4rem, 6vw, 5.75rem);
  line-height: 0.96;
  letter-spacing: -0.062em;
}

.home-v2 .v2-hero-lead {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 0.35vw + 0.98rem, 1.18rem);
  line-height: 1.7;
}

.home-v2 .v2-btn {
  min-height: 50px;
  padding-inline: 1.35rem;
  border-radius: 9px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.home-v2 .v2-btn:hover,
.home-v2 .v2-btn:focus {
  transform: translateY(-2px);
}

.home-v2 .v2-btn-light {
  color: #fff;
  background: var(--v3-red);
  box-shadow: 0 15px 34px rgba(179, 6, 53, 0.25);
}

.home-v2 .v2-btn-outline {
  background: rgba(255, 255, 255, 0.035);
}

.home-v2 .v2-hero-facts {
  gap: 1rem;
  margin-top: 2.35rem;
}

.home-v2 .v2-hero-facts div,
.home-v2 .v2-hero-facts div:first-child {
  position: relative;
  min-height: 72px;
  padding: 0.75rem 0.85rem 0.75rem 2.9rem;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.home-v2 .v2-hero-facts div::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 1rem;
  width: 18px;
  height: 18px;
  border: 2px solid #ff638e;
  border-radius: 5px;
  box-shadow: inset 0 0 0 4px rgba(255, 99, 142, 0.08);
}

.home-v2 .v2-hero-facts dt {
  font-size: 0.82rem;
}

.home-v2 .v2-hero-facts dd {
  font-size: 0.73rem;
  line-height: 1.45;
}

.home-v2 .v2-hero-media {
  position: relative;
}

.home-v2 .v2-image-frame {
  position: relative;
  padding: 0;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.25);
  border-radius: 32px 8px 32px 8px;
  background: #fff;
  box-shadow: 0 32px 85px rgba(0, 0, 0, 0.36);
}

.home-v2 .v2-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.home-v2 .v2-image-frame img {
  width: 100%;
  max-height: none;
  aspect-ratio: 660 / 312;
  object-fit: contain;
  border-radius: 0;
}

.home-v2 .v2-hero-media figcaption {
  margin-top: 0.9rem;
  font-size: 0.74rem;
}

.home-v2 .v2-index {
  position: relative;
  z-index: 2;
  padding-block: 1.25rem;
  border-bottom: 0;
  background: #fff;
  box-shadow: 0 14px 38px rgba(25, 16, 34, 0.08);
}

.home-v2 .v2-index-grid {
  gap: 0.75rem;
}

.home-v2 .v2-index-grid a,
.home-v2 .v2-index-grid a:first-child {
  min-height: 112px;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--v3-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(28, 20, 37, 0.035);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-v2 .v2-index-grid a:hover,
.home-v2 .v2-index-grid a:focus {
  transform: translateY(-3px);
  border-color: rgba(204, 9, 47, 0.34);
  box-shadow: 0 15px 30px rgba(28, 20, 37, 0.08);
}

.home-v2 .v2-index-grid span {
  padding-top: 0.1rem;
  align-self: start;
  color: var(--v3-red);
}

.home-v2 .v2-index-grid strong {
  color: var(--v3-ink);
  font-size: 0.87rem;
}

.home-v2 .v2-index-grid small {
  color: var(--v3-muted);
  font-size: 0.72rem;
}

.home-v2 .v2-section {
  padding: clamp(4.5rem, 7vw, 7rem) 0;
}

.home-v2 .v2-section:nth-of-type(even):not(.v2-dark):not(.v2-channel-section) {
  background: var(--v3-soft);
}

.home-v2 .v2-section-head {
  max-width: 960px;
  margin-bottom: 3.2rem;
}

.home-v2 .v2-section-head h2,
.home-v2 .v2-wide-copy h2,
.home-v2 .v2-corporate-layout h2 {
  color: var(--v3-ink);
  font-size: clamp(2.15rem, 3.7vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.home-v2 .v2-dark .v2-section-head h2,
.home-v2 .v2-channel-section .v2-section-head h2 {
  color: #fff;
}

.home-v2 .v2-editorial-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(2.5rem, 5vw, 5rem);
}

.home-v2 .v2-editorial-main {
  padding: 2rem 2.1rem;
  border: 0;
  border-top: 4px solid var(--v3-red);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(37, 19, 43, 0.07);
}

.home-v2 .v2-summary {
  padding: 1.9rem;
  border-radius: 14px;
  background: linear-gradient(150deg, #fff, #f7eef2);
}

.home-v2 .v2-service-grid,
.home-v2 .v2-depth-grid {
  gap: 1rem;
  border: 0;
  background: transparent;
}

.home-v2 .v2-service,
.home-v2 .v2-depth-grid article {
  min-height: 255px;
  padding: 1.65rem;
  border: 1px solid var(--v3-line);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(33, 23, 39, 0.045);
}

.home-v2 .v2-service b {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(204, 9, 47, 0.22);
  border-radius: 8px;
  background: rgba(204, 9, 47, 0.05);
}

.home-v2 .v2-wide-feature {
  gap: clamp(3rem, 6vw, 6.5rem);
}

.home-v2 .v2-wide-image {
  padding: 0;
  overflow: hidden;
  border-radius: 24px 8px 24px 8px;
}

.home-v2 .v2-wide-image img {
  max-height: 380px;
  object-fit: contain;
}

.home-v2 .v2-split-headings {
  gap: 1rem;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.home-v2 .v2-split-headings article {
  padding: 2.35rem;
  border: 1px solid var(--v3-line);
  border-radius: 14px;
  box-shadow: 0 12px 34px rgba(34, 20, 40, 0.05);
}

.home-v2 .v2-dark {
  background:
    radial-gradient(circle at 6% 100%, rgba(218, 14, 67, 0.25), transparent 30rem),
    linear-gradient(130deg, #11162f, #191d48);
}

.home-v2 .v2-admin-grid {
  gap: 1.15rem;
}

.home-v2 .v2-admin-grid article,
.home-v2 .v2-channel-grid article {
  border-radius: 13px;
  backdrop-filter: blur(8px);
}

.home-v2 .v2-file-intro,
.home-v2 .v2-corporate-panel {
  border-radius: 14px;
}

.home-v2 .v2-product-list,
.home-v2 .v2-channel-grid,
.home-v2 .v2-access-grid,
.home-v2 .v2-practice-grid {
  gap: 1.15rem;
}

.home-v2 .v2-product-list article,
.home-v2 .v2-practice-grid article,
.home-v2 .v2-access-detail > div {
  border-radius: 13px;
  box-shadow: 0 10px 28px rgba(32, 20, 37, 0.045);
}

.home-v2 .v2-access-grid article {
  border: 1px solid var(--v3-line);
  border-top: 4px solid var(--v3-red);
  border-radius: 11px;
  background: #fff;
}

.home-v2 .v2-faq {
  gap: 1rem;
}

.home-v2 .v2-faq details {
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(31, 21, 37, 0.035);
}

.home-v2 .v2-faq summary {
  padding: 0.2rem;
  color: var(--v3-ink);
}

.home-v2 .v2-footer {
  background:
    radial-gradient(circle at 85% 0%, rgba(204, 9, 47, 0.16), transparent 24rem),
    #0b102c;
}

@media (max-width: 1120px) {
  .home-v2 .v2-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
    gap: 3rem;
  }

  .home-v2 .v2-hero h1 {
    font-size: clamp(3.15rem, 6.3vw, 5.2rem);
  }
}

@media (max-width: 980px) {
  .home-v2 .v2-nav,
  .home-v2 .v2-shell {
    width: min(100% - 2rem, 760px);
  }

  .home-v2 .v2-hero-grid {
    grid-template-columns: 1fr;
    padding-block: 3.5rem;
  }

  .home-v2 .v2-hero-media {
    max-width: none;
  }

  .home-v2 .v2-index-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-v2 .v2-index-grid a:nth-child(3) {
    border-left: 1px solid var(--v3-line);
  }
}

@media (max-width: 660px) {
  .home-v2 .v2-nav,
  .home-v2 .v2-shell {
    width: min(100% - 1.25rem, 620px);
  }

  .home-v2 .v2-hero-grid {
    gap: 2.3rem;
    padding-block: 3rem;
  }

  .home-v2 .v2-hero h1 {
    font-size: clamp(2.85rem, 15vw, 4.25rem);
  }

  .home-v2 .v2-hero-facts {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .home-v2 .v2-hero-facts div,
  .home-v2 .v2-hero-facts div:first-child {
    padding: 0.85rem 0.85rem 0.85rem 2.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

  .home-v2 .v2-index-grid {
    grid-template-columns: 1fr;
  }

  .home-v2 .v2-index-grid a {
    min-height: 96px;
  }

  .home-v2 .v2-editorial-main,
  .home-v2 .v2-summary,
  .home-v2 .v2-split-headings article {
    padding: 1.4rem;
  }
}

.home-v2 main p,
.home-v2 main li {
  font-size: clamp(1rem, 0.25vw + 0.95rem, 1.09rem);
  line-height: 1.75;
}

.home-v2 main .v2-label,
.home-v2 main .v2-kicker,
.home-v2 main .inner-eyebrow {
  font-size: 0.76rem;
}

.home-v2 main .v2-service h3,
.home-v2 main .v2-detail-grid h3,
.home-v2 main .inner-card h3 {
  font-size: clamp(1.08rem, 0.35vw + 1rem, 1.22rem);
}

.v2-footer-brand span {
  font-size: 0.7rem;
}

.v2-footer p {
  max-width: 650px;
  font-size: 0.74rem;
}

.v2-footer nav {
  display: grid;
  align-content: start;
  gap: 0.45rem;
}

.v2-footer nav strong {
  margin-bottom: 0.35rem;
  color: #fff;
  font-size: 0.78rem;
}

.v2-footer nav a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.74rem;
  text-decoration: none;
}

.v2-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v2-footer-bottom > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
  font-size: 0.68rem;
}

@media (max-width: 980px) {
  .home-v2 .v2-menu {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    padding: 1rem;
    border-radius: 15px;
    background: #0b0f2c;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  }

  .home-v2 .v2-menu.open {
    display: grid;
  }

  .v2-hero-grid,
  .v2-wide-feature,
  .v2-editorial-grid,
  .v2-file-layout,
  .v2-corporate-layout {
    grid-template-columns: 1fr;
  }

  .v2-hero-grid {
    gap: 3rem;
  }

  .v2-hero-media {
    max-width: 700px;
  }

  .v2-service-grid,
  .v2-admin-grid,
  .v2-access-grid,
  .v2-depth-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .v2-process {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .v2-process i {
    display: none;
  }

  .v2-index-grid,
  .v2-channel-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .v2-index-grid a:nth-child(3) {
    border-left: 1px solid var(--v2-line);
  }

  .v2-index-grid a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--v2-line);
  }
}

@media (max-width: 660px) {
  .v2-brand small {
    display: none;
  }

  .v2-hero-grid {
    min-height: auto;
    padding-block: 3.5rem;
  }

  .v2-hero h1 {
    font-size: clamp(3rem, 17vw, 4.5rem);
  }

  .v2-hero-facts,
  .v2-index-grid,
  .v2-service-grid,
  .v2-split-headings,
  .v2-admin-grid,
  .v2-product-list,
  .v2-channel-grid,
  .v2-access-grid,
  .v2-access-detail,
  .v2-practice-grid,
  .v2-depth-grid,
  .v2-faq,
  .v2-footer-grid {
    grid-template-columns: 1fr;
  }

  .v2-hero-facts div {
    padding: 0.75rem 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .v2-hero-facts div:first-child {
    border-top: 0;
  }

  .v2-index-grid a,
  .v2-index-grid a:first-child,
  .v2-index-grid a:nth-child(3) {
    border-left: 1px solid var(--v2-line);
    border-bottom: 1px solid var(--v2-line);
  }

  .v2-section {
    padding: 4.5rem 0;
  }

  .v2-file-list div,
  .v2-update-note {
    grid-template-columns: 1fr;
  }

  .v2-process {
    grid-template-columns: 1fr;
  }

  .v2-footer-bottom > div {
    display: grid;
  }
}

.home-v2 {
  --layout-red: #df123f;
  --layout-wine: #69072f;
  --layout-navy: #11183e;
  --layout-ink: #171727;
  --layout-muted: #626574;
  --layout-border: #e5e6ec;
  --layout-surface: #f6f7f9;
  background: #fff;
}

.home-v2 .v2-header {
  background: linear-gradient(105deg, #75072f 0%, #a2093a 48%, #12183e 100%);
  box-shadow: 0 8px 30px rgba(23, 8, 30, 0.2);
}

.home-v2 .v2-nav,
.home-v2 .v2-shell {
  width: min(1420px, calc(100% - 4rem));
}

.home-v2 .v2-nav {
  min-height: 78px;
}

.home-v2 .v2-brand img {
  width: 46px;
  height: 46px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: var(--layout-red);
}

.home-v2 .v2-menu {
  gap: 1.7rem;
}

.home-v2 .v2-menu a {
  font-size: 0.84rem;
}

.home-v2 .v2-hero {
  min-height: 610px;
  background:
    radial-gradient(circle at 45% 0%, rgba(225, 18, 63, 0.25), transparent 32rem),
    linear-gradient(112deg, #2b061f 0%, #700832 49%, #11183e 100%);
}

.home-v2 .v2-hero::before {
  right: -11rem;
  bottom: -28rem;
  width: 45rem;
  height: 45rem;
}

.home-v2 .v2-hero-grid {
  min-height: 610px;
  grid-template-columns: minmax(0, 0.94fr) minmax(510px, 1.06fr);
  gap: clamp(3rem, 6vw, 7.5rem);
  padding-block: 3.8rem 4.1rem;
}

.home-v2 .v2-hero h1 {
  max-width: 760px;
  font-size: clamp(3.7rem, 6.4vw, 6.1rem);
  line-height: 0.94;
  letter-spacing: -0.067em;
}

.home-v2 .v2-hero-lead {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.06rem, 0.35vw + 1rem, 1.19rem);
}

.home-v2 .v2-btn {
  min-height: 50px;
  padding-inline: 1.45rem;
  border-radius: 9px;
}

.home-v2 .v2-btn-light {
  color: #fff;
  background: var(--layout-red);
}

.home-v2 .v2-hero-facts {
  gap: 0;
  margin-top: 2.25rem;
}

.home-v2 .v2-hero-facts div,
.home-v2 .v2-hero-facts div:first-child {
  position: relative;
  min-height: 76px;
  padding: 0.8rem 1.1rem 0.8rem 3.25rem;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.home-v2 .v2-hero-facts div:first-child {
  border-left: 0;
}

.home-v2 .v2-hero-facts div::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.05rem;
  width: 20px;
  height: 20px;
  border: 2px solid #ff668f;
  border-radius: 6px;
  box-shadow: inset 0 0 0 4px rgba(255, 102, 143, 0.07);
}

.home-v2 .v2-hero-facts div:first-child::before {
  left: 0.2rem;
}

.home-v2 .v2-hero-media {
  position: relative;
}

.home-v2 .v2-hero-media::before {
  content: "";
  position: absolute;
  inset: -1.1rem -1.1rem 1.1rem 1.1rem;
  border: 1px solid rgba(255, 94, 139, 0.55);
  border-radius: 44% 5% 44% 5%;
  pointer-events: none;
}

.home-v2 .v2-image-frame {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 36% 5% 36% 5%;
  background: #fff;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.4);
}

.home-v2 .v2-image-frame img {
  width: 100%;
  max-height: none;
  aspect-ratio: 660 / 312;
  object-fit: contain;
  border-radius: 0;
}

.home-v2 .v2-index {
  padding-block: 1.35rem;
  border: 0;
  background: #fff;
  box-shadow: 0 14px 40px rgba(20, 14, 28, 0.09);
}

.home-v2 .v2-index-grid {
  gap: 0.8rem;
}

.home-v2 .v2-index-grid a,
.home-v2 .v2-index-grid a:first-child {
  min-height: 116px;
  padding: 1.25rem 1.4rem;
  border: 1px solid var(--layout-border);
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(30, 20, 36, 0.04);
}

.home-v2 .v2-index-grid strong {
  color: var(--layout-ink);
  font-size: 0.88rem;
}

.home-v2 .v2-section {
  padding: clamp(5rem, 7.2vw, 7.5rem) 0;
}

.home-v2 .v2-section-tint,
.home-v2 .v2-feature-section,
.home-v2 .v2-section:nth-of-type(even):not(.v2-dark):not(.v2-channel-section) {
  background: var(--layout-surface);
}

.home-v2 .v2-section-head {
  max-width: 980px;
  margin-bottom: 3.25rem;
  padding-left: 1.3rem;
  border-left: 3px solid var(--layout-red);
}

.home-v2 .v2-section-head h2,
.home-v2 .v2-wide-copy h2,
.home-v2 .v2-corporate-layout h2 {
  color: var(--layout-ink);
  font-size: clamp(2.2rem, 3.8vw, 3.65rem);
  line-height: 1.04;
}

.home-v2 .v2-dark .v2-section-head h2,
.home-v2 .v2-channel-section .v2-section-head h2 {
  color: #fff;
}

.home-v2 .v2-editorial-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: clamp(2.5rem, 5vw, 5.5rem);
}

.home-v2 .v2-editorial-main {
  padding: 2.15rem 2.3rem;
  border: 0;
  border-top: 4px solid var(--layout-red);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 16px 46px rgba(34, 19, 41, 0.07);
}

.home-v2 .v2-summary {
  padding: 1.9rem;
  border-radius: 13px;
  box-shadow: 0 16px 45px rgba(34, 19, 41, 0.07);
}

.home-v2 .v2-service-grid,
.home-v2 .v2-depth-grid {
  gap: 1rem;
  border: 0;
  background: transparent;
}

.home-v2 .v2-service,
.home-v2 .v2-depth-grid article {
  min-height: 260px;
  padding: 1.7rem;
  border: 1px solid var(--layout-border);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(31, 21, 38, 0.045);
}

.home-v2 .v2-service b {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(204, 9, 47, 0.24);
  border-radius: 8px;
  background: rgba(204, 9, 47, 0.05);
}

.home-v2 .v2-wide-image {
  overflow: hidden;
  padding: 0;
  border-radius: 28px 8px 28px 8px;
}

.home-v2 .v2-wide-image img {
  width: 100%;
  max-height: 390px;
  object-fit: contain;
}

.home-v2 .v2-split-headings {
  gap: 1rem;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.home-v2 .v2-split-headings article,
.home-v2 .v2-product-list article,
.home-v2 .v2-practice-grid article,
.home-v2 .v2-access-detail > div {
  border: 1px solid var(--layout-border);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(31, 21, 38, 0.05);
}

.home-v2 .v2-dark {
  background:
    radial-gradient(circle at 8% 100%, rgba(217, 14, 67, 0.25), transparent 31rem),
    linear-gradient(128deg, #10152f, #1a1e4a);
}

.home-v2 .v2-admin-grid,
.home-v2 .v2-channel-grid,
.home-v2 .v2-product-list,
.home-v2 .v2-access-grid,
.home-v2 .v2-practice-grid {
  gap: 1.15rem;
}

.home-v2 .v2-admin-grid article,
.home-v2 .v2-channel-grid article,
.home-v2 .v2-process > div,
.home-v2 .v2-file-intro,
.home-v2 .v2-corporate-panel,
.home-v2 .v2-update-note {
  border-radius: 12px;
}

.home-v2 .v2-access-grid article {
  border: 1px solid var(--layout-border);
  border-top: 4px solid var(--layout-red);
  border-radius: 10px;
  background: #fff;
}

.home-v2 .v2-faq details {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(31, 21, 38, 0.04);
}

.contact-v3 {
  color: #171727;
  background: #f6f7f9;
}

.contact-v3 .contact-utility {
  color: rgba(255, 255, 255, 0.8);
  background: #0b132c;
}

.contact-v3 .contact-utility .v2-shell {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.72rem;
}

.contact-v3 .contact-hero {
  color: #fff;
  background:
    radial-gradient(circle at 78% 8%, rgba(222, 18, 63, 0.32), transparent 28rem),
    linear-gradient(112deg, #2b061f, #700832 50%, #11183e);
}

.contact-v3 .contact-hero-grid {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 4rem;
  align-items: center;
  padding-block: 4.5rem;
}

.contact-v3 .contact-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.contact-v3 .contact-hero p {
  color: rgba(255, 255, 255, 0.79);
  font-size: 1.08rem;
}

.contact-v3 .contact-highlight {
  padding: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.075);
}

.contact-v3 .contact-highlight span,
.contact-v3 .contact-highlight strong {
  display: block;
}

.contact-v3 .contact-highlight span {
  color: #ff8eaf;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-v3 .contact-highlight strong {
  margin-top: 0.65rem;
  font-size: 1.45rem;
}

.contact-v3 .contact-section {
  padding-block: 5.5rem;
}

.contact-v3 .contact-intro {
  max-width: 900px;
  margin-bottom: 2.8rem;
}

.contact-v3 .contact-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.contact-v3 .contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.contact-v3 .contact-card {
  padding: 1.7rem;
  border: 1px solid #e5e6ec;
  border-top: 4px solid #df123f;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(31, 21, 38, 0.055);
}

.contact-v3 .contact-card.wide {
  grid-column: span 2;
}

.contact-v3 .contact-card small {
  color: #bd0d3b;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-v3 .contact-number {
  display: block;
  margin-top: 0.55rem;
  overflow-wrap: anywhere;
  color: #6d0732;
  font-size: clamp(1.25rem, 2.2vw, 1.9rem);
  font-weight: 850;
}

.contact-v3 .contact-card p,
.contact-v3 .contact-intro p {
  color: #626574;
}

.contact-v3 .contact-source-note {
  margin-top: 2rem;
  padding: 1.25rem 1.4rem;
  border-left: 4px solid #df123f;
  background: #fff;
  color: #626574;
}

@media (max-width: 1080px) {
  .home-v2 .v2-nav,
  .home-v2 .v2-shell {
    width: min(100% - 2rem, 880px);
  }

  .home-v2 .v2-hero-grid,
  .contact-v3 .contact-hero-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 660px) {
  .home-v2 .v2-nav,
  .home-v2 .v2-shell {
    width: min(100% - 1.25rem, 620px);
  }

  .home-v2 .v2-hero {
    min-height: auto;
  }

  .home-v2 .v2-hero-grid {
    min-height: auto;
    padding-block: 3rem;
  }

  .home-v2 .v2-hero h1 {
    font-size: clamp(2.9rem, 15vw, 4.3rem);
  }

  .home-v2 .v2-hero-media::before {
    display: none;
  }

  .home-v2 .v2-image-frame {
    border-radius: 22px 6px 22px 6px;
  }

  .home-v2 .v2-hero-facts,
  .home-v2 .v2-index-grid,
  .contact-v3 .contact-grid {
    grid-template-columns: 1fr;
  }

  .home-v2 .v2-hero-facts div,
  .home-v2 .v2-hero-facts div:first-child {
    padding: 0.9rem 0.8rem 0.9rem 3rem;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .home-v2 .v2-hero-facts div:first-child {
    border-top: 0;
  }

  .contact-v3 .contact-hero-grid {
    min-height: auto;
    gap: 2rem;
    padding-block: 3.2rem;
  }

  .contact-v3 .contact-card.wide {
    grid-column: auto;
  }
}

.home-v2 .portal-utility {
  color: rgba(255, 255, 255, 0.8);
  background: #0b132c;
}

.home-v2 .portal-utility .v2-shell {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.72rem;
}

.home-v2 .portal-utility span,
.home-v2 .portal-utility a {
  position: relative;
  padding-left: 1.25rem;
  color: inherit;
  text-decoration: none;
}

.home-v2 .portal-utility span::before,
.home-v2 .portal-utility a::before {
  content: "i";
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
  line-height: 13px;
  text-align: center;
  transform: translateY(-50%);
}

.home-v2 .portal-utility a {
  padding-left: 1.45rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.home-v2 .portal-utility a::before {
  content: "☎";
  left: 0.45rem;
  border: 0;
  font-size: 12px;
}

.home-v2 .v2-header {
  position: sticky;
  background: linear-gradient(100deg, #bd073a 0%, #78072f 55%, #321333 100%);
}

.home-v2 .v2-nav {
  min-height: 80px;
  gap: 1.35rem;
}

.home-v2 .v2-brand {
  min-width: 310px;
}

.home-v2 .v2-menu {
  flex: 1;
  justify-content: center;
  gap: clamp(0.8rem, 1.7vw, 1.7rem);
}

.home-v2 .v2-menu a {
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}

.home-v2 .header-guide {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 6px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.home-v2 .v2-hero {
  min-height: 520px;
  color: #141a31;
  background:
    linear-gradient(126deg, rgba(197, 7, 54, 0.035) 0 36%, transparent 36%),
    linear-gradient(54deg, rgba(115, 7, 47, 0.045) 0 29%, transparent 29%),
    #f8edef;
}

.home-v2 .v2-hero::before {
  display: none;
}

.home-v2 .v2-hero-grid {
  min-height: 520px;
  grid-template-columns: minmax(440px, 0.82fr) minmax(620px, 1.18fr);
  gap: clamp(2.5rem, 5vw, 6rem);
  padding-block: 2.7rem;
}

.home-v2 .v2-hero-copy {
  position: relative;
  z-index: 2;
  padding-left: 3.5rem;
}

.home-v2 .v2-kicker {
  color: #960a35;
}

.home-v2 .v2-hero h1 {
  max-width: 650px;
  margin-top: 0.85rem;
  color: #141a31;
  font-size: clamp(3.25rem, 5.2vw, 5.2rem);
  line-height: 0.97;
  letter-spacing: -0.055em;
}

.home-v2 .v2-hero-lead {
  max-width: 610px;
  margin-top: 1.4rem;
  color: #586073;
  font-size: 1rem;
  line-height: 1.72;
}

.home-v2 .v2-btn-light {
  color: #fff;
  background: linear-gradient(120deg, #c8083c, #9d0836);
  box-shadow: 0 12px 28px rgba(148, 6, 47, 0.22);
}

.home-v2 .v2-btn-outline {
  border-color: rgba(150, 10, 53, 0.35);
  color: #820b35;
  background: rgba(255, 255, 255, 0.68);
}

.home-v2 .v2-hero-media {
  min-width: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  margin: 0;
}

.home-v2 .v2-hero-media::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: -2.7rem;
  top: 0;
  width: 9rem;
  height: 8.5rem;
  border: 0;
  border-radius: 0;
  background: linear-gradient(135deg, #c6073c 0 45%, #8a0734 45% 70%, transparent 70%);
  pointer-events: none;
}

.home-v2 .v2-image-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 12px 35px rgba(27, 20, 34, 0.1);
}

.home-v2 .v2-image-frame::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 26%;
  height: 44%;
  background: linear-gradient(135deg, transparent 0 49%, #111a3d 50%);
  pointer-events: none;
}

.home-v2 .v2-image-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 660 / 312;
  object-fit: contain;
}

.home-v2 .v2-hero-facts {
  position: absolute;
  z-index: 3;
  left: -3.2rem;
  bottom: 3.6rem;
  width: 245px;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border-radius: 4px;
  color: #fff;
  background: linear-gradient(145deg, #8e0735, #5e092f);
  box-shadow: 0 18px 42px rgba(54, 4, 29, 0.28);
}

.home-v2 .v2-hero-facts div,
.home-v2 .v2-hero-facts div:first-child {
  min-height: auto;
  padding: 0.85rem 0.9rem 0.85rem 3.1rem;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.home-v2 .v2-hero-facts div:first-child {
  border-top: 0;
}

.home-v2 .v2-hero-facts div::before,
.home-v2 .v2-hero-facts div:first-child::before {
  left: 1rem;
  top: 1rem;
  width: 18px;
  height: 18px;
  border-color: rgba(255, 255, 255, 0.9);
}

.home-v2 .v2-hero-facts dt {
  color: #fff;
  font-size: 0.76rem;
}

.home-v2 .v2-hero-facts dd {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
}

.home-v2 .v2-hero-media figcaption {
  position: absolute;
  right: 5rem;
  bottom: 1rem;
  z-index: 2;
  margin: 0;
  color: #6d6571;
  font-size: 0.68rem;
}

.home-v2 .v2-index {
  padding: 0;
  color: #fff;
  background:
    radial-gradient(circle at 25% 0%, rgba(42, 72, 128, 0.34), transparent 25rem),
    linear-gradient(110deg, #0b142d, #111d3c);
  box-shadow: none;
}

.home-v2 .v2-index-grid {
  gap: 0;
}

.home-v2 .v2-index-grid a,
.home-v2 .v2-index-grid a:first-child,
.home-v2 .v2-index-grid a:nth-child(3) {
  min-height: 132px;
  padding: 1.55rem 1.4rem;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
}

.home-v2 .v2-index-grid a:first-child {
  border-left: 0;
}

.home-v2 .v2-index-grid span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(83, 118, 181, 0.28);
}

.home-v2 .v2-index-grid strong {
  align-self: end;
  color: #fff;
  font-size: 0.95rem;
}

.home-v2 .v2-index-grid small {
  color: rgba(255, 255, 255, 0.65);
}

.home-v2 .v2-section {
  padding: clamp(5rem, 7vw, 7.2rem) 0;
}

.home-v2 .v2-section-tint,
.home-v2 .v2-feature-section,
.home-v2 .v2-section:nth-of-type(even):not(.v2-dark):not(.v2-channel-section) {
  background:
    radial-gradient(circle at 92% 8%, rgba(142, 7, 53, 0.055), transparent 26rem),
    #f8eef1;
}

.home-v2 .v2-service,
.home-v2 .v2-depth-grid article,
.home-v2 .v2-product-list article,
.home-v2 .v2-practice-grid article,
.home-v2 .v2-split-headings article {
  border-top: 4px solid #b5093a;
}

.home-v2 .v2-dark,
.home-v2 .v2-channel-section {
  background:
    radial-gradient(circle at 80% 0%, rgba(199, 8, 59, 0.25), transparent 30rem),
    linear-gradient(120deg, #101630, #331435 58%, #69072f);
}

@media (max-width: 1180px) {
  .home-v2 .header-guide {
    display: none;
  }

  .home-v2 .v2-brand {
    min-width: auto;
  }

  .home-v2 .v2-hero-grid {
    grid-template-columns: minmax(380px, 0.85fr) minmax(500px, 1.15fr);
  }
}

@media (max-width: 980px) {
  .home-v2 .portal-utility .v2-shell {
    width: min(100% - 2rem, 760px);
  }

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

  .home-v2 .v2-hero-copy {
    padding-left: 0;
  }

  .home-v2 .v2-hero-media {
    min-height: 380px;
  }

  .home-v2 .v2-hero-facts {
    left: 1rem;
  }
}

@media (max-width: 660px) {
  .home-v2 .portal-utility .v2-shell {
    width: min(100% - 1.25rem, 620px);
    justify-content: space-between;
  }

  .home-v2 .v2-hero-copy {
    padding-left: 0;
  }

  .home-v2 .v2-hero h1 {
    font-size: clamp(2.85rem, 15vw, 4.2rem);
  }

  .home-v2 .v2-hero-media {
    min-height: auto;
    display: block;
  }

  .home-v2 .v2-hero-media::before {
    display: none;
  }

  .home-v2 .v2-hero-facts {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 0.75rem;
  }

  .home-v2 .v2-hero-media figcaption {
    position: static;
    margin-top: 0.7rem;
  }

  .home-v2 .v2-index-grid a,
  .home-v2 .v2-index-grid a:first-child,
  .home-v2 .v2-index-grid a:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
}

.home-v2 .v2-hero-grid {
  align-items: center;
}

.home-v2 .v2-hero-media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 0;
  padding: 0;
}

.home-v2 .v2-hero-media::before,
.home-v2 .v2-image-frame::after {
  display: none;
}

.home-v2 .v2-image-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(111, 7, 47, 0.14);
  border-radius: 12px 12px 0 0;
  background: #fff;
  box-shadow: 0 20px 48px rgba(43, 18, 37, 0.13);
}

.home-v2 .v2-image-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.home-v2 .v2-hero-facts {
  position: static;
  z-index: 1;
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 0 0 12px 12px;
  color: #fff;
  background: linear-gradient(105deg, #8d0734, #65072f 58%, #341332);
  box-shadow: 0 20px 48px rgba(43, 18, 37, 0.13);
}

.home-v2 .v2-hero-facts div,
.home-v2 .v2-hero-facts div:first-child {
  min-height: 92px;
  padding: 1rem 0.9rem 1rem 3.05rem;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.home-v2 .v2-hero-facts div:first-child {
  border-left: 0;
}

.home-v2 .v2-hero-facts div::before,
.home-v2 .v2-hero-facts div:first-child::before {
  left: 0.9rem;
  top: 1.15rem;
}

.home-v2 .v2-hero-media figcaption {
  position: static;
  margin: 0.65rem 0 0;
  color: #6d6571;
  text-align: center;
}

@media (max-width: 660px) {
  .home-v2 .v2-hero-facts {
    grid-template-columns: 1fr;
  }

  .home-v2 .v2-hero-facts div,
  .home-v2 .v2-hero-facts div:first-child {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
  }

  .home-v2 .v2-hero-facts div:first-child {
    border-top: 0;
  }
}

.inner-media {
  width: 100%;
  margin: 2rem 0 2.4rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(111, 7, 47, 0.12);
  border-radius: 18px;
  background: linear-gradient(135deg, #fff 0%, #f9eef2 100%);
  box-shadow: 0 18px 44px rgba(43, 18, 37, 0.08);
}

.inner-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
}

.inner-media-symbol {
  min-height: 310px;
  padding: 2rem;
  background: linear-gradient(135deg, #fff 0%, #f7e7ed 100%);
}

.inner-media-symbol img {
  width: min(100%, 280px);
  max-height: 280px;
  object-fit: contain;
}

@media (max-width: 660px) {
  .inner-media {
    margin-block: 1.4rem 2rem;
    border-radius: 14px;
  }

  .inner-media-symbol {
    min-height: 240px;
    padding: 1.4rem;
  }

  .inner-media-symbol img {
    width: min(100%, 210px);
    max-height: 210px;
  }
}
