/* ============================================================
   FINCIUS — REDESIGN DEMO
   Stylesheet v1.0
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* ============================================================
   ROOT VARIABLES
   ============================================================ */
:root {
  --navy:          #050947;
  --navy-alt:      #080B4F;
  --navy-light:    #0D1260;
  --navy-muted:    rgba(5, 9, 71, 0.07);
  --orange:        #D84A1B;
  --orange-alt:    #E3541A;
  --orange-hover:  #BF4018;
  --orange-light:  rgba(216, 74, 27, 0.10);
  --white:         #FFFFFF;
  --bg-soft:       #F7F8FA;
  --bg-light:      #F3F5F8;
  --text-main:     #1D2433;
  --text-muted:    #667085;
  --border:        #E5E7EB;
  --border-light:  #F0F2F5;

  --shadow-xs:  0 1px 3px rgba(5, 9, 71, 0.06);
  --shadow-sm:  0 2px 8px rgba(5, 9, 71, 0.08);
  --shadow-md:  0 4px 20px rgba(5, 9, 71, 0.10);
  --shadow-lg:  0 8px 40px rgba(5, 9, 71, 0.13);
  --shadow-xl:  0 16px 60px rgba(5, 9, 71, 0.16);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1200px;
  --container-px: 24px;

  --transition: 0.22s ease;
  --transition-slow: 0.38s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-main);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }

p {
  color: var(--text-muted);
  line-height: 1.75;
}

.text-navy    { color: var(--navy); }
.text-orange  { color: var(--orange); }
.text-muted   { color: var(--text-muted); }

