/* ── FONTS (self-hosted, no third-party requests) ── */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('fonts/dm-sans-variable.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 400;
  font-display: swap;
  src: url('fonts/fraunces-normal-variable.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 300 400;
  font-display: swap;
  src: url('fonts/fraunces-italic-variable.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── TOKENS ── */
:root {
  --petrol:      #1F5C6B;
  --petrol-deep: #173F4C;
  --sienna:      #B8532A;
  --sienna-lt:   #C96A3E;
  --cream:       #F4F1EC;
  --cream-dark:  #EDE9E2;
  --sage:        #7F9E98;
  --dark:        #2A2A27;
  --mid:         #6B6B67;
  --light:       #B8B5AF;
  --white:       #ffffff;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── LOGO ── */
.logo {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
}
.logo .n { color: var(--sienna); }
.logo .icly { color: var(--petrol); }
.logo-white .icly { color: var(--white); }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 241, 236, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31, 92, 107, 0.08);
  transition: box-shadow 0.25s ease, height 0.25s ease;
}
.nav.is-scrolled {
  box-shadow: 0 4px 24px rgba(31, 92, 107, 0.08);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo.nav-logo { font-size: 22px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--dark); }
.nav-cta { flex-shrink: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.15s !important;
  border: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-sienna {
  background: var(--sienna);
  color: var(--white);
  padding: 11px 22px;
}
.btn-sienna:hover { background: var(--sienna-lt); }
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 11px 22px;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.6); }
.btn-petrol {
  background: var(--petrol);
  color: var(--white);
  padding: 14px 28px;
  font-size: 14px;
}
.btn-petrol:hover { background: var(--petrol-deep); }
.btn-hero {
  background: var(--sienna);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  padding: 16px 32px;
  border-radius: 3px;
  letter-spacing: 0.02em;
  display: inline-block;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,83,42,0.4);
}
.btn-ghost-light {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost-light:hover {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.5);
}

/* ── MOBILE MENU TOGGLE ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 210;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--petrol);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.mobile-menu a {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 300;
  color: var(--white);
}
.mobile-menu a:hover { color: var(--sienna-lt); }

body.menu-open { overflow: hidden; }

/* ── HERO ── */
.hero {
  background: var(--petrol);
  background-image:
    radial-gradient(circle at 20% 50%, rgba(184,83,42,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(127,158,152,0.1) 0%, transparent 40%),
    linear-gradient(135deg, #173F4C 0%, #1F5C6B 50%, #1A5060 100%);
  padding: 100px 40px 96px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 28px;
}
.hero-tag-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sienna);
  flex-shrink: 0;
}
.hero-h1 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero-h1 em {
  font-style: italic;
  color: #D4714A;
  font-size: 1.35em;
  display: inline-block;
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 44px;
}
.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.hero-stats-strip .stat-count {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.hero-stats-strip .stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  margin-top: 5px;
  letter-spacing: 0.06em;
}

/* Hero background image + overlay + grain */
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  /* Markenfarbe ueber dem Foto + zusaetzlicher Verlauf von links,
     damit der Text auch auf hellen Bildstellen (Nebel) lesbar bleibt */
  background:
    linear-gradient(90deg, rgba(12,38,46,0.55) 0%, rgba(12,38,46,0.30) 42%, rgba(12,38,46,0) 68%),
    linear-gradient(135deg, rgba(15,46,56,0.82) 0%, rgba(31,92,107,0.72) 50%, rgba(15,46,56,0.65) 100%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── SECTIONS ── */
.section { padding: 96px 40px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: 20px;
}
.section-h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-h2 em {
  font-style: italic;
  color: var(--sienna);
}
.section-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
  max-width: 520px;
}

