@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy:        #0c2340;
  --blue:        #1a56db;
  --blue-hover:  #1344b0;
  --blue-50:     #eff6ff;
  --blue-100:    #dbeafe;
  --blue-200:    #bfdbfe;

  --text:        #0f172a;
  --text-sec:    #475569;
  --text-muted:  #94a3b8;

  --bg:          #f7f7f6;
  --bg-alt:      #eceef3;
  --bg-blue:     #e3edf8;

  --border:      #d8dce6;

  --shadow-sm:   0 1px 4px rgba(0,0,0,.06);
  --shadow:      0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.10);
  --shadow-blue: 0 6px 24px rgba(26,86,219,.18);

  --r:   12px;
  --r-sm: 8px;
  --r-lg: 20px;
  --t:   all .25s ease;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family:'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
a { color:inherit; text-decoration:none; }
img { max-width:100%; display:block; }
ul { list-style:none; }

/* ─── NAVBAR ───────────────────────────────────────────────────── */
.navbar {
  position:sticky; top:0; z-index:100;
  background:rgba(247,247,246,.97);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
  transition:var(--t);
}
.navbar.scrolled { box-shadow:var(--shadow); }

.nav-container {
  max-width:1200px; margin:0 auto; padding:0 24px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  height:72px;
  gap:16px;
}

.nav-group { display:flex; align-items:center; gap:8px; }
.nav-left  { justify-content:flex-end; }
.nav-right { justify-content:flex-start; }

.nav-link {
  font-size:.875rem; font-weight:500; color:var(--text-sec);
  padding:8px 14px; border-radius:var(--r-sm);
  transition:var(--t); white-space:nowrap;
}
.nav-link:hover, .nav-link.active { color:var(--blue); background:var(--blue-50); }

.nav-link-cta {
  color:var(--blue); background:var(--blue-50);
  border:1.5px solid var(--blue-200);
}
.nav-link-cta:hover {
  background:var(--blue); color:#fff;
  border-color:var(--blue);
}

.logo-link { display:flex; align-items:center; justify-content:center; }
.logo {
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
}
.logo-mark {
  width:38px; height:38px;
  background:var(--blue);
  border-radius:9px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; font-weight:800; color:#fff;
  letter-spacing:-.5px;
  flex-shrink:0;
}
.logo-text { display:flex; flex-direction:column; line-height:1.1; }
.logo-name { font-size:1.05rem; font-weight:700; color:var(--navy); letter-spacing:-.3px; }
.logo-sub  { font-size:.65rem; font-weight:500; color:var(--text-muted); letter-spacing:.6px; text-transform:uppercase; }

.nav-logo-img {
  height:42px; width:auto; display:block;
  object-fit:contain;
}
.footer-logo-img {
  height:38px; width:auto; display:block;
  object-fit:contain;
  filter:brightness(0) invert(1);
  opacity:.9;
}

.nav-toggle {
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; cursor:pointer; padding:4px;
  grid-column:3; justify-self:end;
}
.nav-toggle span {
  display:block; width:22px; height:2px;
  background:var(--text); border-radius:2px;
  transition:var(--t);
}
.nav-toggle.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity:0; }
.nav-toggle.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display:none; flex-direction:column; gap:2px;
  padding:12px 24px 20px; border-top:1px solid var(--border);
  background:var(--bg);
}
.nav-mobile.open { display:flex; }
.nav-mobile-link {
  font-size:.95rem; font-weight:500; color:var(--text-sec);
  padding:12px 16px; border-radius:var(--r-sm);
  transition:var(--t);
}
.nav-mobile-link:hover { color:var(--blue); background:var(--blue-50); }

