/*
===============================================================================
VENUSLAB33 — LUXURY VISUAL SYSTEM
Palette: Warm Ivory, Deep Emerald, Celestial Gold
===============================================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;500;600;700&display=swap');

@font-face {
  font-family: 'Google Sans';
  src:
    local('Google Sans'),
    local('GoogleSans-Regular'),
    local('Product Sans'),
    local('ProductSans-Regular'),
    url('../fonts/google-sans/GoogleSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Google Sans';
  src:
    local('Google Sans Medium'),
    local('GoogleSans-Medium'),
    local('Product Sans Medium'),
    local('ProductSans-Medium'),
    url('../fonts/google-sans/GoogleSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Google Sans';
  src:
    local('Google Sans Semibold'),
    local('GoogleSans-SemiBold'),
    local('Product Sans Bold'),
    local('ProductSans-Bold'),
    url('../fonts/google-sans/GoogleSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-page:        #F8F3EC;
  --bg-card:        #FFFFFF;
  --bg-card-hover:  #FCFAF7;
  --bg-section:     #E8DCCB;
  --bg-soft:        #FCFAF7;
  --bg-highlight:   rgba(200, 162, 93, 0.08);

  --border-primary: rgba(200, 162, 93, 0.28);
  --border-subtle:  rgba(200, 162, 93, 0.15);
  --border-strong:  rgba(30, 46, 42, 0.12);

  --text-headline:  #1E2E2A;
  --text-sub:       #23433B;
  --text-body:      #1C1A18;
  --text-label:     #756B60;
  --text-muted:     #756B60;

  --copper:         #C8A25D;
  --copper-hover:   #D8BA7C;
  --gold:           #C8A25D;
  --accent-glow:    rgba(200, 162, 93, 0.18);

  --nav-bg:         rgba(252, 250, 247, 0.9);
  --nav-border:     rgba(200, 162, 93, 0.18);
  --footer-bg:      #18342D;
  --footer-border:  rgba(200, 162, 93, 0.35);
  --footer-text:    #F8F3EC;
  --footer-label:   #C8A25D;
  --footer-muted:   rgba(248, 243, 236, 0.72);

  /* Compatibility aliases for older page-specific inline styles */
  --deep-grey:      #756B60;
  --deep-sapphire:  #1E2E2A;
  --soft-gold:      #C8A25D;
  --soft-pearl:     #FCFAF7;
  --pure-white:     #FFFFFF;
  --font-title:     'Google Sans', 'Product Sans', sans-serif;
  --font-body:      'Josefin Sans', sans-serif;
  --font-heading:   var(--font-title);
  
  /* Radii */
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 45px rgba(30, 46, 42, 0.06);
  --shadow-card: 0 12px 30px rgba(30, 46, 42, 0.05);
  --shadow-hover: 0 22px 48px rgba(30, 46, 42, 0.08);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-page);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-body);
  background-color: var(--bg-page);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Soft editorial background wash */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(232, 220, 203, 0.55) 0%, transparent 42%),
    radial-gradient(circle at bottom right, rgba(200, 162, 93, 0.08) 0%, transparent 28%);
  z-index: -1;
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--text-headline);
  line-height: 1.18;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(42px, 5.6vw, 72px); line-height: 1.05; letter-spacing: 0.04em; }
h2 { font-size: clamp(32px, 4vw, 52px); letter-spacing: 0.04em; }
h3 { font-size: clamp(24px, 3vw, 34px); font-weight: 600; color: var(--text-headline); letter-spacing: 0.03em; }

p { margin-bottom: 1.5rem; }

a {
  color: var(--text-headline);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--text-sub);
  text-shadow: none;
}

/* ===========================================================================
ANIMATIONS (2026 Trend: Smooth Micro-animations)
============================================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-play-state: paused;
}

/* Using CSS View Timeline for modern scroll animations if supported */
@supports (animation-timeline: view()) {
  .animate-on-scroll {
    animation-timeline: view();
    animation-range: entry 10% cover 30%;
    animation-play-state: running;
  }
}

/* Fallback for browsers without view() support is handled by JS IntersectionObserver */
.is-visible {
  opacity: 1;
  animation-play-state: running;
}

