/* ============================================================
   TILL DERANECK – Personal Branding Website
   Design System & Styles
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  /* Colors */
  --navy:         #0B1E3D;
  --navy-mid:     #122545;
  --navy-light:   #1A3055;
  --gold:         #C8A44A;
  --gold-light:   #E8C97A;
  --gold-pale:    #F5E9CA;
  --white:        #FFFFFF;
  --off-white:    #F8F9FB;
  --gray-100:     #F1F5F9;
  --gray-200:     #E2E8F0;
  --gray-400:     #94A3B8;
  --gray-600:     #64748B;
  --gray-800:     #1E293B;
  --text:         #1E293B;
  --text-muted:   #64748B;

  /* Typography */
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', -apple-system, sans-serif;

  /* Spacing */
  --section-py:   6rem;
  --container:    1200px;

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(11,30,61,.08);
  --shadow-md:    0 8px 24px rgba(11,30,61,.12);
  --shadow-lg:    0 16px 48px rgba(11,30,61,.16);
  --shadow-xl:    0 24px 64px rgba(11,30,61,.20);

  /* Radii */
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    20px;
  --radius-xl:    28px;

  /* Transitions */
  --ease:         cubic-bezier(.4,0,.2,1);
  --dur-fast:     150ms;
  --dur-base:     300ms;
  --dur-slow:     500ms;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Utilities ─────────────────────────────────────────────── */
.container {
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
}

.section { padding-block: var(--section-py); }
.bg-light { background: var(--off-white); }

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(24px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(200,164,74,.5); }
  70%  { box-shadow: 0 0 0 14px rgba(200,164,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,164,74,0); }
}
@keyframes barGrow {
  from { height: 0; }
  to   { height: var(--h); }
}

/* Scroll reveal classes */
.reveal-up, .reveal-right, .fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-right { transform: translateX(40px); }

.reveal-up.visible,
.reveal-right.visible,
.fade-in.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ── Shared Buttons ────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: .95rem;
  border-radius: var(--radius-sm);
  transition: background var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: .95rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--navy);
  transition: all var(--dur-base) var(--ease);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--dur-base) var(--ease);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,164,74,.4);
}
.btn-gold.btn-large { padding: 1.15rem 2.4rem; font-size: 1.05rem; }

/* ── Section Typography ─────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-eyebrow.light { color: var(--gold-light); }
.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
.section-heading.light { color: var(--white); }

.heading-accent { color: var(--gold); }
.heading-accent-light { color: var(--gold-light); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-top: .75rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .section-sub { margin-inline: auto; }

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: padding var(--dur-base) var(--ease),
              background var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
}
.navbar.scrolled {
  padding: .75rem 0;
  background: rgba(11,30,61,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}

.nav-container {
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: baseline;
  gap: .15rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
}
.brand-first { color: var(--white); }
.brand-last  { color: var(--gold); }
.brand-dot   { color: var(--gold); font-size: 1.6rem; line-height: 0; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: color var(--dur-fast) var(--ease);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--dur-base) var(--ease);
  border-radius: 2px;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.3rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .88rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: all var(--dur-base) var(--ease);
}
.nav-cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200,164,74,.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--dur-base) var(--ease);
}
.nav-toggle.open .toggle-bar:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open .toggle-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open .toggle-bar:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(200,164,74,.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(26,48,85,.8) 0%, transparent 60%),
    linear-gradient(160deg, #0B1E3D 0%, #122545 50%, #0B1E3D 100%);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .4;
}

.hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-block: 10rem 6rem;
}

/* Hero text */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: none;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-ring 2s ease-in-out infinite;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.headline-accent {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--dur-base) var(--ease);
}
.btn-hero-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,164,74,.45);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 2rem;
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  transition: all var(--dur-base) var(--ease);
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .9rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 99px;
  font-size: .82rem;
  color: rgba(255,255,255,.8);
  backdrop-filter: blur(4px);
}
.trust-pill i { color: var(--gold); font-size: .8rem; }

/* Hero visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.profile-frame {
  position: relative;
  width: 360px;
  max-width: 100%;
  animation: float 5s ease-in-out infinite;
}

.profile-img-wrapper {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 3px solid rgba(200,164,74,.3);
  background: var(--navy-mid);
  box-shadow: var(--shadow-xl), 0 0 0 8px rgba(200,164,74,.08);
}
.profile-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.profile-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  gap: .75rem;
  color: rgba(255,255,255,.35);
  background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy-light) 100%);
}
.profile-placeholder i   { font-size: 5rem; }
.profile-placeholder p   { font-size: 1rem; font-weight: 600; }
.profile-placeholder small { font-size: .75rem; opacity: .6; }

/* Profile badges */
.profile-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem 1rem;
  background: rgba(11,30,61,.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(200,164,74,.3);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}
