*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #15309c;
  --blue-h: #286bb2;
  --blue-light: #e8eef8;
  --blue-mid: #6b88c8;
  --blue-deep: #0d1f6e;
  --bg: #f5f5f5;
  --white: #ffffff;
  --ink: #111827;
  --ink-mid: #374151;
  --ink-soft: #4b5563;
  --border: rgba(21, 48, 156, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Mulish", sans-serif;
  --nav-h: 76px;
  --r: 4px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}

/* ── UTILITY ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--blue);
  flex-shrink: 0;
}
.s-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 1rem;
}
.s-title em {
  font-style: italic;
  color: var(--blue);
}
.s-sub {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.8;
  max-width: 540px;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--blue);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: var(--r);
  transition:
    background 0.2s,
    transform 0.1s;
}
.btn:hover {
  background: var(--blue-h);
}
.btn:active {
  transform: scale(0.98);
}
.btn-outline {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: transparent;
  color: var(--blue);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--blue);
  cursor: pointer;
  border-radius: var(--r);
  transition:
    background 0.2s,
    color 0.2s;
}
.btn-outline:hover {
  background: var(--blue);
  color: #fff;
}
.btn-white {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: #fff;
  color: var(--blue);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: opacity 0.2s;
}
.btn-white:hover {
  opacity: 0.9;
}
.btn-ghost-white {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: transparent;
  color: #fff;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--r);
  transition: border-color 0.2s;
}
.btn-ghost-white:hover {
  border-color: #fff;
}

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
#nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 24px rgba(21, 48, 156, 0.07);
}
.nav-inner {
  width: 100%;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: auto;
  width: clamp(140px, 24vw, 320px);
  max-height: 46px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links > li {
  position: relative;
}
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-mid);
  padding: 0.55rem 1.75rem;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links > li > a:hover {
  color: var(--blue);
}
.nav-links > li > a.active {
  color: var(--blue);
}
.nav-links > li > a svg {
  transition: transform 0.2s;
}
.nav-links > li:hover > a svg {
  transform: rotate(180deg);
}

/* dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: 0 8px 32px rgba(21, 48, 156, 0.1);
  min-width: 220px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.2s,
    transform 0.2s,
    visibility 0.2s;
  z-index: 300;
}
.nav-links > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-mid);
  transition:
    background 0.15s,
    color 0.15s;
}
.dropdown a:hover {
  background: var(--blue-light);
  color: var(--blue);
}

.nav-cta {
  margin-left: 1rem;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 199;
  overflow-y: auto;
  padding: 1.5rem 2rem 3rem;
  flex-direction: column;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-mid);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a.sub {
  padding-left: 1rem;
  font-size: 0.88rem;
  color: var(--blue);
  font-weight: 500;
}

/* ── PAGE SYSTEM ── */
.page {
  display: none;
}
.page.active {
  display: block;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(21, 48, 156, 0.82) 0%,
      rgba(40, 107, 178, 0.65) 100%
    ),
    url("https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1600&q=80")
      center/cover no-repeat;
}
/* Hero image: Unsplash (unsplash.com/license – free for commercial use). To replace: swap the url() above with your own image path. */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.03) 0px,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px,
    transparent 40px
  );
}
.hero-ph-note {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  z-index: 3;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.1em;
  font-family: var(--sans);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 5rem 2.5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.75rem;
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7ec8ff;
  display: block;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.06;
  color: #fff;
  max-width: 720px;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: #c8deff;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.78;
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--blue);
  padding: 2rem 0;
}
.intro-inner {
  display: flex;
  gap: 4rem;
  justify-content: center;
  flex-wrap: wrap;
}
.intro-item {
  text-align: center;
  color: #fff;
}
.intro-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}
.intro-item span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.82;
  margin-top: 0.3rem;
  display: block;
}