/* ===========================================================================
NAVIGATION (Glassmorphism Sticky & Mobile Overlay)
============================================================================== */
.header {
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--nav-border);
  padding: 24px 40px;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 101; /* Stay above mobile menu */
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-headline);
}

.logo:hover {
  color: var(--text-sub);
  text-shadow: none;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-link {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-label);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--copper);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--text-headline);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--text-headline);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-headline);
  z-index: 101; /* Stay above mobile menu */
  position: relative;
}

/* Mobile Navigation - Full Screen Overlay */
@media (max-width: 767px) {
  .header {
    padding: 20px 24px;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden by default */
    width: 100vw;
    height: 100vh;
    background: var(--bg-page);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 0;
    border: none;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 99;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-link {
    font-size: 20px;
    padding: 10px;
    border: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
}

/* ===========================================================================
SECTIONS
============================================================================== */
.section {
  padding: 136px 48px;
}

.section-alt {
  background: var(--bg-section);
}

/* ===========================================================================
HERO (Modernized)
============================================================================== */
.hero {
  padding: 204px 48px 144px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72vw;
  height: 72vw;
  background: radial-gradient(circle, rgba(200, 162, 93, 0.12) 0%, transparent 68%);
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
}

.hero::before {
  content: '✦';
  position: absolute;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  color: var(--copper);
  letter-spacing: 0.2em;
}

.hero-eyebrow {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-label);
  margin-bottom: 36px;
  display: inline-block;
  padding: 11px 18px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

.hero-title {
  max-width: 900px;
  margin: 0 auto 28px;
  color: var(--text-headline);
  text-shadow: none;
}

.hero-subtitle {
  max-width: 700px;
  margin: 0 auto 56px;
  font-size: 18px;
  color: var(--text-muted);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================================================================
BUTTONS (Glow & Hover Effects)
============================================================================== */
.btn {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 17px 34px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  background: var(--text-headline);
  color: #FFFFFF;
  border: 1px solid var(--text-headline);
}

.btn-primary:hover {
  background: var(--text-sub);
  color: #FFFFFF;
  border-color: var(--text-sub);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.btn-copper {
  background: var(--text-headline);
  color: #FFFFFF;
  border: 1px solid var(--text-headline);
  box-shadow: var(--shadow-soft);
}

.btn-copper:hover {
  background: var(--text-sub);
  border-color: var(--text-sub);
  color: #FFFFFF;
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.btn-copper-outline {
  background: transparent;
  backdrop-filter: none;
  color: var(--text-headline);
  border: 1px solid var(--copper);
  box-shadow: none;
}

.btn-copper-outline:hover {
  background: var(--copper);
  color: #FFFFFF;
  border-color: var(--copper);
  transform: translateY(-2px);
}

/* ===========================================================================
LABELS & EYEBROWS
============================================================================== */
.label {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-label);
}

.label-copper {
  color: var(--copper);
}

/* ===========================================================================
BENTO BOX / GRIDS (2026 Trend)
============================================================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.bento-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 48px;
  backdrop-filter: none;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-card);
}

.bento-item:hover {
  transform: translateY(-3px);
  border-color: var(--copper);
  box-shadow: var(--shadow-hover);
}

/* Grid Spans */
.span-4 { grid-column: span 4; }
.span-6 { grid-column: span 6; }
.span-8 { grid-column: span 8; }
.span-12 { grid-column: span 12; }

@media (max-width: 991px) {
  .span-4 { grid-column: span 6; }
}
@media (max-width: 767px) {
  .span-4, .span-6, .span-8 { grid-column: span 12; }
  .bento-item { padding: 30px 24px; }
}

/* ===========================================================================
TABLES (Glassmorphism Modernized)
============================================================================== */
.table-wrapper {
  overflow-x: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1px;
  box-shadow: var(--shadow-card);
}

table {
  width: 100%;
  border-collapse: collapse;
}

.table-headers {
  display: grid;
  grid-template-columns: 35% 65%;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-soft);
}

.table-headers span {
  font-family: var(--font-title);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-label);
}

.table-row {
  display: grid;
  grid-template-columns: 35% 65%;
  padding: 24px;
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.2s ease;
}

.table-row:hover {
  background: rgba(0,0,0,0.01);
}

.table-row:last-child {
  border-bottom: none;
}

/* Pricing Table specifically */
.pricing-table .table-headers,
.pricing-table .table-row {
  grid-template-columns: 2fr 3fr 1fr 1.5fr; /* simplified for cleaner look */
  gap: 16px;
}

.pricing-table th, .pricing-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}
.pricing-table th {
  font-family: var(--font-title);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-label);
  background: var(--bg-soft);
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table tr:hover td {
  background: rgba(0,0,0,0.01);
}

.pricing-table .part-col {
  font-family: var(--font-title);
  font-size: 12px;
  text-transform: uppercase;
  color: var(--copper);
}

.pricing-table .price-col {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 600;
  color: var(--copper);
}

@media (max-width: 767px) {
  .pricing-table .table-headers,
  .pricing-table .table-row {
    grid-template-columns: 1fr;
  }
}

/* ===========================================================================
ACCORDION (FAQ)
============================================================================== */
.faq-category {
  margin-bottom: 48px;
}

.faq-category-title {
  font-family: var(--font-title);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--copper);
  margin-bottom: 24px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 12px;
}

