/*
Theme Name: TNC System
Theme URI: https://www.tnc-system.de
Author: TNC System GmbH & Co. KG
Author URI: https://www.tnc-system.de
Description: Custom WordPress Theme für TNC System — IT-Systemhaus aus Mittelhessen. Modernes, klares Design mit Bento-Service-Karten, prominenter TNC-Markenfarbe und Foto-fokussiertem Layout.
Version: 1.2.0
Requires at least: 6.0
Requires PHP: 8.0
License: Proprietary
License URI: https://www.tnc-system.de
Text Domain: tnc-system
Tags: business, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, theme-options, translation-ready
*/

/* ===========================================================
   RESET & BASE
   =========================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; overflow-x: hidden; }
html { scroll-behavior: smooth; }

:root {
  --tnc-blue: #023e84;
  --tnc-blue-light: #1955a8;
  --tnc-blue-dark: #012a5c;
  --tnc-grey: #878787;
  --bg: #fafaf7;
  --surface: #ffffff;
  --ink: #0a0e1a;
  --ink-soft: #2a3245;
  --border: rgba(10, 14, 26, 0.08);
  --max-width: 1320px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.5;
}

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

/* ===========================================================
   NAV
   =========================================================== */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
nav.topnav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.brand-link { text-decoration: none; display: block; line-height: 0; }
.brand-logo { height: 56px; width: auto; display: block; }
.menu {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}
.menu a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.menu a:hover, .menu .current-menu-item a { color: var(--tnc-blue); }
.contact-pill {
  background: var(--tnc-blue);
  color: white !important;
  padding: 11px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  white-space: nowrap;
}
.contact-pill:hover { background: var(--tnc-blue-dark); }

/* ===========================================================
   CONTAINER & SECTIONS
   =========================================================== */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section-spacer { padding: 80px 24px; }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  min-height: 720px;
  background: linear-gradient(135deg, var(--tnc-blue-dark) 0%, var(--tnc-blue) 70%, var(--tnc-blue-light) 100%);
  color: white;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2,42,92,0.85) 0%, rgba(2,62,132,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 24px 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  align-self: flex-start;
  width: fit-content;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: #5eff9e;
  border-radius: 50%;
  box-shadow: 0 0 8px #5eff9e;
}
.hero h1 {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 900px;
}
.hero h1 em { font-style: italic; font-weight: 400; color: rgba(255,255,255,0.92); }
.hero-sub {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5;
  max-width: 640px;
  color: rgba(255,255,255,0.85);
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.btn-primary {
  background: white;
  color: var(--tnc-blue);
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,255,255,0.2);
}
.btn-secondary {
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 16px 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.2s;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); }

