/*
Theme Name: Werterhaltwerk Theme
Theme URI: https://werterhaltwerk.de
Author: OpenAI / Projektentwurf
Description: Premium-WordPress-Theme für Werterhaltwerk.
Version: 3.2
Text Domain: werterhaltwerk
*/

:root {
  --wk-blue: #0f2747;
  --wk-blue-2: #193b67;
  --wk-gold: #c8a96b;
  --wk-gold-soft: #e7d6b2;
  --wk-ice: #9dd2eb;
  --wk-white: #ffffff;
  --wk-bg: #f4f7fb;
  --wk-panel: #eef4f9;
  --wk-text: #1f2937;
  --wk-muted: #5b6472;
  --wk-border: rgba(15,39,71,0.10);
  --wk-max: 1260px;
  --wk-radius: 24px;
  --wk-radius-lg: 34px;
  --wk-shadow: 0 28px 70px rgba(9, 24, 45, 0.10);
  --wk-shadow-soft: 0 18px 48px rgba(15,39,71,0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--wk-text);
  background: linear-gradient(180deg, #f8fbff 0%, #f3f6fb 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: var(--wk-blue);
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease, transform .2s ease;
}

a:hover {
  color: var(--wk-gold);
}

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

ul {
  padding-left: 20px;
}

.container {
  width: min(100% - 36px, var(--wk-max));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(10, 25, 46, 0.82);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(7, 19, 36, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
}

.site-branding {
  display: flex;
  align-items: center;
  min-width: 0;
}

.site-brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  overflow: visible;
  max-width: 100%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.main-nav li {
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #fff;
  font-weight: 600;
  font-size: .93rem;
  line-height: 1.35;
}

.main-nav a:hover {
  color: var(--wk-gold-soft);
}

.main-nav .header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  white-space: nowrap;
  font-size: .95rem;
}

.main-nav .mobile-nav-cta {
  display: none;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 12px;
  box-shadow: none;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Logos */

.wk-logo-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
  line-height: 0;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.22);
}

.wk-logo-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.logo-context-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

.logo-context-header .wk-logo-image,
.logo-context-header img {
  max-height: 56px;
  max-width: 340px;
  width: auto;
  height: auto;
}

.logo-context-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.14);
}

.logo-context-hero .wk-logo-image,
.logo-context-hero img {
  max-height: 38px;
  width: auto;
  height: auto;
}

.logo-context-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.logo-context-footer .wk-logo-image,
.logo-context-footer img {
  max-height: 42px;
  width: auto;
  height: auto;
}

.logo-context-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.logo-context-badge .wk-logo-image,
.logo-context-badge img {
  display: block;
  max-height: 42px;
  width: auto;
  height: auto;
}

.logo-context-signet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.10);
}

.logo-context-signet .wk-logo-image,
.logo-context-signet img {
  display: block;
  max-height: 28px;
  width: auto;
  height: auto;
}

.logo-context-favicon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  border: none;
}

.logo-context-favicon .wk-logo-image,
.logo-context-favicon img {
  display: block;
  max-height: 32px;
  width: auto;
  height: auto;
}

/* Buttons */

.btn,
.wp-block-button__link,
input[type="submit"],
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  border: none;
  background: var(--wk-gold);
  color: var(--wk-blue);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(200,169,107,0.22);
}

.btn:hover,
.wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.32);
  box-shadow: none;
}

.btn-ghost {
  background: rgba(15,39,71,0.06);
  color: var(--wk-blue);
  border: 1px solid rgba(15,39,71,0.12);
  box-shadow: none;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 126px 0 90px;
  background:
    linear-gradient(110deg, rgba(7,22,42,0.88), rgba(13,33,58,0.64)),
    url('./assets/img/hero-underbody.jpg') center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(157,210,235,0.14), transparent 34%),
    radial-gradient(circle at 84% 22%, rgba(200,169,107,0.16), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent 35%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 34px;
  align-items: stretch;
}

.hero-copy {
  padding: 22px 0;
}

.hero-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.hero-signet .wk-logo-shell {
  background: rgba(255,255,255,0.98);
  border-color: rgba(255,255,255,0.18);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.84);
  margin-bottom: 0;
}