details {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}

details[open] {
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

summary {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-headline);
  padding: 26px 28px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
}

summary::-webkit-details-marker {
  display: none;
}

summary:hover {
  background: var(--bg-soft);
}

summary::after {
  content: '+';
  font-family: var(--font-title);
  font-size: 24px;
  color: var(--copper);
  transition: transform 0.3s ease;
}

details[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.details-content {
  padding: 0 24px 24px;
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.6;
  background: linear-gradient(180deg, rgba(248, 243, 236, 0.54), rgba(255, 255, 255, 0.92));
}

.details-content ul {
  margin-left: 24px;
  margin-top: 12px;
  margin-bottom: 12px;
}

.details-content li {
  margin-bottom: 8px;
}
/* ===========================================================================
SERVICE PARTS (Premium Editorial Layout)
============================================================================== */
.services-list-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 40px;
}

.service-part-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
  backdrop-filter: none;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.service-part-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 162, 93, 0.7), transparent);
  pointer-events: none;
}

.service-part-card:hover {
  transform: translateY(-3px);
  border-color: var(--copper);
  box-shadow: var(--shadow-hover);
}

.service-left {
  position: sticky;
  top: 120px;
}

.service-right {
  display: flex;
  flex-direction: column;
}

.part-header {
  margin-bottom: 24px;
}

.part-number {
  font-family: var(--font-title);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  display: block;
  margin-bottom: 16px;
  font-weight: 500;
}

.service-part-card h3 {
  font-size: 36px;
  margin-bottom: 16px;
}

.service-part-card .part-quote {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 0;
}

.value-adds h4 {
  font-family: var(--font-title);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--copper);
  margin-bottom: 24px;
}

.coverage-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.coverage-item {
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: none;
}

.coverage-item:hover {
  transform: none;
  box-shadow: none;
}

.coverage-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(200, 162, 93, 0.12);
  border: 1px solid rgba(200, 162, 93, 0.28);
  border-radius: 50%;
  font-family: var(--font-title);
  font-size: 12px;
  color: var(--text-headline);
  flex-shrink: 0;
  margin-bottom: 0;
  margin-top: 4px;
}

.hidden-mobile {
  display: block;
}

.visible-mobile {
  display: none;
}

@media (max-width: 991px) {
  .service-part-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px;
  }
  
  .service-left {
    position: static;
  }
  
  .hidden-mobile {
    display: none;
  }
  
  .visible-mobile {
    display: block;
  }
}

@media (max-width: 767px) {
  .service-part-card {
    padding: 30px 24px;
  }
  .services-list-grid {
    gap: 40px;
  }
}

/* ===========================================================================
SERVICES & FAQ PAGES
============================================================================== */
.page-hero {
  padding: 188px 48px 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(200, 162, 93, 0.12);
  border-radius: 32px;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 18% auto auto 50%;
  transform: translateX(-50%);
  width: min(920px, 86vw);
  height: min(920px, 86vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 162, 93, 0.1) 0%, transparent 66%);
  z-index: -1;
  pointer-events: none;
}