/* ─── FOOTER ───────────────────────────────────────────────────── */
footer {
  background:var(--navy);
  color:rgba(255,255,255,.7);
  padding:60px 24px 32px;
  margin-top:auto;
}
.footer-inner {
  max-width:1200px; margin:0 auto;
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px;
  padding-bottom:48px;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.footer-brand p { margin-top:16px; font-size:.875rem; line-height:1.7; max-width:260px; }

.footer-col h4 {
  font-size:.8rem; font-weight:600; letter-spacing:.8px;
  text-transform:uppercase; color:rgba(255,255,255,.45);
  margin-bottom:16px;
}
.footer-col a, .footer-col p {
  display:block; font-size:.875rem; margin-bottom:10px;
  color:rgba(255,255,255,.65); transition:var(--t);
}
.footer-col a:hover { color:#fff; }

.footer-bottom {
  max-width:1200px; margin:0 auto;
  padding-top:28px;
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:12px;
}
.footer-bottom p { font-size:.8rem; }
.footer-bottom .footer-legal { display:flex; gap:24px; }
.footer-bottom .footer-legal a { font-size:.8rem; color:rgba(255,255,255,.5); transition:var(--t); }
.footer-bottom .footer-legal a:hover { color:#fff; }

/* ─── HERO ─────────────────────────────────────────────────────── */
.hero {
  position:relative; overflow:hidden;
  background:var(--bg-alt);
  padding:100px 24px 90px;
  text-align:center;
}
.hero::before {
  content:'';
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 0%, rgba(26,86,219,.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 100%, rgba(26,86,219,.05) 0%, transparent 70%);
  pointer-events:none;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--blue-50); border:1px solid var(--blue-100);
  color:var(--blue); border-radius:100px;
  padding:6px 16px; font-size:.8rem; font-weight:600;
  letter-spacing:.2px; margin-bottom:28px;
}
.hero-badge::before {
  content:''; width:6px; height:6px;
  background:var(--blue); border-radius:50%;
  animation:pulse 2s infinite;
}
@keyframes pulse {
  0%,100%{ opacity:1; transform:scale(1); }
  50%{ opacity:.4; transform:scale(1.4); }
}
.hero h1 {
  font-size:clamp(2.2rem, 5vw, 3.8rem);
  font-weight:800; line-height:1.15;
  color:var(--navy); letter-spacing:-.03em;
  max-width:820px; margin:0 auto 24px;
}
.hero h1 span { color:var(--blue); }
.hero p {
  font-size:clamp(1rem, 2vw, 1.2rem);
  color:var(--text-sec); max-width:580px; margin:0 auto 40px;
  font-weight:400;
}
.hero-actions { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:14px 28px; border-radius:var(--r-sm);
  font-size:.9rem; font-weight:600; cursor:pointer;
  transition:var(--t); border:2px solid transparent;
  white-space:nowrap;
}
.btn-primary {
  background:var(--blue); color:#fff;
  box-shadow:var(--shadow-blue);
}
.btn-primary:hover { background:var(--blue-hover); transform:translateY(-1px); box-shadow:0 8px 28px rgba(26,86,219,.25); }
.btn-outline {
  background:transparent; color:var(--blue);
  border-color:var(--blue-200);
}
.btn-outline:hover { background:var(--blue-50); border-color:var(--blue); }
.btn-lg { padding:16px 36px; font-size:1rem; border-radius:var(--r); }
.btn-white { background:#fff; color:var(--navy); box-shadow:var(--shadow); }
.btn-white:hover { background:var(--blue-50); transform:translateY(-1px); }

/* ─── SECTION HELPERS ──────────────────────────────────────────── */
.section { padding:88px 24px; }
.section-alt { background:var(--bg-alt); }
.section-blue { background:var(--bg-blue); }
.section-dark { background:var(--navy); color:#fff; }

.container { max-width:1200px; margin:0 auto; }

.section-tag {
  display:inline-block;
  font-size:.75rem; font-weight:700; letter-spacing:1px; text-transform:uppercase;
  color:var(--blue); margin-bottom:12px;
}
.section-tag-light { color:rgba(255,255,255,.6); }

h2.section-title {
  font-size:clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight:800; color:var(--navy); letter-spacing:-.03em;
  line-height:1.2; margin-bottom:16px;
}
.section-dark h2.section-title { color:#fff; }
.section-subtitle {
  font-size:1.05rem; color:var(--text-sec); max-width:560px;
  line-height:1.7;
}
.section-dark .section-subtitle { color:rgba(255,255,255,.65); }
.text-center { text-align:center; }
.text-center .section-subtitle { margin:0 auto; }

/* ─── CARDS ─────────────────────────────────────────────────────── */
.cards-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:24px; margin-top:48px;
}
.card {
  background:#fff; border-radius:var(--r-lg);
  border:1px solid var(--border);
  padding:32px; transition:var(--t);
}
.card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); border-color:var(--blue-200); }
.card-icon {
  width:52px; height:52px; border-radius:var(--r);
  background:var(--blue-50); color:var(--blue);
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem; margin-bottom:20px;
}
.card h3 { font-size:1.1rem; font-weight:700; margin-bottom:10px; color:var(--navy); }
.card p  { font-size:.9rem; color:var(--text-sec); line-height:1.7; }

/* ─── STATS BAR ─────────────────────────────────────────────────── */
.stats-bar {
  background:var(--navy); color:#fff;
  padding:40px 24px;
}
.stats-inner {
  max-width:1200px; margin:0 auto;
  display:grid; grid-template-columns:repeat(4, minmax(0,1fr));
  gap:24px; text-align:center;
}
.stat-num {
  font-size:2.2rem; font-weight:800; color:#fff;
  line-height:1; margin-bottom:6px;
}
.stat-num span { color:var(--blue-200); }
.stat-label { font-size:.8rem; color:rgba(255,255,255,.55); font-weight:500; letter-spacing:.4px; text-transform:uppercase; overflow-wrap:break-word; }

/* ─── PAGE HEADER ───────────────────────────────────────────────── */
.page-header {
  background:var(--bg-alt);
  padding:72px 24px 64px;
  border-bottom:1px solid var(--border);
}
.page-header .container { display:flex; flex-direction:column; }
.breadcrumb {
  display:flex; align-items:center; gap:8px;
  font-size:.8rem; color:var(--text-muted); margin-bottom:20px;
}
.breadcrumb a { color:var(--blue); }
.breadcrumb::before { content:none; }
.breadcrumb-sep { color:var(--border); }
.page-header h1 {
  font-size:clamp(2rem, 4vw, 3rem); font-weight:800;
  color:var(--navy); letter-spacing:-.03em; line-height:1.2;
  margin-bottom:16px;
}
.page-header p { font-size:1.05rem; color:var(--text-sec); max-width:580px; line-height:1.7; }

/* ─── SERVICES PAGE ─────────────────────────────────────────────── */
.services-grid {
  display:grid; grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
  gap:2px; background:var(--border); border:1px solid var(--border);
  border-radius:var(--r-lg); overflow:hidden; margin-top:48px;
}
.service-item {
  background:var(--bg); padding:36px 32px;
  display:flex; gap:20px; transition:var(--t);
}
.service-item:hover { background:var(--blue-50); }
.service-item:hover .si-icon { background:var(--blue); color:#fff; }
.si-icon {
  width:48px; height:48px; flex-shrink:0;
  border-radius:var(--r-sm); background:var(--blue-50);
  color:var(--blue); display:flex; align-items:center; justify-content:center;
  font-size:1.2rem; transition:var(--t);
}
.si-body h3 { font-size:1rem; font-weight:700; color:var(--navy); margin-bottom:6px; }
.si-body p  { font-size:.875rem; color:var(--text-sec); line-height:1.6; }

/* ─── JOBS PAGE ─────────────────────────────────────────────────── */
.job-card {
  background:var(--bg); border:1px solid var(--border);
  border-radius:var(--r-lg); overflow:hidden;
  margin-bottom:32px; transition:var(--t);
}
.job-card:hover { box-shadow:var(--shadow-lg); border-color:var(--blue-200); }
.job-header {
  padding:32px; border-bottom:1px solid var(--border);
  display:flex; justify-content:space-between; align-items:flex-start;
  flex-wrap:wrap; gap:16px;
}
.job-header-left { }
.job-tag {
  display:inline-block; padding:4px 12px; border-radius:100px;
  font-size:.75rem; font-weight:600; letter-spacing:.3px;
  margin-bottom:12px;
}
.tag-blue { background:var(--blue-50); color:var(--blue); border:1px solid var(--blue-100); }
.tag-green{ background:#f0fdf4; color:#16a34a; border:1px solid #bbf7d0; }
.job-header h2 { font-size:1.35rem; font-weight:700; color:var(--navy); margin-bottom:8px; }
.job-header p  { font-size:.9rem; color:var(--text-sec); }
.job-meta {
  display:flex; flex-direction:column; gap:8px; text-align:right;
}
.job-meta-item {
  display:flex; align-items:center; gap:6px;
  font-size:.8rem; color:var(--text-muted);
  justify-content:flex-end;
}
.job-body {
  padding:32px;
  display:grid; grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:32px;
}
.job-section h4 {
  font-size:.8rem; font-weight:700; letter-spacing:.6px; text-transform:uppercase;
  color:var(--text-muted); margin-bottom:14px;
}
.job-section ul { display:flex; flex-direction:column; gap:8px; }
.job-section ul li {
  font-size:.9rem; color:var(--text-sec);
  display:flex; align-items:flex-start; gap:10px;
}
.job-section ul li::before {
  content:''; width:16px; height:16px; flex-shrink:0; margin-top:2px;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231a56db'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z' clip-rule='evenodd'/%3E%3C/svg%3E") center/contain no-repeat;
}
.job-footer {
  padding:24px 32px;
  background:var(--bg-alt);
  border-top:1px solid var(--border);
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px;
}
.job-footer p { font-size:.85rem; color:var(--text-muted); }

/* ─── TEAM PAGE ─────────────────────────────────────────────────── */
.team-grid {
  display:grid; grid-template-columns:repeat(auto-fit, minmax(360px, 1fr));
  gap:32px; margin-top:48px;
}
.team-card {
  background:#fff; border:1px solid var(--border);
  border-radius:var(--r-lg); overflow:hidden; transition:var(--t);
  display:flex; flex-direction:column;
}
.team-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-4px); }

/* avatar strip */
.team-avatar {
  background:var(--bg-blue);
  height:160px; display:flex; align-items:center; justify-content:center;
  border-bottom:1px solid var(--border); position:relative;
}
.avatar-initials {
  width:84px; height:84px; border-radius:50%;
  background:var(--blue); color:#fff;
  font-size:1.7rem; font-weight:700;
  display:flex; align-items:center; justify-content:center;
  letter-spacing:-1px;
  box-shadow:0 4px 16px rgba(26,86,219,.25);
}

/* main info */
.team-info { padding:28px 28px 0; }
.team-info h3 { font-size:1.25rem; font-weight:800; color:var(--navy); margin-bottom:4px; letter-spacing:-.02em; }
.team-role {
  font-size:.75rem; font-weight:700; color:var(--blue);
  text-transform:uppercase; letter-spacing:.7px; margin-bottom:0;
}

/* career timeline */
.career-list {
  display:flex; flex-direction:column; gap:0;
  padding:0 0 28px;
}
.career-list-label {
  font-size:.7rem; font-weight:700; letter-spacing:.9px; text-transform:uppercase;
  color:var(--text-muted); margin-bottom:14px;
}
.career-item {
  display:flex; align-items:stretch; gap:0;
  position:relative;
}
.career-item:not(:last-child)::after {
  content:'';
  position:absolute; left:46px; top:28px; bottom:-2px;
  width:1px; background:var(--border);
}
.career-year-wrap {
  width:92px; flex-shrink:0;
  display:flex; align-items:flex-start; padding-top:6px;
}
.career-year {
  font-size:.78rem; font-weight:700; color:var(--blue);
  background:var(--blue-50); border:1px solid var(--blue-100);
  border-radius:6px; padding:3px 8px; white-space:nowrap;
  letter-spacing:.2px;
}
.career-dot {
  width:8px; height:8px; border-radius:50%;
  background:var(--blue-200); border:2px solid var(--blue);
  flex-shrink:0; margin-top:9px; margin-right:12px;
  margin-left:-4px; position:relative; z-index:1;
}
.career-label {
  font-size:.875rem; color:var(--text-sec); font-weight:500;
  padding:6px 0 18px; line-height:1.4; flex:1;
}
.career-label strong { color:var(--navy); font-weight:600; display:block; font-size:.875rem; }
.career-label span   { font-size:.78rem; color:var(--text-muted); }

/* ─── DATEV PAGE ─────────────────────────────────────────────────── */
.datev-cards {
  display:grid; grid-template-columns:repeat(auto-fit, minmax(340px, 1fr));
  gap:32px; margin-top:48px;
}
.datev-card {
  border-radius:var(--r-lg); overflow:hidden;
  border:1px solid var(--border);
  transition:var(--t);
}
.datev-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-4px); }
.datev-card-top {
  padding:40px 36px; background:var(--navy); color:#fff;
  display:flex; flex-direction:column; align-items:flex-start; gap:16px;
}
.datev-card-icon {
  width:56px; height:56px; border-radius:var(--r);
  background:rgba(255,255,255,.12); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:1.5rem;
}
.datev-card-top h3 { font-size:1.3rem; font-weight:700; }
.datev-card-top p  { font-size:.875rem; color:rgba(255,255,255,.65); line-height:1.6; }
.datev-card-bottom {
  padding:28px 36px; background:var(--bg);
  display:flex; flex-direction:column; gap:16px;
}
.datev-hint { font-size:.8rem; color:var(--text-muted); display:flex; align-items:center; gap:6px; }
.datev-hint::before { content:'ℹ'; color:var(--blue); }