em {
  font-style: italic;
  color: var(--orange);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section {
  padding: 88px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-lg {
  padding: 112px 0;
}

.section-alt {
  background: var(--bg-soft);
}

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

.section-navy {
  background: var(--navy);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.0625rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(216, 74, 27, 0.30);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-sm {
  font-size: 0.875rem;
  padding: 10px 20px;
}

.btn-lg {
  font-size: 1rem;
  padding: 17px 34px;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo img {
  height: 68px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-list a {
  display: block;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--navy);
  background: var(--bg-soft);
}

.nav-list a.active {
  font-weight: 600;
}

.header-cta {
  margin-left: 16px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.menu-toggle:hover {
  background: var(--bg-soft);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 24px;
  overflow-y: auto;
  border-top: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}

.mobile-nav-list a {
  display: block;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-main);
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-list a:hover {
  background: var(--bg-soft);
  color: var(--navy);
}

.mobile-nav .btn {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.hero {
  background: var(--white);
  padding: 80px 0 72px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(5,9,71,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
}

.hero-sub {
  font-size: 1.0625rem;
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-main);
}

.trust-item svg {
  color: var(--orange);
  flex-shrink: 0;
}

/* Hero Visual — Dashboard mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-bg-shape {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 360px;
  height: 360px;
  background: var(--bg-light);
  border-radius: 50%;
  z-index: 0;
}

.dashboard-card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 28px;
  width: 100%;
  max-width: 400px;
  border: 1px solid var(--border);
}

.dc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.dc-title {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.dc-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}

.dc-badge.green {
  background: #E8F5E9;
  color: #2E7D32;
}

.dc-badge.orange {
  background: var(--orange-light);
  color: var(--orange);
}

.dc-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.dc-metric {
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.dc-metric-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 6px;
}

.dc-metric-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 700;
}

.dc-metric-value.highlight {
  color: var(--orange);
}

.dc-chart {
  margin-bottom: 20px;
}

.dc-chart-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 500;
}

.dc-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
}

.dc-bar {
  flex: 1;
  background: var(--bg-light);
  border-radius: 4px 4px 0 0;
  transition: background var(--transition);
}

.dc-bar.active {
  background: var(--navy);
}

.dc-bar:nth-child(1) { height: 45%; }
.dc-bar:nth-child(2) { height: 62%; }
.dc-bar:nth-child(3) { height: 53%; }
.dc-bar:nth-child(4) { height: 78%; }
.dc-bar:nth-child(5) { height: 66%; }
.dc-bar:nth-child(6) { height: 91%; }
.dc-bar:nth-child(7) { height: 84%; }
.dc-bar:nth-child(7).active { background: var(--orange); }

.dc-status-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dc-status-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
}

.dc-status-name {
  font-weight: 500;
  color: var(--text-main);
}

.dc-status-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
}

.dc-status-tag.done {
  background: #E8F5E9;
  color: #2E7D32;
}

.dc-status-tag.pending {
  background: var(--orange-light);
  color: var(--orange);
}

.dc-disclaimer {
  margin-top: 14px;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  opacity: 0.7;
}

.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  z-index: 2;
}

.floating-card.card-1 {
  bottom: -24px;
  left: -40px;
}

.floating-card.card-2 {
  top: -24px;
  right: -32px;
}

.fc-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fc-icon.navy { background: var(--navy); color: var(--white); }
.fc-icon.orange { background: var(--orange-light); color: var(--orange); }

.fc-content .fc-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 2px;
}

.fc-content .fc-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background var(--transition);
}

.service-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card:hover::before {
  background: var(--orange);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--navy-muted);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 20px;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--orange-light);
  color: var(--orange);
}

.service-card h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 18px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  transition: gap var(--transition), color var(--transition);
}

.service-link:hover {
  color: var(--orange);
  gap: 10px;
}

/* ============================================================
   WHY FINCIUS
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.why-content .section-label {
  display: block;
  margin-bottom: 12px;
}

.why-content h2 {
  margin-bottom: 20px;
}

.why-content > p {
  margin-bottom: 36px;
  font-size: 1.0625rem;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-item {
  display: flex;
  gap: 16px;
}

.why-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange-light);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-item-content h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--navy);
}

.why-item-content p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.why-visual {
  position: relative;
}

.why-stats-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: var(--white);
}

.wsc-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.wsc-logo-mark {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wsc-name {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0.9;
}

.wsc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.wsc-stat-value {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1;
}

.wsc-stat-value.wsc-stat-word {
  font-size: 1.125rem;
  font-style: italic;
  opacity: 0.92;
}

.wsc-stat-label {
  font-size: 0.8125rem;
  opacity: 0.65;
  font-weight: 400;
}

.wsc-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 24px;
}

.wsc-quote {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-style: italic;
  opacity: 0.88;
  line-height: 1.6;
}

.wsc-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  opacity: 0.6;
  margin-top: 8px;
}

.why-accent-card {
  position: absolute;
  bottom: -24px;
  right: -32px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  max-width: 220px;
}

.wac-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.wac-label {
  font-size: 0.8125rem;
  opacity: 0.88;
  line-height: 1.4;
}

/* ============================================================
   FOR WHOM
   ============================================================ */
.whom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.whom-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all var(--transition-slow);
  text-align: center;
}

.whom-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--navy);
  transform: translateY(-3px);
}

.whom-icon {
  width: 56px;
  height: 56px;
  background: var(--navy-muted);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin: 0 auto 16px;
  transition: all var(--transition);
}

.whom-card:hover .whom-icon {
  background: var(--navy);
  color: var(--white);
}

.whom-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.whom-card p {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-number {
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 20px;
  border: 3px solid var(--bg-soft);
  box-shadow: var(--shadow-sm);
}

.process-step:last-child .process-number {
  background: var(--orange);
}

.process-step h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-section {
  background: var(--bg-soft);
}

.team-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.team-content .section-label {
  display: block;
  margin-bottom: 12px;
}

.team-content h2 {
  margin-bottom: 20px;
}

.team-content > p {
  font-size: 1.0625rem;
  margin-bottom: 32px;
}

.team-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.team-avatar {
  width: 60px;
  height: 60px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  flex-shrink: 0;
}

.team-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}

.team-role {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.team-values {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.team-value {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-main);
}

.team-value svg {
  color: var(--orange);
  flex-shrink: 0;
}

.team-visual-side {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.team-visual-side::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.team-quote {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.team-quote::before {
  content: '\201C';
  font-size: 4rem;
  line-height: 1;
  color: rgba(255,255,255,0.2);
  font-family: var(--font-heading);
  display: block;
  margin-bottom: -16px;
}

.team-author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.team-author-avatar {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}

.team-author-name {
  font-size: 0.9375rem;
  font-weight: 600;
}

.team-author-title {
  font-size: 0.8125rem;
  opacity: 0.65;
}

.team-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

.th-item {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 16px;
}

.th-value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--white);
}

.th-value span {
  color: var(--orange-alt);
}

.th-value.th-word {
  font-size: 1rem;
  font-style: italic;
  opacity: 0.88;
}

.th-label {
  font-size: 0.8125rem;
  opacity: 0.6;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--navy);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: rgba(216, 74, 27, 0.08);
  border-radius: 50%;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}

.cta-inner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-inner p {
  color: rgba(255,255,255,0.72);
  font-size: 1.0625rem;
  margin-bottom: 36px;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.cta-note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1;
}

.footer-logo-text .accent {
  color: var(--orange-alt);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--orange);
  color: var(--white);
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: var(--white);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fc-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.fc-item svg {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.fc-item span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ============================================================
   DIENSTEN — INTRO TRUST BLOCK
   ============================================================ */
.diensten-intro {
  padding: 40px 0 44px;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}

.diensten-intro-inner {
  max-width: 780px;
  border-left: 3px solid var(--orange);
  padding-left: 24px;
}

.diensten-intro-lead {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 10px;
}

.diensten-intro-sub {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================================
   DIENSTEN PAGE — PAGE HERO
   ============================================================ */
.page-hero {
  background: var(--bg-soft);
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  max-width: 720px;
}

.page-hero .section-label {
  display: block;
  margin-bottom: 14px;
}

.page-hero h1 {
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.page-hero .btn {
  margin-right: 12px;
}

/* ============================================================
   DIENSTEN — SERVICE DETAIL CARDS
   ============================================================ */
.dienst-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-light);
}

.dienst-section:last-of-type {
  border-bottom: none;
}

.dienst-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}

.dienst-sidebar {
  position: sticky;
  top: 96px;
}

.dienst-icon-block {
  width: 64px;
  height: 64px;
  background: var(--navy-muted);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 20px;
}

.dienst-sidebar h3 {
  font-size: 1.375rem;
  margin-bottom: 10px;
}

.dienst-sidebar .dienst-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 100px;
}

.dienst-body h4 {
  font-size: 1.0625rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.dienst-body > p {
  font-size: 1rem;
  margin-bottom: 24px;
  line-height: 1.75;
}

.dienst-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.dienst-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.df-check {
  width: 20px;
  height: 20px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.dienst-feature span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.5;
}

/* ============================================================
   EXPECTATIONS SECTION (DIENSTEN)
   ============================================================ */
.expectations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.exp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition-slow);
}

.exp-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.exp-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin: 0 auto 16px;
}