.page-hero .container,
.page-hero .container-narrow,
.page-hero .container-narrower {
  position: relative;
  z-index: 1;
  padding: 44px 40px;
  border-radius: 28px;
  border: 1px solid rgba(200, 162, 93, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.62));
  box-shadow: 0 28px 70px rgba(30, 46, 42, 0.08);
  backdrop-filter: blur(10px);
}

.page-hero-kicker {
  display: inline-block;
  margin-bottom: 28px;
  padding: 10px 18px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.75);
  font-family: var(--font-title);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-label);
}

.page-lead {
  max-width: 760px;
  margin: 0 auto 20px;
  font-size: 18px;
  color: var(--text-muted);
}

.page-lead:last-of-type {
  margin-bottom: 0;
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 36px;
}

.page-meta-chip {
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
  font-family: var(--font-title);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-headline);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-meta-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 162, 93, 0.34);
  box-shadow: var(--shadow-hover);
}

.editorial-intro {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.editorial-intro .label,
.editorial-intro .page-hero-kicker {
  margin-bottom: 18px;
}

.editorial-intro p:last-child {
  margin-bottom: 0;
}

.service-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-overview-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.service-overview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 162, 93, 0.34);
  box-shadow: var(--shadow-hover);
}

.service-overview-card p:last-child {
  margin-bottom: 0;
}

.service-card-label {
  font-family: var(--font-title);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 14px;
  display: block;
}

.service-overview-card h3 {
  font-family: var(--font-title);
  font-size: 30px;
  margin-bottom: 12px;
}

.service-overview-card .service-card-meta {
  font-family: var(--font-title);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-label);
  margin-bottom: 16px;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.process-step {
  padding: 28px 24px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-card);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 162, 93, 0.34);
  box-shadow: var(--shadow-hover);
}

.process-step-number {
  font-family: var(--font-title);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  display: block;
  margin-bottom: 12px;
}

.process-step h3 {
  font-family: var(--font-title);
  font-size: 28px;
  margin-bottom: 12px;
}

.process-step p:last-child {
  margin-bottom: 0;
}

.service-meta-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-meta-list li {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
}

.service-meta-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-meta-list strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-title);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
}

.service-meta-list span {
  color: var(--text-body);
  font-size: 15px;
}

.service-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.service-spec-card {
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--bg-soft);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-spec-card:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 162, 93, 0.28);
  box-shadow: var(--shadow-card);
}

.service-spec-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-title);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
}

.service-spec-card p:last-child {
  margin-bottom: 0;
}

.service-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.comparison-note {
  max-width: 860px;
  margin: 32px auto 0;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  position: relative;
}

.comparison-note::before {
  content: '';
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 162, 93, 0.65), transparent);
}

.comparison-note a {
  color: var(--text-headline);
  text-decoration: underline;
  text-decoration-color: rgba(200, 162, 93, 0.58);
  text-underline-offset: 4px;
}

.comparison-note p:last-child {
  margin-bottom: 0;
}

.faq-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 40px;
}

.faq-anchor-nav a {
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
  font-family: var(--font-title);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-headline);
}

.faq-anchor-nav a:hover {
  border-color: var(--copper);
  color: var(--text-headline);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}