/* ─── KONTAKT PAGE ──────────────────────────────────────────────── */
.contact-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:40px; margin-top:48px;
}
.contact-info { display:flex; flex-direction:column; gap:24px; }
.contact-item {
  display:flex; gap:16px; padding:24px;
  background:#fff; border:1px solid var(--border); border-radius:var(--r);
  transition:var(--t);
}
.contact-item:hover { border-color:var(--blue-200); box-shadow:var(--shadow); }
.contact-item-icon {
  width:44px; height:44px; flex-shrink:0;
  border-radius:var(--r-sm); background:var(--blue-50); color:var(--blue);
  display:flex; align-items:center; justify-content:center; font-size:1.1rem;
}
.contact-item-body h4 { font-size:.9rem; font-weight:700; color:var(--navy); margin-bottom:4px; }
.contact-item-body p, .contact-item-body a {
  font-size:.875rem; color:var(--text-sec); line-height:1.6;
}
.contact-item-body a:hover { color:var(--blue); }

.contact-form-wrap {
  background:#fff; border:1px solid var(--border);
  border-radius:var(--r-lg); padding:36px;
}
.contact-form-wrap h3 { font-size:1.2rem; font-weight:700; color:var(--navy); margin-bottom:24px; }
.form-group { margin-bottom:20px; }
.form-group label { display:block; font-size:.85rem; font-weight:500; color:var(--text); margin-bottom:8px; }
.form-group input,
.form-group textarea,
.form-group select {
  width:100%; padding:12px 16px;
  border:1.5px solid var(--border); border-radius:var(--r-sm);
  font-size:.9rem; font-family:inherit; color:var(--text);
  background:#fff; transition:var(--t); outline:none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color:var(--blue); box-shadow:0 0 0 3px rgba(26,86,219,.08); }
.form-group textarea { resize:vertical; min-height:120px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-note { font-size:.8rem; color:var(--text-muted); margin-top:16px; }

/* ─── CERTIFICATES ──────────────────────────────────────────────── */
.certs-section {
  padding:64px 24px;
  border-top:1px solid var(--border);
  background:var(--bg-alt);
}
.certs-inner { max-width:1200px; margin:0 auto; }
.certs-label {
  text-align:center; font-size:.75rem; font-weight:600;
  letter-spacing:1px; text-transform:uppercase; color:var(--text-muted);
  margin-bottom:36px;
}
.certs-grid {
  display:grid; grid-template-columns:repeat(4, 1fr); gap:24px;
}
.cert-item {
  display:flex; flex-direction:column; align-items:center; text-align:center;
  gap:12px; padding:28px 20px;
  background:var(--bg); border:1px solid var(--border);
  border-radius:var(--r); transition:var(--t);
}
.cert-item:hover { border-color:var(--blue-200); box-shadow:var(--shadow); transform:translateY(-2px); }
.cert-icon {
  width:56px; height:56px; border-radius:var(--r);
  background:var(--blue-50); border:2px solid var(--blue-100);
  display:flex; align-items:center; justify-content:center; font-size:1.5rem;
}
.cert-name { font-size:.85rem; font-weight:700; color:var(--navy); line-height:1.3; }
.cert-body { font-size:.75rem; color:var(--text-muted); line-height:1.4; }

/* ─── CTA BAND ──────────────────────────────────────────────────── */
.cta-band {
  background:linear-gradient(135deg, var(--navy) 0%, #1a3d6e 100%);
  padding:80px 24px; text-align:center;
}
.cta-band h2 { font-size:clamp(1.6rem, 3.5vw, 2.4rem); font-weight:800; color:#fff; margin-bottom:16px; letter-spacing:-.03em; }
.cta-band p  { font-size:1.05rem; color:rgba(255,255,255,.65); max-width:520px; margin:0 auto 36px; }
.cta-band .btn-actions { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ─── IMPRESSUM / DATENSCHUTZ ───────────────────────────────────── */
.legal-content {
  max-width:820px; margin:0 auto;
  padding:72px 24px;
}
.legal-content h1 { font-size:2rem; font-weight:800; color:var(--navy); margin-bottom:8px; }
.legal-content .legal-date { font-size:.85rem; color:var(--text-muted); margin-bottom:48px; }
.legal-content h2 { font-size:1.1rem; font-weight:700; color:var(--navy); margin:36px 0 12px; }
.legal-content h3 { font-size:.95rem; font-weight:700; color:var(--navy); margin:24px 0 8px; }
.legal-content p, .legal-content li { font-size:.925rem; color:var(--text-sec); line-height:1.75; }
.legal-content ul { padding-left:20px; margin-bottom:16px; }
.legal-content ul li { list-style:disc; margin-bottom:4px; }
.legal-content a { color:var(--blue); }

/* ─── FEATURE LIST ──────────────────────────────────────────────── */
.feature-list { display:flex; flex-direction:column; gap:16px; }
.feature-item {
  display:flex; align-items:flex-start; gap:16px;
  padding:20px 24px; background:var(--bg);
  border:1px solid var(--border); border-radius:var(--r);
  transition:var(--t);
}
.feature-item:hover { border-color:var(--blue-200); }
.feature-check {
  width:24px; height:24px; flex-shrink:0; margin-top:1px;
  background:var(--blue); border-radius:50%;
  display:flex; align-items:center; justify-content:center; color:#fff; font-size:.7rem;
}
.feature-item h4 { font-size:.95rem; font-weight:600; color:var(--navy); margin-bottom:3px; }
.feature-item p  { font-size:.85rem; color:var(--text-sec); }

/* ─── ANIMATE ON SCROLL ─────────────────────────────────────────── */
.fade-in {
  opacity:0; transform:translateY(20px);
  transition:opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity:1; transform:translateY(0); }

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width:900px) {
  .footer-inner { grid-template-columns:1fr 1fr; }
  .stats-inner  { grid-template-columns:repeat(2, minmax(0,1fr)); }
  .contact-grid { grid-template-columns:1fr; }
  .certs-grid   { grid-template-columns:repeat(2,1fr) !important; }
  .contact-cards-grid { grid-template-columns:1fr 1fr !important; }
  .contact-cards-grid .contact-item[style*="span 2"] { grid-column:span 2 !important; }
}

@media (max-width:600px) {
  .contact-cards-grid { grid-template-columns:1fr !important; }
  .contact-cards-grid .contact-item[style*="span 2"] { grid-column:span 1 !important; }
}

@media (max-width:768px) {
  .nav-container { grid-template-columns:1fr auto auto; }
  .nav-group { display:none; }
  .nav-toggle { display:flex; }
  .nav-logo-wrap { grid-column:1; justify-self:start; }

  .hero { padding:64px 24px 56px; }
  .section { padding:64px 24px; }

  .form-row { grid-template-columns:1fr; }
  .job-body { grid-template-columns:1fr; }
  .job-header { flex-direction:column; }
  .job-meta { text-align:left; }
  .job-meta-item { justify-content:flex-start; }

  /* two-col grids → single col on mobile */
  .section > .container > div[style*="grid-template-columns:1fr 1fr"],
  .section > .container > div[style*="grid-template-columns: 1fr 1fr"] {
    display:block !important;
  }
  .section > .container > div[style*="grid-template-columns:1fr 1fr"] > div,
  .section > .container > div[style*="grid-template-columns: 1fr 1fr"] > div {
    margin-bottom:40px;
  }
}

@media (max-width:540px) {
  .footer-inner { grid-template-columns:1fr; }
  .stats-inner  { grid-template-columns:minmax(0,1fr) minmax(0,1fr); }
  .certs-grid   { grid-template-columns:1fr 1fr; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .footer-bottom .footer-legal { justify-content:center; }
}