.exp-card h4 {
  font-size: 0.9375rem;
  margin-bottom: 8px;
}

.exp-card p {
  font-size: 0.8125rem;
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .whom-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .expectations-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual { order: -1; }
  .dashboard-card { max-width: 100%; }
  .floating-card { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-accent-card { display: none; }
  .team-inner { grid-template-columns: 1fr; gap: 48px; }
  .dienst-inner { grid-template-columns: 1fr; gap: 32px; }
  .dienst-sidebar { position: static; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-lg { padding: 72px 0; }

  .header-inner { height: 72px; }
  .site-logo img { height: 48px; }

  .header-cta,
  .site-nav > .nav-list { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: block; }
  .mobile-nav { top: 72px; }

  .hero { padding: 56px 0 48px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-trust { gap: 14px 20px; }

  .services-grid { grid-template-columns: 1fr; }
  .whom-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .dienst-features { grid-template-columns: 1fr; }
  .expectations-grid { grid-template-columns: 1fr 1fr; }

  .wsc-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  :root { --container-px: 16px; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.625rem; }

  .site-logo img { height: 42px; }

  .whom-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .expectations-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: 12px; }
}

/* ============================================================
   WHY TRUST CARD (replaces navy wsc-* card)
   ============================================================ */
.why-trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 36px 32px;
  position: relative;
}

.why-trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 32px;
  width: 48px;
  height: 3px;
  background: var(--orange);
  border-radius: 0 0 3px 3px;
}

.wtc-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.wtc-logo-mark {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wtc-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.wtc-subtitle {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.wtc-trust-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  list-style: none;
}

.wtc-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-main);
}

.wtc-check {
  width: 22px;
  height: 22px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wtc-divider {
  height: 1px;
  background: var(--border-light);
  margin-bottom: 24px;
}

.wtc-quote {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 18px;
}

.wtc-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wtc-avatar {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.wtc-author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

.wtc-author-title {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================================
   PROCESS STEPS — CARD STYLE
   ============================================================ */
.process-section-bg {
  background: var(--bg-soft);
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 20px 28px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition-slow), transform var(--transition-slow);
}

.process-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* Hide connecting line — cards make it redundant */
.process-grid::before {
  display: none;
}

/* ============================================================
   DIENSTEN PAGE — SUBNAV (replaces inline styles)
   ============================================================ */
.diensten-subnav {
  border-bottom: 1px solid var(--border);
}

.diensten-subnav-inner {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.diensten-subnav-list {
  display: flex;
  gap: 4px;
  padding: 16px 0;
  white-space: nowrap;
  list-style: none;
}

.diensten-subnav-link {
  display: inline-block;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-main);
  border: 1px solid var(--border);
  transition: all var(--transition);
  text-decoration: none;
}

.diensten-subnav-link:hover,
.diensten-subnav-link.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
