/* ============================================================
   IT AND ME CONSULTING — Design System
   Palette: #0F172A | #F8FAFC | #6366F1 | #10B981 | #334155
   Font: Inter (Google Fonts)
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #F8FAFC;
  color: #334155;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- CSS Variables ---- */
:root {
  --navy:   #0F172A;
  --white:  #F8FAFC;
  --indigo: #6366F1;
  --green:  #10B981;
  --slate:  #334155;
  --muted:  #64748B;
  --border: #E2E8F0;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(15,23,42,.08);
  --shadow-lg: 0 8px 40px rgba(15,23,42,.14);
  --transition: 200ms ease;
  --max-w: 1200px;
}

/* ---- Typography ---- */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; color: var(--navy); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.2; color: var(--navy); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; color: var(--navy); }
h4 { font-size: 1rem; font-weight: 600; color: var(--navy); }
p { color: var(--slate); }
.lead { font-size: 1.125rem; line-height: 1.7; color: var(--slate); }
.muted { color: var(--muted); font-size: .9rem; }

/* ---- Layout ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 1.75rem; border-radius: 8px;
  font-weight: 600; font-size: 1rem; cursor: pointer;
  border: 2px solid transparent; transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--indigo); color: #fff;
  box-shadow: 0 4px 16px rgba(99,102,241,.35);
}
.btn-primary:hover { background: #4f46e5; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(99,102,241,.45); }
.btn-secondary {
  background: transparent; color: var(--navy);
  border-color: var(--border);
}
.btn-secondary:hover { border-color: var(--indigo); color: var(--indigo); }
.btn-outline-white {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-sm { padding: .625rem 1.25rem; font-size: .9rem; }
.btn-lg { padding: 1.1rem 2.25rem; font-size: 1.1rem; }

/* ---- Navigation ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(248,250,252,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(15,23,42,.08); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem;
}
.nav-logo {
  display: flex; align-items: center; gap: .75rem;
  font-weight: 800; font-size: 1.15rem; color: var(--navy);
}
.logo-icon {
  width: 36px; height: 36px; background: var(--indigo); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-icon svg { width: 20px; height: 20px; }
.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-link {
  padding: .5rem .875rem; border-radius: 6px; font-size: .95rem;
  font-weight: 500; color: var(--slate); transition: all var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--indigo); background: rgba(99,102,241,.08); }
.nav-cta { margin-left: .5rem; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: .5rem; border: none; background: none;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--transition); }
.mobile-menu {
  display: none; flex-direction: column; gap: .25rem;
  padding: 1rem 1.5rem 1.5rem; border-top: 1px solid var(--border);
  background: rgba(248,250,252,.98);
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { padding: .75rem 1rem; }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: .5rem; }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1e293b 60%, #0f2445 100%);
  color: #fff; padding: 10rem 0 6rem; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(99,102,241,.2) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(16,185,129,.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(99,102,241,.2); border: 1px solid rgba(99,102,241,.4);
  color: #a5b4fc; padding: .375rem 1rem; border-radius: 100px;
  font-size: .85rem; font-weight: 500; margin-bottom: 1.5rem;
}
.hero-badge-dot { width: 6px; height: 6px; background: #10B981; border-radius: 50%; }
.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero h1 span { color: #818cf8; }
.hero .lead { color: #cbd5e1; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-proof {
  display: flex; gap: 2rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1);
}
.hero-proof-item { display: flex; flex-direction: column; }
.hero-proof-num { font-size: 1.5rem; font-weight: 800; color: #fff; }
.hero-proof-label { font-size: .8rem; color: #94a3b8; }
.hero-visual {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-visual-header {
  display: flex; align-items: center; gap: .5rem; margin-bottom: 1.5rem;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #f87171; }
.dot-yellow { background: #fbbf24; }
.dot-green { background: #34d399; }
.flow-step {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,.07); border-radius: 10px;
  padding: 1rem 1.25rem; margin-bottom: .75rem;
  border: 1px solid rgba(255,255,255,.08);
  transition: all var(--transition);
}
.flow-step:hover { background: rgba(255,255,255,.12); border-color: rgba(99,102,241,.4); }
.flow-step-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem;
}
.flow-step-icon.indigo { background: rgba(99,102,241,.25); }
.flow-step-icon.green  { background: rgba(16,185,129,.25); }
.flow-step-icon.purple { background: rgba(139,92,246,.25); }
.flow-step-text { flex: 1; }
.flow-step-title { font-size: .9rem; font-weight: 600; color: #e2e8f0; }
.flow-step-sub { font-size: .78rem; color: #94a3b8; }
.flow-step-badge {
  font-size: .72rem; font-weight: 600; padding: .25rem .65rem;
  border-radius: 100px; background: rgba(16,185,129,.2); color: #6ee7b7;
}

/* ---- Section Headers ---- */
.section-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .8rem; font-weight: 600; color: var(--indigo);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: .75rem;
}
.section-tag::before { content: ''; width: 16px; height: 2px; background: var(--indigo); border-radius: 2px; }
.section-header { max-width: 640px; }
.section-header.centered { max-width: 640px; margin: 0 auto; text-align: center; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; }