/* ===========================================================================
CONTAINER
============================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
}

.container-narrower {
  max-width: 700px;
  margin: 0 auto;
}

/* ===========================================================================
LEAD GEN FOOTER (Redesigned)
============================================================================== */
.footer {
  background:
    radial-gradient(circle at top left, rgba(200, 162, 93, 0.14), transparent 32%),
    linear-gradient(180deg, #1d3d35 0%, var(--footer-bg) 24%, #132b25 100%);
  border-top: none;
  padding: 112px 40px 40px;
  position: relative;
  color: var(--footer-text);
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
}

.footer::after {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(200, 162, 93, 0.12);
  border-radius: 24px;
  pointer-events: none;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(160px, 1fr) minmax(220px, 1.35fr) minmax(280px, 1.8fr);
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.footer-col h4 {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 32px;
  text-transform: uppercase;
}

.footer-brand {
  padding-right: 40px;
}

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 24px;
  color: #FFFFFF;
  font-size: clamp(28px, 2.3vw, 34px);
  letter-spacing: 0.14em;
  line-height: 1.05;
}

.footer-brand .desc {
  font-size: 16px;
  color: var(--footer-muted);
  line-height: 1.85;
  max-width: 360px;
  opacity: 1;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-nav a {
  display: inline-block;
  font-size: 15px;
  color: var(--footer-text);
  transition: color 0.2s ease, transform 0.2s ease;
  width: fit-content;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}

.footer-nav a:hover {
  color: var(--copper);
  transform: translateX(4px);
}

.footer-contact .contact-item {
  margin-bottom: 28px;
}

.contact-label {
  font-family: var(--font-title);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.contact-value {
  font-size: 15px;
  color: #FFFFFF;
  transition: color 0.2s ease;
  font-weight: 400;
  font-family: var(--font-body);
  line-height: 1.7;
  word-break: break-word;
}

.contact-value:hover {
  color: var(--copper);
}

/* Footer CTA Box - Integrated & Premium */
.footer-cta {
  display: flex;
  justify-content: flex-end;
}

.footer-cta-box {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(200, 162, 93, 0.28);
  border-radius: var(--radius-lg);
  padding: 42px;
  text-align: left;
  max-width: 360px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.14);
  transition: transform 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(6px);
}

.footer-cta-box:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 186, 124, 0.4);
}

.footer-cta-box h3 {
  font-family: var(--font-title);
  color: #FFFFFF;
  font-size: 26px;
  margin-bottom: 14px;
  line-height: 1.25;
  letter-spacing: 0.03em;
}

.footer-cta-box p {
  color: var(--footer-muted);
  font-size: 15px;
  margin-bottom: 28px;
  opacity: 1;
  line-height: 1.75;
}

.footer-cta-box .btn {
  width: 100%;
  padding: 18px 32px;
  font-size: 13px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 100px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(200, 162, 93, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-family: var(--font-title);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--footer-label);
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-legal a:hover {
  color: #FFFFFF;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--footer-muted);
  opacity: 1;
  margin: 0;
  line-height: 1.7;
}

.footer-bottom p:last-child {
  max-width: 620px;
  text-align: right;
}

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: minmax(0, 1.8fr) minmax(160px, 1fr) minmax(220px, 1.2fr);
    gap: 40px;
  }
  .footer-cta {
    grid-column: span 3;
    justify-content: flex-start;
    margin-top: 20px;
  }
  .footer-cta-box {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-cta-box .btn {
    width: auto;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 72px 24px 32px;
  }
  .vv-briefing-intro {
    margin-bottom: 32px;
  }
  .vv-briefing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .vv-briefing-card {
    padding: 28px 24px;
  }
  .footer::after {
    inset: 14px;
    border-radius: 18px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-brand {
    padding-right: 0;
  }
  .footer-brand .logo {
    font-size: 28px;
    white-space: normal;
  }
  .footer-cta {
    grid-column: span 1;
  }
  .footer-cta-box {
    padding: 32px 24px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    margin-top: 60px;
  }
  .footer-legal {
    gap: 14px;
  }
  .footer-bottom p:last-child {
    text-align: center;
    max-width: none;
  }
}

/* Misc Utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mt-8 { margin-top: 64px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
.mb-8 { margin-bottom: 64px; }

/* ===========================================================================
   UTILITY AND COMPONENT CLASSES (Refactored from inline styles)
============================================================================== */

/* Typography Utilities */
.text-body-lg { font-family: var(--font-body); font-size: 18px; color: var(--text-body); line-height: 1.8; }
.text-body-md { font-family: var(--font-body); font-size: 16px; color: var(--text-body); line-height: 1.8; }
.text-body-sm { font-family: var(--font-body); font-size: 15px; color: var(--text-body); line-height: 1.75; }
.text-body-xs { font-family: var(--font-body); font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.text-italic-quote {
  font-family: var(--font-body);
  font-size: 28px;
  font-style: italic;
  color: var(--text-headline);
  margin-bottom: 24px;
}

.text-playfair-md {
  font-family: var(--font-title);
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  color: var(--text-headline);
  margin-bottom: 16px;
}

.text-playfair-lg {
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 600;
  color: var(--text-headline);
  margin-bottom: 24px;
}

.text-playfair-xl {
  font-family: var(--font-title);
  font-size: 34px;
  font-style: normal;
  font-weight: 600;
  color: var(--text-headline);
  margin-bottom: 16px;
}

.text-playfair-italic-lg {
  font-family: var(--font-body);
  font-size: 28px;
  font-style: italic;
  color: var(--text-muted);
}

.text-mono-label {
  font-family: var(--font-title);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-label);
  margin-bottom: 16px;
}

.text-inter-label {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* Layout & Spacing Utilities */
.max-w-700 { max-width: 700px; margin-left: auto; margin-right: auto; margin-bottom: 48px; }
.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; }
.mt-64 { margin-top: 64px; }
.mb-32 { margin-bottom: 32px; }
.py-64 { padding-top: 64px; padding-bottom: 64px; }
.text-left { text-align: left; }
.flex-center-gap { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; }

/* Components */
.bento-highlight-top { border-top: 3px solid var(--copper); }
.bento-padding-lg { padding: 48px; }

.contact-list {
  margin-left: 24px;
  padding-left: 0;
  color: var(--text-body);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
.contact-list li { font-size: 16px; line-height: 1.6; }

.btn-full-center { width: 100%; justify-content: center; }
.cta-link-left { text-align: left; margin-top: 24px; }

.trust-badge {
  padding: 14px 24px;
  border: 1px solid var(--border-subtle);
  font-size: 13px;
  color: var(--text-body);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.12em;
  font-family: var(--font-title);
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.trust-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 162, 93, 0.32);
  box-shadow: var(--shadow-hover);
}
.trust-badge svg { color: var(--copper); }

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-headline);
  position: relative;
  width: fit-content;
  padding-bottom: 8px;
}