.badge-top    { top: 1.5rem; right: -2rem; }
.badge-bottom { bottom: 2rem; left: -2rem; }

.badge-icon {
  width: 36px; height: 36px;
  background: rgba(200,164,74,.15);
  border-radius: 8px;
  display: grid; place-items: center;
  color: var(--gold);
  font-size: 1rem;
}
.badge-text { display: flex; flex-direction: column; }
.badge-text strong { font-size: .85rem; color: var(--white); line-height: 1.2; }
.badge-text span   { font-size: .72rem; color: rgba(255,255,255,.55); }

/* Hero stats float */
.hero-stats-float {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.75rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
}
.stat-float { text-align: center; }
.stat-float-num   { display: block; font-size: 1.5rem; font-weight: 800; color: var(--gold-light); line-height: 1; }
.stat-float-label { display: block; font-size: .72rem; color: rgba(255,255,255,.55); margin-top: .2rem; text-transform: uppercase; letter-spacing: .06em; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.15); }

/* Scroll hint */
.hero-scroll-hint {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  padding-bottom: 2rem;
  margin-inline: auto;
  width: fit-content;
  color: rgba(255,255,255,.45);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color var(--dur-base) var(--ease);
}
.hero-scroll-hint:hover { color: rgba(255,255,255,.75); }
.scroll-line {
  width: 1.5px;
  height: 48px;
  background: rgba(255,255,255,.2);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.scroll-dot {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════════════════════ */
.trust-bar {
  padding-block: 2.5rem;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.trust-bar-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.trust-bar-item { text-align: center; }
.counter {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.counter-label {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .35rem;
}
.trust-bar-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.1);
}

/* ══════════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.about-img-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--gray-100);
}
.about-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.about-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  gap: .75rem;
  color: var(--gray-600);
  background: linear-gradient(160deg, var(--gray-100) 0%, var(--gray-200) 100%);
}
.about-placeholder i     { font-size: 5rem; color: var(--gray-400); }
.about-placeholder small { font-size: .78rem; color: var(--gray-400); }

.about-credentials-card {
  margin-top: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.cred-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1rem 1.25rem;
}
.cred-item i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: .15rem;
  flex-shrink: 0;
}
.cred-item strong { display: block; font-size: .9rem; color: var(--navy); }
.cred-item span   { font-size: .8rem; color: var(--text-muted); }
.cred-divider { height: 1px; background: var(--gray-200); }

/* About content */
.about-p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-top: 1.25rem;
}
.about-p strong { color: var(--navy); }

.about-passions { margin-top: 2rem; margin-bottom: 2rem; }
.passions-title {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: .85rem;
}
.passions-grid { display: flex; flex-wrap: wrap; gap: .75rem; }
.passion-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  background: var(--gold-pale);
  border-radius: 99px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid rgba(200,164,74,.3);
}
.passion-chip i { color: var(--gold); font-size: .85rem; }

/* ══════════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--dur-slow) var(--ease),
              box-shadow var(--dur-slow) var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-featured {
  background: var(--navy);
  border-color: rgba(200,164,74,.3);
  box-shadow: var(--shadow-xl);
}
.service-featured:hover { box-shadow: 0 24px 60px rgba(11,30,61,.35); }

.service-badge-label {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  padding: .3rem .8rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: 99px;
}

.service-icon-wrap {
  width: 52px; height: 52px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  color: var(--gold);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.featured-icon { background: rgba(200,164,74,.15); }

.service-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
}
.service-featured .service-title { color: var(--white); }

.service-desc { font-size: .93rem; color: var(--text-muted); line-height: 1.65; }
.service-featured .service-desc { color: rgba(255,255,255,.65); }

.service-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-top: .25rem;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: var(--gray-600);
}
.service-featured .service-list li { color: rgba(255,255,255,.7); }
.service-list li i { color: var(--gold); font-size: .78rem; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════
   INVEST4KIDS
══════════════════════════════════════════════════════════════ */
.invest4kids-section {
  position: relative;
  padding-block: var(--section-py);
  overflow: hidden;
}
.i4k-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0F2847 60%, var(--navy-mid) 100%);
}
.i4k-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(200,164,74,.1) 0%, transparent 60%);
}