/* ---- Cards ---- */
.card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  transition: all var(--transition); box-shadow: var(--shadow);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: rgba(99,102,241,.2); }
.card-icon {
  width: 48px; height: 48px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 1rem;
}
.card-icon.indigo { background: rgba(99,102,241,.1); }
.card-icon.green  { background: rgba(16,185,129,.1); }
.card-icon.blue   { background: rgba(59,130,246,.1); }
.card-icon.orange { background: rgba(249,115,22,.1); }
.card-icon.purple { background: rgba(139,92,246,.1); }
.card-icon.rose   { background: rgba(244,63,94,.1); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .95rem; line-height: 1.65; }

/* ---- Stats Bar ---- */
.stats-bar {
  background: var(--navy); color: #fff; padding: 3rem 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.stat-value { font-size: 2.5rem; font-weight: 800; color: #fff; margin-bottom: .25rem; }
.stat-value span { color: var(--indigo); }
.stat-label { font-size: .9rem; color: #94a3b8; }

/* ---- Process Steps ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; position: relative; }
.step {
  text-align: center; padding: 2rem 1.5rem;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  position: relative;
}
.step-num {
  width: 48px; height: 48px; border-radius: 50%; background: var(--indigo);
  color: #fff; font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
}
.step-connector {
  display: flex; align-items: center; gap: .5rem;
  position: absolute; right: -1.25rem; top: 50%; transform: translateY(-50%);
  color: var(--indigo); font-size: .875rem; font-weight: 600; z-index: 2;
}

/* ---- Impact Cards ---- */
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.impact-card {
  background: linear-gradient(135deg, var(--navy) 0%, #1e293b 100%);
  color: #fff; border-radius: var(--radius); padding: 1.75rem; text-align: center;
  border: 1px solid rgba(255,255,255,.06);
  transition: all var(--transition);
}
.impact-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(15,23,42,.25); }
.impact-value { font-size: 2rem; font-weight: 800; color: var(--green); margin-bottom: .25rem; }
.impact-label { font-size: .9rem; color: #cbd5e1; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--indigo) 0%, #4f46e5 100%);
  border-radius: 20px; padding: 4rem 3rem; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(255,255,255,.1) 0%, transparent 60%);
}
.cta-banner h2 { color: #fff; margin-bottom: 1rem; position: relative; }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 2rem; font-size: 1.05rem; position: relative; }
.cta-banner .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-white { background: #fff; color: var(--indigo); font-weight: 700; }
.btn-white:hover { background: #f1f5f9; transform: translateY(-1px); }

/* ---- Solutions Page ---- */
.solution-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: all var(--transition); box-shadow: var(--shadow);
}
.solution-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.solution-card-header {
  padding: 2rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 1.25rem;
}
.solution-card-body { padding: 1.75rem 2rem; }
.solution-card-body ul { display: flex; flex-direction: column; gap: .6rem; }
.solution-card-body li {
  display: flex; align-items: flex-start; gap: .625rem;
  font-size: .95rem; color: var(--slate);
}
.solution-card-body li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: .05em; }
.solution-card-footer { padding: 1.25rem 2rem; background: var(--white); border-top: 1px solid var(--border); }
.tag {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .3rem .75rem; border-radius: 100px; font-size: .78rem; font-weight: 600;
}
.tag-indigo { background: rgba(99,102,241,.1); color: var(--indigo); }
.tag-green  { background: rgba(16,185,129,.1);  color: #059669; }
.tag-blue   { background: rgba(59,130,246,.1);  color: #2563eb; }
.tag-orange { background: rgba(249,115,22,.1);  color: #ea580c; }
.tag-purple { background: rgba(139,92,246,.1);  color: #7c3aed; }

/* ---- Case Studies ---- */
.case-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: all var(--transition);
}
.case-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.case-card-header { padding: 1.75rem 1.75rem 1.25rem; }
.case-card-sector {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .78rem; font-weight: 600; color: var(--indigo);
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: .875rem;
}
.case-card-kpis {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem;
  padding: 1.25rem 1.75rem; background: var(--white);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.kpi { text-align: center; }
.kpi-value { font-size: 1.5rem; font-weight: 800; color: var(--green); }
.kpi-label { font-size: .75rem; color: var(--muted); margin-top: .15rem; }
.case-card-body { padding: 1.5rem 1.75rem; }
.testimonial-quote {
  font-style: italic; color: var(--slate); font-size: .95rem; line-height: 1.6;
  border-left: 3px solid var(--indigo); padding-left: 1rem; margin: 1rem 0;
}
.testimonial-author { font-size: .85rem; color: var(--muted); font-weight: 500; }

/* ---- About Page ---- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.value-card {
  padding: 1.5rem; border: 1px solid var(--border); border-radius: var(--radius);
  background: #fff;
}
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.team-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; text-align: center; transition: all var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo) 0%, #4f46e5 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 2rem auto 1rem; font-size: 2rem; color: #fff; font-weight: 700;
}
.team-card-body { padding: 0 1.5rem 1.75rem; }
.team-name { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .25rem; }
.team-role { font-size: .85rem; color: var(--indigo); font-weight: 500; margin-bottom: .75rem; }
.team-bio { font-size: .875rem; color: var(--muted); line-height: 1.6; }

/* ---- Blog ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: all var(--transition); box-shadow: var(--shadow);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card-img {
  height: 180px; background: linear-gradient(135deg, var(--navy) 0%, #1e293b 100%);
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
.blog-card-body { padding: 1.5rem; }
.blog-meta { display: flex; gap: .75rem; align-items: center; margin-bottom: .75rem; }
.blog-date, .blog-read { font-size: .78rem; color: var(--muted); }
.blog-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.blog-card p { font-size: .9rem; color: var(--muted); line-height: 1.6; }
.blog-card-footer { padding: 1rem 1.5rem; border-top: 1px solid var(--border); }
.read-more { font-size: .875rem; font-weight: 600; color: var(--indigo); display: flex; align-items: center; gap: .375rem; }
.read-more:hover { gap: .625rem; }

/* ---- Lead Magnet ---- */
.lead-magnet {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1px solid #bbf7d0; border-radius: 16px; padding: 3rem;
  display: flex; align-items: center; gap: 3rem;
}
.lead-magnet-icon { font-size: 4rem; flex-shrink: 0; }
.lead-magnet h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.lead-magnet p { color: var(--muted); margin-bottom: 1.25rem; }
.lead-magnet-form { display: flex; gap: .75rem; }
.lead-magnet-form input {
  flex: 1; padding: .75rem 1rem; border: 1.5px solid var(--border);
  border-radius: 8px; font-size: .95rem; font-family: inherit;
  transition: border-color var(--transition);
}
.lead-magnet-form input:focus { outline: none; border-color: var(--indigo); }

/* ---- Contact / Forms ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 3rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: .9rem; font-weight: 500; color: var(--navy);
  margin-bottom: .5rem;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .875rem 1rem; border: 1.5px solid var(--border);
  border-radius: 8px; font-size: .95rem; font-family: inherit; color: var(--navy);
  background: #fff; transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(99,102,241,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ---- FAQ ---- */
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  margin-bottom: .75rem; background: #fff;
}
.faq-question {
  width: 100%; padding: 1.25rem 1.5rem; text-align: left; background: none;
  border: none; cursor: pointer; font-size: 1rem; font-weight: 600; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: inherit; transition: background var(--transition);
}
.faq-question:hover { background: var(--white); }
.faq-question svg { flex-shrink: 0; transition: transform var(--transition); }
.faq-question.open svg { transform: rotate(180deg); }
.faq-answer {
  padding: 0 1.5rem; max-height: 0; overflow: hidden;
  transition: all .3s ease; color: var(--muted); font-size: .95rem; line-height: 1.7;
}
.faq-answer.open { max-height: 300px; padding: 0 1.5rem 1.25rem; }

/* ---- Contact Info ---- */
.contact-info-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem; border: 1px solid var(--border); border-radius: var(--radius);
  background: #fff; margin-bottom: .75rem;
}
.contact-info-icon {
  width: 40px; height: 40px; border-radius: 8px; background: rgba(99,102,241,.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem;
}
.contact-info-text strong { display: block; font-size: .9rem; color: var(--navy); margin-bottom: .15rem; }
.contact-info-text span { font-size: .875rem; color: var(--muted); }

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .85rem; color: var(--muted); margin-bottom: 1.5rem; flex-wrap: wrap;
}
.breadcrumb a { color: var(--indigo); }
.breadcrumb span { color: var(--muted); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1e293b 100%);
  color: #fff; padding: 8rem 0 4rem;
}
.page-hero h1 { color: #fff; margin-bottom: 1rem; }
.page-hero .lead { color: #cbd5e1; max-width: 600px; }

/* ---- Footer ---- */
.footer {
  background: var(--navy); color: #94a3b8; padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 3rem;
}
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer-logo span { color: #fff; font-weight: 800; font-size: 1.05rem; }
.footer-tagline { font-size: .9rem; line-height: 1.65; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .75rem; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; font-size: .9rem;
  transition: all var(--transition); color: #94a3b8;
}
.social-link:hover { background: var(--indigo); color: #fff; border-color: var(--indigo); }
.footer-heading { font-size: .8rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .9rem; transition: color var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: .82rem;
}
.footer-bottom a { color: #94a3b8; }
.footer-bottom a:hover { color: #fff; }

/* ---- Cookie Banner ---- */
.cookie-banner {
  position: fixed; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; z-index: 999;
  background: var(--navy); color: #e2e8f0; border-radius: 12px;
  padding: 1.25rem 1.5rem; box-shadow: 0 8px 40px rgba(0,0,0,.3);
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  border: 1px solid rgba(255,255,255,.1); max-width: 900px; margin: 0 auto;
}
.cookie-banner p { font-size: .875rem; flex: 1; min-width: 200px; }
.cookie-banner p a { color: #818cf8; text-decoration: underline; }
.cookie-actions { display: flex; gap: .75rem; flex-shrink: 0; }
.cookie-banner.hidden { display: none; }

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s ease both; }
.fade-up-1 { animation-delay: .1s; }
.fade-up-2 { animation-delay: .2s; }
.fade-up-3 { animation-delay: .3s; }
.fade-up-4 { animation-delay: .4s; }

/* ---- Utilities ---- */
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.pt-2 { padding-top: 1rem; }
.divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
.bg-white { background: #fff; }
.bg-light { background: var(--white); }
.bg-navy { background: var(--navy); }
.rounded { border-radius: var(--radius); }
.full-width { width: 100%; }
.italic { font-style: italic; }
.color-indigo { color: var(--indigo); }
.color-green { color: var(--green); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .grid-4, .impact-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 480px; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .grid-2, .grid-3, .steps, .blog-grid, .team-grid, .values-grid, .contact-grid { grid-template-columns: 1fr; }
  .impact-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .lead-magnet { flex-direction: column; gap: 1.5rem; }
  .lead-magnet-form { flex-direction: column; }
  .case-card-kpis { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .hero-proof { gap: 1.25rem; }
  .cta-banner { padding: 2.5rem 1.5rem; }
}

@media (max-width: 480px) {
  .stats-grid, .impact-grid, .case-card-kpis { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .cookie-banner { left: .75rem; right: .75rem; bottom: .75rem; }
}

/* ---- Focus / Accessibility ---- */
:focus-visible {
  outline: 2px solid var(--indigo); outline-offset: 3px; border-radius: 4px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---- Print ---- */
@media print {
  .nav, .cookie-banner, .footer { display: none; }
  .hero { padding-top: 2rem; }
}