/* ── SECTIONS ── */
section {
  padding: 6rem 0;
}
.about-section {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #dce6f5 0%, #bdd0ee 100%);
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--blue-mid);
  position: relative;
  overflow: hidden;
}
.about-img-placeholder::before {
  content: "PHOTO";
  position: absolute;
  font-family: var(--serif);
  font-size: 6rem;
  font-weight: 700;
  color: rgba(21, 48, 156, 0.06);
  letter-spacing: 0.2em;
}
.about-img-placeholder svg {
  opacity: 0.35;
  position: relative;
  z-index: 1;
}
.about-img-placeholder span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.5;
  position: relative;
  z-index: 1;
}
.about-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 110px;
  height: 110px;
  background: var(--blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 0.75rem;
}
.about-accent strong {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.about-accent span {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 0.25rem;
  display: block;
}
.about-img-wrap {
  position: relative;
}
.pillars {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
}
.pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.pillar:first-child {
  border-top: 1px solid var(--border);
}
.p-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-light);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.p-icon svg {
  color: var(--blue);
}
.p-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.15rem;
}
.p-desc {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ── SERVICES OVERVIEW ── */
.services-section {
  background: var(--bg);
}
.svc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.svc-card {
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid var(--border);
  padding: 2rem;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(21, 48, 156, 0.1);
  border-color: rgba(21, 48, 156, 0.2);
}
.svc-card:hover::before {
  transform: scaleX(1);
}
.svc-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.svc-icon svg {
  color: var(--blue);
}
.svc-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.svc-desc {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 100px;
}
.svc-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 1rem;
}