.hero-trust {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 24px 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-trust .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.hero-trust-logos {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-trust-logos img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.65;
  transition: opacity 0.2s;
}
.hero-trust-logos img:hover { opacity: 1; }

/* ===========================================================
   PROMISES (3 columns)
   =========================================================== */
.promises {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.promises-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.promise {
  padding: 56px 32px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.promise:last-child { border-right: none; }
.promise .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--tnc-blue);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.promise h3 {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.promise h3 em { font-style: italic; color: var(--tnc-blue); }
.promise p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 360px;
}

/* ===========================================================
   INTRO
   =========================================================== */
.intro { background: var(--bg); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.intro-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--tnc-blue);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.intro-headline {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.intro-headline em { font-style: italic; color: var(--tnc-blue); }
.intro-text { font-size: 17px; line-height: 1.6; color: var(--ink-soft); }
.intro-text p { margin-bottom: 16px; }
.intro-text p:last-child { margin-bottom: 0; }

/* ===========================================================
   QUOTE FEATURE
   =========================================================== */
.quote-feature {
  background: var(--tnc-blue);
  color: white;
}
.quote-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
.quote-feature .qmark {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: 120px;
  line-height: 0.5;
  font-style: italic;
  opacity: 0.4;
  margin-bottom: 16px;
}
.quote-feature blockquote {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.4;
  font-weight: 400;
}
.quote-feature .attribution {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  gap: 16px;
}
.quote-feature .portrait-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
  overflow: hidden;
}
.quote-feature .portrait-circle img { width: 100%; height: 100%; object-fit: cover; }
.quote-feature .who { font-size: 15px; font-weight: 600; }
.quote-feature .role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
.quote-feature .badge-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quote-feature .badge-stat .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.quote-feature .badge-stat .num {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}
.quote-feature .badge-stat .desc {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin-top: 8px;
  max-width: 280px;
}

/* ===========================================================
   SERVICES
   =========================================================== */
.services { background: var(--bg); }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}
.services-header .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--tnc-blue);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.services-header h2 {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 700px;
}
.services-header h2 em { font-style: italic; color: var(--tnc-blue); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--tnc-blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(2, 62, 132, 0.08);
}
.service-card .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--tnc-blue);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.service-card .icon {
  width: 56px;
  height: 56px;
  background: rgba(2, 62, 132, 0.08);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--tnc-blue);
}
.service-card h3 {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}
.service-card .more {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--tnc-blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ===========================================================
   TEAM
   =========================================================== */
.team-section { background: var(--surface); }
.team-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.team-header .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--tnc-blue);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-header h2 {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.team-header h2 em { font-style: italic; color: var(--tnc-blue); }
.team-intro { font-size: 17px; color: var(--ink-soft); line-height: 1.55; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all 0.3s;
}
.team-card:hover {
  border-color: var(--tnc-blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(2, 62, 132, 0.08);
}
.avatar-wrap {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: #c9c9c9;
}
.avatar-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.avatar-initials {
  width: 100%;
  height: 100%;
  background: var(--tnc-blue);
  color: white;
  display: grid;
  place-items: center;
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: 42px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.team-info { flex: 1; min-width: 0; }
.team-name {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.team-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--tnc-blue);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  line-height: 1.4;
}
.team-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.55; }

/* ===========================================================
   WERKSTATT (single feature block)
   =========================================================== */
.feature-block-single {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 480px;
  background: var(--ink-soft);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 56px;
}
.feature-block-single .photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.feature-block-single .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}
.feature-block-single .text { position: relative; z-index: 2; max-width: 600px; }
.feature-block-single .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.feature-block-single h3 {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.feature-block-single h3 em { font-style: italic; }
.feature-block-single p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

/* ===========================================================
   APPROACH
   =========================================================== */
.approach {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.approach-header { margin-bottom: 56px; }
.approach-header h2 {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.approach-header h2 em { font-style: italic; color: var(--tnc-blue); }
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.approach-step { display: flex; flex-direction: column; gap: 16px; }
.approach-step .step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--tnc-blue);
  letter-spacing: 0.15em;
  padding-bottom: 16px;
  border-top: 2px solid var(--tnc-blue);
  padding-top: 20px;
}
.approach-step h3 {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.approach-step p { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }

/* ===========================================================
   LOGO WALL
   =========================================================== */
.logo-wall-section { background: var(--bg); }
.logo-wall-header {
  text-align: center;
  margin-bottom: 48px;
}
.logo-wall-header .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--tnc-blue);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.logo-wall-header h2 {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.logo-wall-header h2 em { font-style: italic; color: var(--tnc-blue); }
.logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.logo-cell {
  background: white;
  height: 110px;
  display: grid;
  place-items: center;
  padding: 20px;
  transition: background 0.3s;
}
.logo-cell:hover { background: #fcfcfc; }
.logo-cell img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.logo-cell:hover img { opacity: 1; }

/* ===========================================================
   CTA
   =========================================================== */
.cta-section {
  background: var(--ink);
  color: white;
  text-align: center;
}
.cta-inner { max-width: 800px; margin: 0 auto; }
.cta-section h2 {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.cta-section h2 em { font-style: italic; color: rgba(255,255,255,0.85); }
.cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 1.5;
}
.cta-actions { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.cta-actions .btn-primary { background: var(--tnc-blue); color: white; }
.cta-actions .btn-primary:hover {
  background: var(--tnc-blue-light);
  box-shadow: 0 12px 32px rgba(2, 62, 132, 0.4);
}
.cta-actions .btn-secondary { border-color: rgba(255,255,255,0.3); color: white; }

/* ===========================================================
   FOOTER
   =========================================================== */
footer.site-footer {
  background: var(--bg);
  padding: 64px 24px 32px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .footer-logo {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}
.footer-brand p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
  max-width: 360px;
}
.footer-col h6 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--tnc-blue);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col a, .footer-col p {
  display: block;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  padding: 5px 0;
  transition: color 0.2s;
  line-height: 1.5;
}
.footer-col a:hover { color: var(--tnc-blue); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(10, 14, 26, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===========================================================
   GENERIC PAGE TEMPLATE
   =========================================================== */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
}
.page-content h1 {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.page-content h2 {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: 28px;
  font-weight: 500;
  margin: 32px 0 16px;
  letter-spacing: -0.01em;
}
.page-content h3 {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: 22px;
  font-weight: 500;
  margin: 24px 0 12px;
}
.page-content p { font-size: 17px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 16px; }
.page-content ul, .page-content ol { margin: 16px 0 16px 24px; }
.page-content li { font-size: 17px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 8px; }
.page-content a { color: var(--tnc-blue); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.page-content a:hover { text-decoration-thickness: 2px; }

/* ===========================================================
   SERVICE LANDING PAGE
   =========================================================== */

/* Service Hero (kompakter als Startseite) */
.service-hero {
  position: relative;
  background: linear-gradient(135deg, var(--tnc-blue-dark) 0%, var(--tnc-blue) 70%, var(--tnc-blue-light) 100%);
  color: white;
  padding: 100px 24px 80px;
  overflow: hidden;
}
.service-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
}
.service-hero-eyebrow { background: rgba(255,255,255,0.12); }
.service-hero-eyebrow::before { display: none; }
.service-hero h1 {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.service-hero-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: rgba(255,255,255,0.88);
  max-width: 700px;
}
.service-hero-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.service-hero-meta .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}
.service-hero-meta .meta-item svg { opacity: 0.7; }

/* Problem & Solution share grid */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  align-items: start;
}
.service-problem { background: var(--bg); }
.service-solution { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.service-solution .intro-headline em { font-style: italic; color: var(--tnc-blue); }
.problem-content .intro-text { font-size: 17px; line-height: 1.6; color: var(--ink-soft); }
.problem-content .intro-text p { margin-bottom: 16px; }
.problem-content .intro-text p:last-child { margin-bottom: 0; }

/* Features Grid */
.service-features { background: var(--bg); }
.features-header { margin-bottom: 48px; }
.features-header .intro-label { margin-bottom: 12px; }
.features-header h2,
.approach-h2 {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 800px;
}
.features-header h2 em,
.approach-h2 em { font-style: italic; color: var(--tnc-blue); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.feature-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s;
}
.feature-item:hover {
  border-color: var(--tnc-blue);
  box-shadow: 0 8px 32px rgba(2, 62, 132, 0.06);
}
.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(2, 62, 132, 0.1);
  color: var(--tnc-blue);
  display: grid;
  place-items: center;
}
.feature-body h3 {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.feature-body p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* Benefits — dark TNC-blue background */
.service-benefits {
  background: var(--tnc-blue);
  color: white;
}
.benefits-header { margin-bottom: 48px; }
.benefits-header .intro-label { margin-bottom: 12px; }
.benefits-header h2 {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 32px;
}
.benefit-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.benefit-card h3 {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.benefit-card p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
}

/* Other services teaser */
.other-services { background: var(--surface); border-top: 1px solid var(--border); }
.other-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 32px;
}
.other-service-card {
  background: var(--bg);
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.2s;
}
.other-service-card:hover {
  background: var(--tnc-blue);
  color: white;
}
.other-service-card:hover .num,
.other-service-card:hover .card-arrow { color: white; }
.other-service-card .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--tnc-blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.other-service-card .card-arrow {
  color: var(--tnc-blue);
  transition: color 0.2s;
}

/* Service Page Responsive */
@media (max-width: 1024px) {
  .problem-grid { grid-template-columns: 1fr; gap: 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1024px) {
  .promises-grid { grid-template-columns: 1fr; }
  .promise { border-right: none; border-bottom: 1px solid var(--border); }
  .promise:last-child { border-bottom: none; }
  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .quote-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .menu { display: none; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { flex-direction: column; gap: 16px; align-items: flex-start; }
  .avatar-wrap { width: 96px; height: 96px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .section-spacer { padding: 56px 20px; }
  .hero-content { padding: 60px 20px 40px; }
  .brand-logo { height: 36px; }
  .feature-block-single { padding: 32px; }
}