.hero-kicker::before {
  content: "";
  width: 44px;
  height: 1px;
  background: rgba(255,255,255,0.45);
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 5vw, 4.85rem);
  line-height: .96;
  letter-spacing: -0.04em;
  max-width: 760px;
}

.hero-lead {
  max-width: 700px;
  font-size: 1.12rem;
  color: rgba(255,255,255,0.9);
  margin: 0 0 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  max-width: 760px;
}

.hero-meta-reduced {
  max-width: 620px;
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.92);
  font-size: .95rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.hero-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wk-gold);
  box-shadow: 0 0 0 6px rgba(200,169,107,0.12);
}

.hero-showcase {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  gap: 16px;
}

.hero-card {
  position: relative;
  min-height: 470px;
  border-radius: var(--wk-radius-lg);
  overflow: hidden;
  box-shadow: var(--wk-shadow);
  border: 1px solid rgba(255,255,255,0.16);
  background:
    linear-gradient(180deg, rgba(15,39,71,0.08), rgba(15,39,71,0.58)),
    url('./assets/img/hero-detail-1.jpg') center/cover no-repeat;
}

.hero-card-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 26px;
  background: linear-gradient(180deg, transparent, rgba(8,24,44,0.78));
}

.hero-card-refined .hero-card-content {
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(8,24,44,0.74));
}

.hero-card .eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.94);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin: 0 0 10px;
  font-size: 1.56rem;
  line-height: 1.1;
  color: #fff;
}

.hero-card-refined h2 {
  font-size: 1.42rem;
  line-height: 1.08;
  max-width: 520px;
}

.hero-card p {
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: .97rem;
}

.hero-card-refined p {
  max-width: 520px;
  font-size: .94rem;
}

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

.hero-mini {
  position: relative;
  min-height: 172px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: var(--wk-shadow-soft);
  background-size: cover;
  background-position: center;
}

.hero-mini::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,22,42,0.08), rgba(7,22,42,0.72));
}

.hero-mini:nth-child(1) {
  background-image: url('./assets/img/hero-detail-2.jpg');
}

.hero-mini:nth-child(2) {
  background-image: url('./assets/img/hero-detail-3.jpg');
}

.hero-mini-content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 18px;
}

.hero-mini strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 1rem;
}

.hero-mini span {
  color: rgba(255,255,255,0.82);
  font-size: .86rem;
}

/* Sections */

.section {
  padding: 92px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(244,247,251,0.96));
}

.section-light {
  background: var(--wk-bg);
}

.section-dark {
  color: #fff;
  background: linear-gradient(160deg, #102845, #18385f 58%, #102845);
}

.section h2 {
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

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

.lead {
  margin: 0;
  max-width: 860px;
  font-size: 1.08rem;
  color: var(--wk-muted);
}

.section-dark .lead {
  color: rgba(255,255,255,0.82);
}

/* Grids */

.grid {
  display: grid;
  gap: 24px;
}

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

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

/* Cards */

.card {
  position: relative;
  background: rgba(255,255,255,0.86);
  border-radius: var(--wk-radius);
  padding: 28px;
  box-shadow: var(--wk-shadow-soft);
  border: 1px solid rgba(255,255,255,0.72);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--wk-gold), rgba(200,169,107,0.06));
}

.card h3 {
  margin: 0 0 10px;
  color: var(--wk-blue);
  font-size: 1.18rem;
}

.card p,
.card li {
  color: var(--wk-text);
}

.card ul {
  margin: 0;
}

.section-dark .card {
  background: rgba(255,255,255,0.07);
  color: #fff;
  border-color: rgba(255,255,255,0.10);
  box-shadow: none;
}

.section-dark .card::before {
  background: linear-gradient(180deg, var(--wk-gold), rgba(255,255,255,0.02));
}

.section-dark .card h3 {
  color: var(--wk-gold-soft);
}

.section-dark .card p,
.section-dark .card li {
  color: rgba(255,255,255,0.88);
}

/* Intro / aside */

.section-intro {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(280px,0.9fr);
  gap: 26px;
  align-items: start;
  margin-bottom: 34px;
}

.section-aside {
  padding: 22px;
  border-radius: 22px;
  background: rgba(15,39,71,0.05);
  border: 1px solid rgba(15,39,71,0.10);
}

.section-aside h3 {
  margin-top: 0;
  color: var(--wk-blue);
}