/* ── CLIENTS / LOGO MARQUEE ── */
.clients {
  padding: 56px 0;
  border-top: 1px solid rgba(31,92,107,0.08);
  border-bottom: 1px solid rgba(31,92,107,0.08);
  background: var(--cream);
}
.clients-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: 40px;
}
.logo-slider-outer {
  overflow: hidden;
  width: 100%;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.logo-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marquee 32s linear infinite;
  will-change: transform;
}
.logo-track:hover {
  animation-play-state: paused;
}
.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo-track img {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.2s, transform 0.2s;
  display: block;
}
/* Logos mit weißem Hintergrund (JPG) in den Creme-Untergrund einbetten */
.logo-item-solid img { mix-blend-mode: multiply; }
/* Quadratische Logos brauchen mehr Höhe, um neben breiten Logos ausgewogen zu wirken */
.logo-item-square img { height: 62px; }
.logo-track img:hover {
  opacity: 1;
  transform: scale(1.08);
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── PAIN POINTS ── */
.pain { background: var(--cream-dark); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-top: 56px;
  border-radius: 6px;
  overflow: hidden;
}
.pain-card {
  background: var(--white);
  padding: 40px 36px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(31,92,107,0.1);
}
.pain-card svg { display: block; margin: 0 auto 20px; }
.pain-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.pain-text {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
}

/* ── SERVICES ── */
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--white);
  border-radius: 6px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(31,92,107,0.08);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.service-card:not(.featured):hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(31,92,107,0.13);
  border-color: rgba(31,92,107,0.2);
}
.service-card.featured {
  background: var(--petrol);
  border-color: transparent;
  grid-column: span 2;
}
.service-card.featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(31,92,107,0.25);
}
.service-card-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 28px;
  flex-shrink: 0;
  color: var(--petrol);
}
.service-card.featured .service-icon {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
.service-icon-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.service-icon-row .service-icon { margin-bottom: 0; }
.service-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: 12px;
}
.service-tag-inline { margin-bottom: 4px; }
.service-card.featured .service-tag { color: var(--sage); }
.service-title {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--dark);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  line-height: 1.15;
}
.service-title-inline { margin-bottom: 0; }
.service-card.featured .service-title { color: var(--white); }
.service-desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 28px;
}
.service-card.featured .service-desc { color: rgba(255,255,255,0.55); }
.service-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.service-items li {
  font-size: 13px;
  color: var(--mid);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.service-items li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sienna);
  font-size: 11px;
}
.service-card.featured .service-items li { color: rgba(255,255,255,0.5); }
.service-card.featured .service-items li::before { color: var(--sage); }
.service-footer {
  padding-top: 20px;
  border-top: 1px solid rgba(31,92,107,0.08);
  margin-top: auto;
}
.service-card.featured .service-footer { border-top-color: rgba(255,255,255,0.1); }
.service-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--petrol);
  font-family: 'DM Sans', sans-serif;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.about-img {
  border-radius: 6px;
  aspect-ratio: 3/4;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scaleX(-1);
}
.about-h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 24px;
}
.about-h2 em { font-style: italic; color: var(--sienna); }
.about-text {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-checklist {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-checklist li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: var(--dark);
  list-style: none;
}
.about-checklist li::before {
  content: '✓';
  color: var(--sienna);
  font-weight: 700;
}
.about-featured {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(31,92,107,0.1);
}
.about-featured-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 18px;
}
.about-featured-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.about-featured-logo {
  display: flex;
  align-items: center;
  opacity: 0.8;
  transition: opacity 0.2s, transform 0.2s;
}
.about-featured-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.about-featured-logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
}
.about-featured-logo-round img {
  height: 48px;
  border-radius: 50%;
}

/* ── PROCESS ── */
.process-section { background: var(--petrol-deep); }
.process-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.process-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 32px 28px;
  transition: transform 0.25s, background 0.25s;
}
.process-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.06);
}
.process-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(184,83,42,0.15);
  color: var(--sienna);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.process-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--sienna);
  line-height: 1;
  margin-bottom: 10px;
}
.process-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.process-text { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.5); }