.i4k-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.i4k-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-top: 1.25rem;
  margin-bottom: 2rem;
}

.i4k-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.i4k-feature {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
}
.i4k-feature-icon {
  width: 42px; height: 42px;
  background: rgba(200,164,74,.15);
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  color: var(--gold-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.i4k-feature-text h4 { font-size: .93rem; font-weight: 700; color: var(--white); margin-bottom: .25rem; }
.i4k-feature-text p  { font-size: .83rem; color: rgba(255,255,255,.55); line-height: 1.5; }

/* Growth Chart */
.growth-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(12px);
}
.growth-card-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.75rem;
}
.growth-card-header span:first-child {
  font-weight: 700;
  font-size: .95rem;
  color: var(--white);
}
.growth-subtitle {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin-top: .25rem;
}

.growth-chart {
  display: flex;
  gap: .6rem;
  height: 180px;
}
.chart-y-labels {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  font-size: .7rem;
  color: rgba(255,255,255,.35);
  text-align: right;
  flex-shrink: 0;
}

.chart-bars-wrap {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: .4rem;
}
.chart-bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  height: 100%;
  justify-content: flex-end;
}
.chart-bar-col {
  width: 100%;
  height: var(--h);
  background: rgba(200,164,74,.35);
  border-radius: 4px 4px 0 0;
  transition: height 1.2s var(--ease);
  position: relative;
}
.chart-bar-highlight .chart-bar-col {
  background: var(--gold);
  box-shadow: 0 0 20px rgba(200,164,74,.4);
}
.chart-bar-col.animated { animation: barGrow 1.2s var(--ease) both; }
.chart-bar-label {
  font-size: .68rem;
  color: rgba(255,255,255,.45);
  white-space: nowrap;
}

.chart-disclaimer {
  font-size: .7rem;
  color: rgba(255,255,255,.3);
  margin-top: 1rem;
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
}
.process-arrow {
  color: var(--gold);
  font-size: 1.2rem;
  opacity: .5;
  justify-self: center;
}

.process-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-slow) var(--ease),
              box-shadow var(--dur-slow) var(--ease);
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.process-step::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease);
}
.process-step:hover::before { transform: scaleX(1); }

.step-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 900;
  color: var(--gold);
  opacity: .12;
  line-height: 1;
  margin-bottom: .5rem;
  letter-spacing: -2px;
}
.step-icon-wrap {
  width: 56px; height: 56px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  margin-inline: auto;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.step-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .75rem;
}
.step-desc { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════════
   WHY ME
══════════════════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-slow) var(--ease),
              box-shadow var(--dur-slow) var(--ease),
              border-color var(--dur-base) var(--ease);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.why-icon {
  width: 50px; height: 50px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}
.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
}
.why-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding-block: 4rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,164,74,.15), transparent 70%);
  pointer-events: none;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.cta-banner-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: .6rem;
}
.cta-banner-text p { font-size: .95rem; color: rgba(255,255,255,.65); max-width: 520px; }

