:root {
  --vverh-navy: #092c52;
  --vverh-navy-2: #123c68;
  --vverh-gold: #c89b42;
  --vverh-sand: #f4ead7;
  --vverh-cream: #fbf8f2;
  --vverh-text: #1d2733;
  --vverh-muted: #637083;
  --vverh-border: #e8dfd1;
  --vverh-white: #fff;
}

.vverh-wrap {
  color: var(--vverh-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 20px 64px;
}

.vverh-wrap * { box-sizing: border-box; }
.vverh-wrap a { color: var(--vverh-navy); }

.vverh-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 28px;
  align-items: stretch;
  background: linear-gradient(135deg, var(--vverh-cream), #fff);
  border: 1px solid var(--vverh-border);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 22px 65px rgba(9, 44, 82, .09);
}

.vverh-logo {
  display: block;
  max-width: 520px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.vverh-mark { width: 128px; height: 128px; object-fit: contain; border-radius: 28px; }
.vverh-mark--small { width: 86px; height: 86px; border-radius: 22px; }

.vverh-eyebrow {
  color: var(--vverh-gold);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
  margin: 0 0 12px;
}

.vverh-hero h1,
.vverh-section h2,
.vverh-pagehero h1,
.vverh-cta h2 {
  color: var(--vverh-navy);
  line-height: 1.04;
  letter-spacing: -0.045em;
  margin: 0;
}

.vverh-hero h1 { font-size: clamp(2.35rem, 5vw, 5.2rem); max-width: 820px; }
.vverh-section h2,
.vverh-cta h2 { font-size: clamp(1.8rem, 3.2vw, 3.2rem); max-width: 920px; }
.vverh-pagehero h1 { font-size: clamp(2.1rem, 4vw, 4.4rem); max-width: 900px; }

.vverh-lead {
  color: var(--vverh-muted);
  font-size: clamp(1.06rem, 1.4vw, 1.32rem);
  line-height: 1.65;
  max-width: 780px;
  margin: 18px 0 0;
}

.vverh-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.vverh-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none !important;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.vverh-button:hover { transform: translateY(-1px); box-shadow: 0 12px 25px rgba(9,44,82,.12); }
.vverh-button--primary { background: var(--vverh-navy); color: #fff !important; }
.vverh-button--ghost { background: #fff; border-color: var(--vverh-border); color: var(--vverh-navy) !important; }

.vverh-hero__panel,
.vverh-formcard,
.vverh-card,
.vverh-pricecard,
.vverh-checklist {
  background: rgba(255,255,255,.86);
  border: 1px solid var(--vverh-border);
  border-radius: 24px;
  padding: 24px;
}

.vverh-hero__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
}

.vverh-hero__panel h2,
.vverh-card h3,
.vverh-pricecard h3,
.vverh-formcard legend {
  color: var(--vverh-navy);
  margin: 16px 0 10px;
}

.vverh-hero__panel p,
.vverh-card p,
.vverh-pricecard p,
.vverh-checklist,
.vverh-formcard { color: var(--vverh-muted); line-height: 1.65; }
.vverh-hero__panel ul,
.vverh-checklist ul { margin: 14px 0 0; padding-left: 20px; }
.vverh-hero__panel li,
.vverh-checklist li { margin-bottom: 8px; }

.vverh-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}

.vverh-strip span {
  background: var(--vverh-sand);
  color: var(--vverh-navy);
  border: 1px solid var(--vverh-border);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  font-size: .92rem;
}

.vverh-section { margin-top: 72px; }
.vverh-section__head { margin-bottom: 24px; }

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

.vverh-card {
  min-height: 220px;
  box-shadow: 0 14px 40px rgba(9,44,82,.06);
}
.vverh-card h3 { font-size: 1.25rem; }
.vverh-card a { font-weight: 800; text-decoration: none; color: var(--vverh-gold); }
.vverh-card--wide { min-height: 190px; }

.vverh-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  gap: 24px;
  align-items: center;
  background: var(--vverh-navy);
  color: #fff;
  border-radius: 30px;
  padding: 34px;
}
.vverh-split h2 { color: #fff; }
.vverh-split p { color: rgba(255,255,255,.78); line-height: 1.7; }
.vverh-checklist { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: rgba(255,255,255,.88); }
.vverh-checklist strong { color: #fff; }

.vverh-pricecard { min-height: 180px; }
.vverh-pricecard--accent { background: var(--vverh-sand); }

.vverh-cta {
  margin-top: 72px;
  border-radius: 30px;
  padding: 36px;
  background: linear-gradient(135deg, var(--vverh-sand), #fff);
  border: 1px solid var(--vverh-border);
  text-align: center;
}
.vverh-cta p { color: var(--vverh-muted); font-size: 1.1rem; }

.vverh-pagehero {
  padding: 38px;
  background: linear-gradient(135deg, var(--vverh-cream), #fff);
  border: 1px solid var(--vverh-border);
  border-radius: 30px;
  box-shadow: 0 22px 65px rgba(9, 44, 82, .08);
}

.vverh-notice {
  background: #eef8f1;
  border: 1px solid #cce9d3;
  color: #205b2d;
  border-radius: 18px;
  padding: 16px 18px;
  margin: 22px 0;
  font-weight: 800;
}

.vverh-formcard { margin-top: 26px; }
.vverh-form label { display: block; color: var(--vverh-navy); font-weight: 800; margin-bottom: 14px; }
.vverh-form input[type="text"],
.vverh-form input[type="email"],
.vverh-form input[type="tel"],
.vverh-form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--vverh-border);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--vverh-text);
  background: #fff;
}
.vverh-form textarea { resize: vertical; }
.vverh-formgrid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px 18px; }
.vverh-form fieldset { border: 1px solid var(--vverh-border); border-radius: 18px; padding: 18px; margin: 18px 0; }
.vverh-form legend { padding: 0 8px; font-weight: 900; }
.vverh-checkgrid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px 14px; }
.vverh-checkgrid label { color: var(--vverh-text); font-weight: 650; margin: 0; }

@media (max-width: 900px) {
  .vverh-hero,
  .vverh-split,
  .vverh-grid--3,
  .vverh-grid--2,
  .vverh-formgrid,
  .vverh-checkgrid { grid-template-columns: 1fr; }
  .vverh-hero { padding: 24px; }
  .vverh-pagehero { padding: 26px; }
  .vverh-logo { max-width: 100%; }
}