.section-aside-signature {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(15,39,71,0.06), rgba(15,39,71,0.03));
  border: 1px solid rgba(15,39,71,0.10);
  box-shadow: 0 18px 44px rgba(15,39,71,0.08);
}

.section-aside-signet {
  margin-bottom: 14px;
}

/* Stats */

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
  margin-top: 30px;
}

.stat-card {
  padding: 20px 18px;
  border-radius: 20px;
  background: rgba(15,39,71,0.05);
  border: 1px solid rgba(15,39,71,0.10);
}

.stat-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--wk-blue);
  font-size: 1.58rem;
  line-height: 1;
}

.stat-card span {
  color: var(--wk-muted);
  font-size: .95rem;
}

.stat-strip-premium {
  gap: 20px;
}

.stat-strip-premium .stat-card {
  padding: 22px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.90), rgba(248,250,253,0.96));
  border: 1px solid rgba(15,39,71,0.10);
  box-shadow: 0 16px 36px rgba(15,39,71,0.06);
}

.stat-strip-premium .stat-card strong {
  font-size: 1.9rem;
  margin-bottom: 10px;
  color: var(--wk-blue);
  letter-spacing: -0.03em;
}

.stat-strip-premium .stat-card span {
  display: block;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--wk-muted);
}

/* Usecases */

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

.usecase-card {
  padding-top: 26px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.usecase-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(15,39,71,0.10);
}

.usecase-card-featured {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,247,251,0.96));
  border-color: rgba(200,169,107,0.28);
  box-shadow: 0 24px 54px rgba(15,39,71,0.10);
}

/* Showcase */

.split-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 32px;
  align-items: center;
}

.showcase-visual {
  position: relative;
  min-height: 520px;
  border-radius: var(--wk-radius-lg);
  overflow: hidden;
  box-shadow: var(--wk-shadow);
  border: 1px solid var(--wk-border);
  background:
    linear-gradient(180deg, rgba(15,39,71,0.10), rgba(15,39,71,0.58)),
    url('./assets/img/hero-detail-2.jpg') center/cover no-repeat;
}

.showcase-visual .overlay-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  background: linear-gradient(180deg, transparent, rgba(8,25,44,0.84));
}

.showcase-visual .overlay-copy strong,
.showcase-visual .overlay-copy p {
  color: #fff;
}

.showcase-visual .overlay-copy p {
  margin: 8px 0 0;
  color: rgba(255,255,255,0.84);
}

/* Process */

.process-grid {
  counter-reset: process;
}

.process-step {
  position: relative;
  padding-left: 72px;
}

.process-step::after {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  position: absolute;
  left: 22px;
  top: 24px;
  color: rgba(15,39,71,0.18);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.section-cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  padding: 24px 26px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(15,39,71,0.05), rgba(15,39,71,0.02));
  border: 1px solid rgba(15,39,71,0.10);
}

.section-cta-band strong {
  display: block;
  color: var(--wk-blue);
  margin-bottom: 4px;
}

.section-cta-band span {
  color: var(--wk-muted);
}

/* Pricing */

.price-card {
  padding-top: 30px;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 16px 0 18px;
  color: var(--wk-blue);
}

.price strong {
  font-size: 2.3rem;
  line-height: 1;
}

.price span {
  color: var(--wk-muted);
  font-size: .95rem;
}

.price-card ul {
  margin-bottom: 0;
}

.price-guide-box {
  margin: 26px 0 40px;
}

.price-guide-box-subtle .price-guide-box-inner {
  padding: 22px 24px;
  border-radius: 20px;
  background: rgba(15,39,71,0.035);
  border: 1px solid rgba(15,39,71,0.08);
  box-shadow: none;
}

.price-guide-head {
  margin-bottom: 16px;
}