.cta-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 162, 93, 0.8), rgba(200, 162, 93, 0.16));
  transform-origin: left;
  transition: transform 0.25s ease;
}

.cta-link:hover {
  color: var(--text-sub);
}

.cta-link:hover::after {
  transform: scaleX(1.08);
}

.vv-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 40px 120px;
}

.vv-hero-title {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.vv-hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.vv-hero-body p {
  margin-bottom: 18px;
}

.vv-hero--plain {
  background: none;
}

.btn-minimal {
  background: transparent;
  color: var(--text-headline);
  border: 1px solid var(--copper);
  box-shadow: none;
}

.btn-minimal:hover {
  background: var(--copper);
  color: #FFFFFF;
  border-color: var(--copper);
  transform: none;
  text-shadow: none;
}

.vv-max-600 {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.vv-max-700 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.vv-section--light {
  background: #FFFFFF;
}

.vv-section--contrast {
  background: var(--bg-section);
}

.vv-section--dark {
  background: var(--footer-bg);
  color: var(--bg-page);
}

.vv-section--dark h1,
.vv-section--dark h2,
.vv-section--dark h3,
.vv-section--dark h4,
.vv-section--dark h5,
.vv-section--dark h6 {
  color: var(--bg-page);
}

.vv-section--dark p,
.vv-section--dark li {
  color: var(--bg-page);
}

.vv-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.vv-briefing-intro {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.vv-briefing-intro p {
  margin-bottom: 0;
}

.vv-briefing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.vv-briefing-card {
  padding: 36px 34px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(200, 162, 93, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(6px);
}

.vv-briefing-card .vv-h3 {
  display: inline-block;
}

.vv-briefing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.vv-briefing-list li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.75;
}

.vv-briefing-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--copper), var(--copper-hover));
  box-shadow: 0 0 0 4px rgba(200, 162, 93, 0.14);
}

.vv-h3 {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.3;
}

.vv-plain-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 16px;
  line-height: 1.7;
}

.vv-translator p:last-child {
  margin-bottom: 0;
}

.vv-after-submit {
  margin-top: 18px;
  text-align: center;
}