/* ── PROCESS ── */
.process-section {
  background: var(--white);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--border);
}
.p-step {
  text-align: center;
  padding: 0 1.5rem;
}
.step-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  transition:
    background 0.2s,
    color 0.2s;
}
.p-step:hover .step-circle {
  background: var(--blue);
  color: #fff;
}
.step-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ── CASE STUDY ── */
.case-section {
  background: var(--bg);
}
.case-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}
.case-card {
  background: var(--blue);
  border-radius: var(--r);
  padding: 2.5rem;
  color: #fff;
}
.case-badge-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.5rem;
}
.case-client {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.case-industry {
  font-size: 0.78rem;
  opacity: 0.65;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}
.case-stat {
  margin-bottom: 1.5rem;
}
.case-stat-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.case-stat-lbl {
  font-size: 0.72rem;
  opacity: 0.65;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.c-div {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 1.5rem 0;
}
.case-steps-list {
  display: flex;
  flex-direction: column;
}
.cs-step {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
}
.cs-step:first-child {
  border-top: 1px solid var(--border);
}
.cs-phase {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  padding-top: 0.2rem;
}
.cs-body {
  font-size: 0.88rem;
  color: var(--ink-mid);
  line-height: 1.7;
}
.cs-body strong {
  font-weight: 700;
  color: var(--ink);
}

/* ── WHY US ── */
.why-section {
  background: var(--blue);
  color: #fff;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 2rem;
}
.why-section .eyebrow {
  color: #c8deff;
}
.why-section .eyebrow::before {
  background: #c8deff;
}
.why-section .s-title {
  color: #fff;
}
.why-section .s-title em {
  color: #c8deff;
}
.why-intro {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.78;
  margin-bottom: 2rem;
}
.why-list {
  display: flex;
  flex-direction: column;
}
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.why-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.why-chk {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-chk svg {
  color: #a8c8f0;
}
.wi-title {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.wi-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

/* ── TEAM ── */
.team-section {
  background: var(--bg);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid var(--border);
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(21, 48, 156, 0.09);
}
.team-photo {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #d0dff5 0%, #b0c8e8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-initials {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--blue);
  opacity: 0.4;
}
.team-info {
  padding: 1.25rem 1.5rem;
}
.team-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.team-role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.6rem;
}
.team-bio {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ── CTA ── */
.cta-section {
  padding: 6rem 0;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "WSMG";
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22rem;
  line-height: 1;
  color: var(--blue);
  opacity: 0.03;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}
.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-section .eyebrow {
  justify-content: center;
}
.cta-section .s-title {
  margin: 0 auto 1rem;
  max-width: 540px;
}
.cta-section .s-sub {
  margin: 0 auto 2.5rem;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── CONTACT ── */
.contact-section {
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}
.c-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.c-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-light);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.c-icon svg {
  color: var(--blue);
}
.c-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.2rem;
}
.c-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}
.contact-form {
  background: var(--bg);
  border-radius: var(--r);
  padding: 2.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ink);
  background: #fff;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21, 48, 156, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
}
.form-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.form-submit:hover {
  background: var(--blue-h);
}

/* ── SERVICE DETAIL PAGE ── */
.svc-detail-hero {
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  background: var(--blue);
  color: #fff;
}
.svc-detail-hero .eyebrow {
  color: #c8deff;
}
.svc-detail-hero .eyebrow::before {
  background: #c8deff;
}
.svc-detail-h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.25rem;
}
.svc-detail-h1 em {
  font-style: italic;
  font-weight: 400;
  color: #c8deff;
}
.svc-detail-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.78;
  max-width: 580px;
  margin-bottom: 2rem;
}
.svc-detail-icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.svc-detail-icon svg {
  color: #fff;
  width: 36px;
  height: 36px;
}
.svc-body {
  padding: 5rem 0;
}
.svc-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.svc-what h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--ink);
}
.svc-what p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.svc-includes h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.25rem;
}
.svc-item-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.svc-item-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.55;
  list-style: none;
}
.svc-item-list li:first-child {
  border-top: 1px solid var(--border);
}
.li-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 6px;
}
.svc-bottom {
  background: var(--blue-light);
  padding: 4rem 0;
}
.svc-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.svc-bottom-text h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.svc-bottom-text p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  max-width: 500px;
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.breadcrumb span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}
.breadcrumb a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: #fff;
}
.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.3);
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 3.5rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo img {
  height: auto;
  width: 80px;
  margin-bottom: 1.25rem;
  border-radius: 8px;
}
.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.7;
  max-width: 240px;
  color: rgba(255, 255, 255, 0.72);
}
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s;
}
.footer-col a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.62);
}
.footer-socials {
  display: flex;
  gap: 1.5rem;
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: #fff;
}
.footer-socials a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.footer-socials a:hover {
  color: #fff;
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .svc-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid,
  .case-inner,
  .contact-grid,
  .why-grid,
  .svc-body-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-accent {
    display: none;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .process-steps::before {
    display: none;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .svc-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 1.25rem;
  }
  .svc-grid,
  .team-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .intro-inner {
    gap: 2rem;
  }
  .hero h1 {
    font-size: 2.4rem;
  }
}

/* ── SERVICE DETAIL: 3-column body grid (text | includes | photo) ── */
.svc-body-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.svc-side-photo {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.svc-side-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--r);
  display: block;
}
.svc-side-photo-caption {
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-top: 0.6rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

@media (max-width: 960px) {
  .svc-body-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .svc-side-photo {
    display: none;
  }
}
@media (max-width: 600px) {
  .svc-body-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════════
   LEGAL PAGES (Privacy Policy, Impressum)
════════════════════════════════════════════════════════ */

/* Top hero band — matches .svc-detail-hero */
.legal-hero {
  padding: calc(var(--nav-h) + 4rem) 0 3rem;
  background: var(--blue);
  color: #fff;
}
.legal-hero .eyebrow {
  color: #c8deff;
}
.legal-hero .eyebrow::before {
  background: #c8deff;
}
.legal-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1rem;
}
.legal-hero p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.78;
  max-width: 620px;
}
.legal-updated {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* Body */
.legal-body {
  background: var(--white);
  padding: 4rem 0 5rem;
}
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.legal-section {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.legal-section:first-child {
  padding-top: 0;
}
.legal-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.legal-section h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}
.legal-section h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 1.25rem 0 0.6rem;
}
.legal-section p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 0.85rem;
}
.legal-section p:last-child {
  margin-bottom: 0;
}
.legal-section a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-section a:hover {
  color: var(--blue-h);
}
.legal-section strong {
  color: var(--ink);
  font-weight: 700;
}

.legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0.5rem 0 1rem;
}
.legal-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.5rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.65;
  border-bottom: 1px solid var(--border);
}
.legal-list li:first-child {
  border-top: 1px solid var(--border);
}
.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

/* Contact / org info card */
.legal-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.5rem 1.75rem;
  margin: 0.5rem 0 1rem;
}
.legal-card p {
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}
.legal-card p:last-child {
  margin-bottom: 0;
}
.legal-card .legal-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
  display: block;
  margin-top: 0.85rem;
  margin-bottom: 0.15rem;
}
.legal-card .legal-label:first-child {
  margin-top: 0;
}

/* Simple top bar for standalone legal pages (logo + back link) */
.legal-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.legal-topbar .nav-inner {
  justify-content: space-between;
}
.legal-back {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.legal-back:hover {
  color: var(--blue-h);
}

@media (max-width: 600px) {
  .legal-section h3 {
    font-size: 1.2rem;
  }
}

/* Required field marker */
.req {
  color: #b91c1c;
  font-weight: 700;
  margin-left: 0.15em;
}