.price-guide-eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15,39,71,0.05);
  color: var(--wk-blue);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price-guide-head h2 {
  margin: 0 0 8px;
  color: var(--wk-blue);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.price-guide-head p {
  margin: 0;
  max-width: 860px;
  color: var(--wk-muted);
  font-size: .97rem;
}

.price-guide-table-wrap {
  overflow-x: auto;
}

.price-guide-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.price-guide-table thead th {
  text-align: left;
  padding: 12px 14px;
  font-size: .88rem;
  font-weight: 800;
  color: var(--wk-blue);
  border-bottom: 1px solid rgba(15,39,71,0.10);
  background: rgba(15,39,71,0.03);
}

.price-guide-table tbody td {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(15,39,71,0.06);
  color: var(--wk-text);
  vertical-align: top;
}

.price-guide-table tbody tr:last-child td {
  border-bottom: none;
}

.price-guide-table tbody td:last-child {
  font-weight: 700;
  color: var(--wk-blue);
  white-space: nowrap;
}

.price-guide-note {
  margin: 14px 0 0;
  color: var(--wk-muted);
  font-size: .92rem;
}

/* Note box */

.note-box {
  padding: 22px 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff8ee, #fdf5e8);
  border: 1px solid rgba(200,169,107,0.24);
  box-shadow: 0 18px 44px rgba(200,169,107,0.10);
}

.note-box strong {
  color: var(--wk-blue);
}

.note-box-branded {
  padding: 24px 26px;
  background: linear-gradient(180deg, #fff8ee, #fbf2e3);
}

.note-box-brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.note-box-signet {
  flex: 0 0 auto;
}

/* Page hero */

.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 124px 0 54px;
  background:
    linear-gradient(140deg, rgba(15,39,71,0.95), rgba(26,59,103,0.76)),
    url('./assets/img/hero-detail-3.jpg') center/cover no-repeat;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(157,210,235,0.16), transparent 30%);
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.page-hero p {
  margin: 0;
  max-width: 760px;
  font-size: 1.02rem;
  color: rgba(255,255,255,0.84);
}

.content-default {
  padding: 80px 0 92px;
}

.content-default .lead {
  margin-bottom: 22px;
}

.legal-content h2 {
  margin-top: 44px;
}

/* Photo band */

.photo-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-top: 30px;
}

.photo-tile {
  min-height: 230px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--wk-border);
  box-shadow: var(--wk-shadow-soft);
  background-size: cover;
  background-position: center;
}

.photo-tile:nth-child(1) {
  background-image: url('./assets/img/hero-detail-1.jpg');
}

.photo-tile:nth-child(2) {
  background-image: url('./assets/img/hero-detail-2.jpg');
}

.photo-tile:nth-child(3) {
  background-image: url('./assets/img/hero-detail-3.jpg');
}

/* Footer */

footer.site-footer {
  color: rgba(255,255,255,0.92);
  background: linear-gradient(180deg, #0a1f38, #0d2747);
  padding: 62px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 32px;
}

.footer-grid h3,
.footer-grid h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1.05rem;
}

.footer-grid p,
.footer-grid li {
  color: rgba(255,255,255,0.78);
}

.footer-grid ul {
  padding-left: 18px;
  margin: 0;
}

.footer-brand-mark {
  margin-bottom: 18px;
}

.footer-brand-copy {
  max-width: 340px;
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.58;
}

.footer-brand-secondary {
  max-width: 340px;
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 0.96rem;
  line-height: 1.6;
}

.footer-brand-cta {
  margin-top: 18px;
}

.footer-brand-cta .btn {
  min-height: 48px;
  padding: 12px 18px;
}

.footer-brand-mark .logo-context-footer {
  background: rgba(255,255,255,0.98);
  padding: 10px 14px;
}

.footer-meta-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-meta-list li {
  margin-bottom: 12px;
}

.footer-meta-list a {
  color: rgba(255,255,255,0.92);
}

.footer-meta-list a:hover {
  color: var(--wk-gold-soft);
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.68);
  font-size: .92rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom-note {
  text-align: right;
}

/* Forms */

form input,
form textarea,
form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(15,39,71,0.12);
  margin-bottom: 14px;
  font: inherit;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

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

.form-hint {
  margin-top: -6px;
  margin-bottom: 18px;
  color: var(--wk-muted);
  font-size: .92rem;
}

.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 10px 0 22px;
}

.checkbox-wrap input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin: 4px 0 0;
}

.form-alert {
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-weight: 600;
}

.form-alert-success {
  background: #e9f8ef;
  color: #166534;
  border: 1px solid #b7e4c7;
}

.form-alert-error {
  background: #fff1f2;
  color: #be123c;
  border: 1px solid #fecdd3;
}

/* Complianz page */