.vv-after-submit p {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.vv-min-footer {
  padding: 56px 24px;
  background: var(--bg-soft);
  color: var(--text-body);
  border-top: 1px solid var(--border-subtle);
}

.vv-min-footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
  text-align: center;
  font-family: var(--font-title);
  font-size: 13px;
  letter-spacing: 0.14em;
}

.vv-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.vv-point {
  border: 1px solid var(--border-subtle);
  padding: 40px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.vv-point p {
  margin-bottom: 0;
}

.vv-feature {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, #FFFFFF 0%, #FCFAF7 100%);
  padding: 56px;
  border-radius: var(--radius-md);
  box-shadow: 0 28px 60px rgba(30, 46, 42, 0.08);
  position: relative;
  overflow: hidden;
}

.vv-feature::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 162, 93, 0.72), transparent);
  pointer-events: none;
}

.vv-feature-header {
  text-align: center;
  margin-bottom: 28px;
}

.vv-price {
  font-family: var(--font-title);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 10px;
}

.vv-feature-title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 34px;
  line-height: 1.15;
  color: var(--text-headline);
}

.vv-feature-lead {
  max-width: 620px;
  margin: 18px auto 0;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
}

.vv-form-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.vv-form-meta-chip {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(200, 162, 93, 0.22);
  background: rgba(200, 162, 93, 0.08);
  font-family: var(--font-title);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-headline);
}

.vv-form-shell {
  border: 1px solid rgba(200, 162, 93, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  padding: 32px;
  box-shadow: 0 16px 34px rgba(30, 46, 42, 0.05);
  backdrop-filter: blur(8px);
}

.vv-feature-body {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.vv-commitment {
  font-size: 14px;
  line-height: 1.6;
  color: var(--copper);
  border-top: 1px solid var(--border-subtle);
  padding-top: 18px;
  margin-top: 28px;
}

.vv-cta {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.vv-offerings {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.vv-card {
  border: 1px solid var(--border-subtle);
  background: #FFFFFF;
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.vv-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 162, 93, 0.3);
  box-shadow: var(--shadow-hover);
}

.vv-card-title {
  font-family: var(--font-title);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-headline);
  margin-bottom: 14px;
}

.vv-card p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
  color: var(--text-body);
}

.vv-note p {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.vv-form {
  display: grid;
  gap: 18px;
}

.vv-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.vv-form-row label {
  display: block;
  font-family: var(--font-title);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-label);
  margin-bottom: 8px;
}

.vv-input {
  width: 100%;
  padding: 15px 18px;
  font-size: 16px;
  border: 1px solid #E8DCCB;
  border-radius: 14px;
  background: #FFFFFF;
  color: var(--text-body);
  font-family: var(--font-body);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vv-input:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 4px rgba(200, 162, 93, 0.12);
}

.vv-textarea {
  min-height: 160px;
  resize: vertical;
}

.vv-form-note {
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(232, 220, 203, 0.4);
  border: 1px solid rgba(200, 162, 93, 0.16);
}

.vv-form-note p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-label);
}

.vv-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 20px;
}

.vv-contact-links .btn {
  min-width: 210px;
}

@media (max-width: 991px) {
  .service-overview-grid,
  .process-strip,
  .service-spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vv-offerings {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
  }

  .vv-card {
    min-width: 320px;
    scroll-snap-align: start;
  }

  .vv-form-grid {
    grid-template-columns: 1fr;
  }


  .vv-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .page-hero {
    padding: 140px 24px 88px;
  }

  .page-hero::before {
    inset: 12px;
    border-radius: 22px;
  }

  .page-hero .container,
  .page-hero .container-narrow,
  .page-hero .container-narrower {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .page-meta {
    gap: 10px;
  }

  .service-overview-grid,
  .process-strip,
  .service-spec-grid {
    grid-template-columns: 1fr;
  }

  .service-cta-row {
    flex-direction: column;
  }

  .service-cta-row .btn {
    width: 100%;
    justify-content: center;
  }

  .vv-hero {
    padding: 120px 24px 96px;
  }

  .vv-point {
    padding: 30px 24px;
  }

  .vv-points {
    grid-template-columns: 1fr;
  }

  .vv-feature {
    padding: 34px 24px;
  }
  .vv-form-shell {
    padding: 24px 18px;
  }
}