.process-stats {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.process-stats-cta {
  border-radius: 999px;
  padding: 16px 28px;
}

/* ── WHY ── */
.why { background: var(--petrol); }
.why-header { max-width: 640px; margin-bottom: 56px; }
.why-h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
}
.why-h2 em { font-style: italic; color: #D4714A; }
.why-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}
.why-columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.why-col {
  position: relative;
  padding: 32px 26px;
}
.why-col::before {
  content: '';
  position: absolute;
  inset: 0 -1px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  opacity: 0;
  z-index: 0;
  transition: opacity 0.25s ease;
}
.why-col::after {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: rgba(255,255,255,0.1);
  opacity: 1;
  transition: opacity 0.25s ease;
}
.why-col:first-child::after { display: none; }
.why-col:hover::before { opacity: 1; }
.why-col:hover::after { opacity: 0; }
.why-col:hover + .why-col::after { opacity: 0; }
.why-col-title,
.why-col-text {
  position: relative;
  z-index: 1;
}
.why-col-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.why-col-text {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--cream-dark); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.testi-card {
  background: var(--white);
  border-radius: 6px;
  padding: 36px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(31,92,107,0.1);
}
/* Autor-Block unten bündig, auch wenn die Zitate unterschiedlich lang sind */
.testi-card:not(.featured) {
  display: flex;
  flex-direction: column;
}
.testi-card:not(.featured) .testi-quote { flex: 1; }
.testi-quote {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: var(--dark);
  margin-bottom: 28px;
}
.testi-quote::before { content: '"'; color: var(--sienna); }
.testi-quote::after { content: '"'; color: var(--sienna); }
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--petrol);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
}
.testi-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.01em;
}
.testi-role {
  font-size: 12px;
  color: var(--light);
  margin-top: 1px;
  line-height: 1.45;
}
.testi-card.featured {
  background: var(--petrol);
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.testi-card.featured .testi-quote { color: var(--white); margin-bottom: 0; font-size: 20px; }
.testi-card.featured .testi-name { color: var(--white); }
.testi-card.featured .testi-role { color: rgba(255,255,255,0.4); }
.testi-card.featured .testi-avatar { background: rgba(255,255,255,0.12); }

/* ── CTA ── */
.cta-section {
  background: var(--sienna);
  padding: 96px 40px;
}
.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: stretch;
}
.cta-h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-h2 em { font-style: italic; }
.cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 28px;
}
.cta-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.cta-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.cta-contact-row a { color: rgba(255,255,255,0.8); }
.cta-contact-row .icon {
  color: var(--white);
  background: rgba(255,255,255,0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cta-photo {
  margin-top: 32px;
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}
.cta-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transform: scaleX(-1);
}

.btn-white {
  background: var(--white);
  color: var(--sienna);
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 3px;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
  display: inline-block;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  font-family: 'DM Sans', sans-serif;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Contact form */
.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  box-sizing: border-box;
}
.form-message-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.form-message-group .form-textarea {
  flex: 1;
  min-height: 80px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.form-select { color: rgba(255,255,255,0.7); cursor: pointer; }
.form-select option { background: var(--petrol); }
.form-textarea { resize: vertical; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(255,255,255,0.4);
}
.form-honeypot { display: none; }
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  cursor: pointer;
}
.form-consent input {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--sienna);
}
.form-consent a {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  padding: 64px 40px 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}
.footer-brand .logo { font-size: 24px; margin-bottom: 16px; display: block; }
.footer-brand-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  line-height: 1.65;
  max-width: 220px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.footer-social-link:hover {
  background: var(--sienna);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ── HOVER EFFECTS (nav underline) ── */
.nav-links a { position: relative; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sienna);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }

/* ── SCROLL-REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
.reveal-d1 { transition-delay: 0.05s; }
.reveal-d2 { transition-delay: 0.12s; }
.reveal-d3 { transition-delay: 0.19s; }
.reveal-d4 { transition-delay: 0.26s; }
.reveal-d5 { transition-delay: 0.33s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .pain-grid { grid-template-columns: 1fr; gap: 2px; }
  .services-header { grid-template-columns: 1fr; gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: span 1; }
  .service-card-split { grid-template-columns: 1fr; gap: 24px; }
  .why-columns { grid-template-columns: repeat(2, 1fr); }
  .why-col::after { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { aspect-ratio: 4/3; }
  .process-header { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .process-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .section { padding: 64px 24px; }
  .hero { padding: 72px 24px; }
  .nav-inner { padding: 0 24px; }
  .clients { padding: 40px 24px; }
  .cta-section { padding: 72px 24px; }
  .footer { padding: 48px 24px 32px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 600px) {
  .why-columns { grid-template-columns: 1fr; }
  .about-featured-logos { gap: 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