.page-id-52 #cmplz-document,
.page-id-52 #cmplz-document p,
.page-id-52 #cmplz-document span,
.page-id-52 #cmplz-document li,
.page-id-52 #cmplz-document td,
.page-id-52 #cmplz-document th,
.page-id-52 #cmplz-document a,
.page-id-52 #cmplz-document strong,
.page-id-52 #cmplz-document em,
.page-id-52 #cmplz-document h1,
.page-id-52 #cmplz-document h2,
.page-id-52 #cmplz-document h3,
.page-id-52 #cmplz-document h4,
.page-id-52 #cmplz-document h5,
.page-id-52 #cmplz-document h6,
.page-id-52 #cmplz-document button {
  font-family: Inter, Arial, sans-serif !important;
  color: var(--wk-text) !important;
}

.page-id-52 #cmplz-document {
  line-height: 1.6;
}

.page-id-52 #cmplz-document h1,
.page-id-52 #cmplz-document h2,
.page-id-52 #cmplz-document h3,
.page-id-52 #cmplz-document h4,
.page-id-52 #cmplz-document h5,
.page-id-52 #cmplz-document h6 {
  color: var(--wk-blue) !important;
  line-height: 1.22;
  margin-top: 1.8em;
  margin-bottom: 0.6em;
}

.page-id-52 #cmplz-document a {
  color: var(--wk-blue) !important;
}

.page-id-52 #cmplz-document a:hover {
  color: var(--wk-gold) !important;
}

/* Responsive */

@media (max-width: 1120px) {
  .hero-grid,
  .split-showcase,
  .section-intro {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 400px;
  }

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

@media (max-width: 980px) {
  .grid-2,
  .grid-3,
  .footer-grid,
  .form-grid,
  .photo-band {
    grid-template-columns: 1fr;
  }

  .header-inner {
    min-height: 78px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(8,22,40,0.98);
    padding: 16px 16px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 45px rgba(0,0,0,0.22);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .main-nav li + li {
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .main-nav a {
    display: block;
    padding: 14px 4px;
  }

  .main-nav .header-cta {
    display: none;
  }

  .main-nav .mobile-nav-cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-top: 14px;
  }

  .hero {
    padding: 108px 0 70px;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 10vw, 3.8rem);
    max-width: none;
  }

  .hero-lead {
    font-size: 1rem;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .hero-actions .btn-outline {
    width: 100%;
  }

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

  .hero-brand-row {
    gap: 10px;
    align-items: flex-start;
  }

  .section-cta-band,
  .note-box-brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-cta-band .btn,
  .footer-brand-cta .btn {
    width: 100%;
  }

  .logo-context-header .wk-logo-image,
  .logo-context-header img {
    max-height: 52px;
    max-width: 250px;
  }

  .logo-context-hero .wk-logo-image,
  .logo-context-hero img {
    max-height: 30px;
  }

  .logo-context-footer .wk-logo-image,
  .logo-context-footer img,
  .logo-context-badge .wk-logo-image,
  .logo-context-badge img {
    max-height: 38px;
  }

  .logo-context-signet .wk-logo-image,
  .logo-context-signet img {
    max-height: 24px;
  }

  .logo-context-favicon .wk-logo-image,
  .logo-context-favicon img {
    max-height: 28px;
  }

  .stat-strip-premium .stat-card strong {
    font-size: 1.7rem;
  }

  .hero-card-refined h2 {
    font-size: 1.3rem;
  }

  .footer-bottom-note {
    text-align: left;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, var(--wk-max));
  }

  .card,
  .section-aside,
  .note-box {
    padding: 22px;
  }

  .price-guide-box-subtle .price-guide-box-inner {
    padding: 18px;
  }

  .price-guide-head h2 {
    font-size: 1.2rem;
  }

  .price-guide-table {
    min-width: 0;
  }

  .price-guide-table thead {
    display: none;
  }

  .price-guide-table,
  .price-guide-table tbody,
  .price-guide-table tr,
  .price-guide-table td {
    display: block;
    width: 100%;
  }

  .price-guide-table tr {
    padding: 12px 0;
    border-bottom: 1px solid rgba(15,39,71,0.08);
  }

  .price-guide-table tr:last-child {
    border-bottom: none;
  }

  .price-guide-table tbody td {
    padding: 3px 0;
    border: none;
  }

  .price-guide-table tbody td:first-child {
    font-weight: 700;
    color: var(--wk-blue);
    margin-bottom: 2px;
  }
}