/* ══════════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 1.25rem;
  margin-bottom: 2.25rem;
}

.contact-channels { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.contact-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--dur-base) var(--ease);
}
.contact-channel:hover {
  border-color: var(--gold);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.channel-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.channel-text { flex: 1; }
.channel-text strong { display: block; font-size: .9rem; color: var(--navy); }
.channel-text span   { font-size: .83rem; color: var(--text-muted); }
.channel-arrow { font-size: .8rem; color: var(--gray-400); }

.contact-promise {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  color: var(--text-muted);
  padding: 1rem;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
}
.contact-promise i { color: var(--gold); }

/* Contact form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: .8rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: .93rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
  outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,164,74,.15);
}
.form-field textarea { resize: vertical; }

.form-privacy-row {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .83rem;
  color: var(--text-muted);
}
.form-privacy-row input[type="checkbox"] {
  width: 16px; height: 16px;
  margin-top: 1px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.form-privacy-row a { color: var(--gold); text-decoration: underline; }

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: 1rem;
  background: var(--navy);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: all var(--dur-base) var(--ease);
  cursor: pointer;
  border: none;
}
.btn-submit:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-submit:active { transform: translateY(0); }
.btn-submit.loading .submit-text::after { content: '…'; }

.form-success {
  display: none;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.25rem;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  border-radius: var(--radius-sm);
  color: #047857;
  font-weight: 600;
  font-size: .9rem;
}
.form-success.show { display: flex; }
.form-success i { font-size: 1.2rem; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: var(--white);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}

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

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: .75rem; }
.social-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  display: grid; place-items: center;
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  transition: all var(--dur-base) var(--ease);
}
.social-icon:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-links-col h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-links-col a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--dur-fast) var(--ease);
}
.footer-links-col a:hover { color: var(--gold-light); }

.footer-bottom { padding-top: 2rem; text-align: center; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-legal-note { margin-top: .4rem; max-width: 680px; margin-inline: auto; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-frame { max-width: 360px; aspect-ratio: 1/1; margin-inline: auto; }
  .about-image-col { text-align: center; }

  .services-grid { grid-template-columns: 1fr; }
  .i4k-grid      { grid-template-columns: 1fr; }
  .process-grid  { grid-template-columns: 1fr; gap: 1rem; }
  .process-arrow { display: none; }
  .why-grid      { grid-template-columns: 1fr 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 4rem; }

  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 80vw; max-width: 340px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 3rem;
    gap: 1.75rem;
    transition: right var(--dur-slow) var(--ease);
    box-shadow: -8px 0 32px rgba(0,0,0,.3);
    z-index: 999;
  }
  .nav-menu.open { right: 0; }
  .nav-link { font-size: 1.1rem; color: rgba(255,255,255,.8); }
  .nav-cta-btn { width: 100%; justify-content: center; padding: .85rem 1.5rem; }
  .nav-toggle { display: flex; z-index: 1001; }

  /* Mobile overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 998;
  }
  .nav-overlay.active { display: block; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-block: 8rem 4rem;
    text-align: center;
  }
  .hero-sub { margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }

  .hero-visual { order: -1; }
  .profile-frame { width: 240px; }
  .badge-top    { right: -1rem; }
  .badge-bottom { left: -1rem; }

  .hero-stats-float { flex-wrap: wrap; justify-content: center; }

  .trust-bar-grid { gap: 1.25rem; }
  .trust-bar-divider { display: none; }

  .hero-scroll-hint { display: none; }

  .why-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
  .form-row-2 { grid-template-columns: 1fr; }
  .i4k-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .btn-hero-primary, .btn-hero-ghost { width: 100%; justify-content: center; }
  .profile-frame { width: 200px; }
}

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar        { width: 6px; }
::-webkit-scrollbar-track  { background: var(--navy); }
::-webkit-scrollbar-thumb  { background: var(--gold); border-radius: 3px; }


/* ══════════════════════════════════════════════════════════════
   VISION & MISSION SECTION
══════════════════════════════════════════════════════════════ */
.vision-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: var(--white);
}
.vision-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  background: linear-gradient(135deg, var(--navy) 0%, #122843 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.vision-card {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.vision-icon {
  width: 48px;
  height: 48px;
  background: rgba(200,164,74,.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.vision-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
}
.vision-heading {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #fff;
  line-height: 1.4;
  margin: .25rem 0;
}
.vision-body {
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
}
.vision-divider {
  width: 1px;
  background: rgba(200,164,74,.25);
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .vision-grid {
    grid-template-columns: 1fr;
  }
  .vision-divider {
    width: auto;
    height: 1px;
    margin: 0 2rem;
  }
  .vision-card { padding: 2.25rem 1.75rem; }
}


/* ══════════════════════════════════════════════════════════════
   MODALS – Impressum & Datenschutz
══════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11,30,61,.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(11,30,61,.25);
  width: 100%;
  max-width: 720px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  transform: translateY(20px);
  transition: transform .25s ease;
}
.modal-overlay.active .modal-box {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--gray-100);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--navy);
  transition: background .15s;
}
.modal-close:hover { background: var(--gray-200); }
.modal-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 1.75rem;
  padding-right: 2.5rem;
}
.modal-section { margin-bottom: 1.5rem; }
.modal-section h3 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--gold);
  margin-bottom: .5rem;
}
.modal-section p,
.modal-section address {
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: normal;
}
.modal-section a { color: var(--gold); text-decoration: none; }
.modal-section a:hover { text-decoration: underline; }
.modal-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 1.5rem 0;
}

@media (max-width: 600px) {
  .modal-box { padding: 1.75rem 1.25rem; }
  .modal-title { font-size: 1.4rem; }
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }
