/* ============================================================
   SLIMS SOFTWARE — Utrecht, Netherlands
   Design: Dutch Editorial · Indigo + White · Fraunces + DM Sans
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400;1,9..144,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

:root {
  /* Dark palette */
  --void:      #08040f;
  --ink:       #100820;
  --deep:      #160c2e;
  --mid:       #1e1240;
  --surface:   #261852;
  --lift:      #2e1e60;

  /* Indigo accent */
  --indigo:    #6366f1;
  --indigo-l:  #818cf8;
  --indigo-xl: #a5b4fc;
  --indigo-g:  rgba(99,102,241,0.15);
  --indigo-b:  rgba(99,102,241,0.22);

  /* Violet warm */
  --violet:    #7c3aed;
  --violet-l:  #a78bfa;

  /* Light mode sections */
  --paper:     #fafafa;
  --paper-2:   #f4f3ff;
  --paper-3:   #ede9fe;
  --text-ink:  #0f0a1e;
  --text-sub:  #4c4470;
  --border-l:  #ddd6fe;

  /* Text */
  --white:     #ffffff;
  --t1:        #f0eeff;
  --t2:        #b5aee0;
  --t3:        #7068a8;
  --t4:        #3d3568;

  /* Misc */
  --r:         8px;
  --r-lg:      18px;
  --r-xl:      28px;
  --font-d:    'Fraunces', Georgia, serif;
  --font-b:    'DM Sans', system-ui, sans-serif;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-b);
  background: var(--ink);
  color: var(--t1);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-b); }

/* ── CONTAINER ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 36px; }
.section { padding: 108px 0; }

/* ── OVERLINE ── */
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--indigo-l);
  margin-bottom: 18px;
}
.tag::before {
  content: ''; display: block; width: 20px; height: 1px;
  background: var(--indigo-l); flex-shrink: 0;
}
.tag.dark { color: var(--violet); }
.tag.dark::before { background: var(--violet); }

/* ── DISPLAY TYPE ── */
.display {
  font-family: var(--font-d);
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 22px;
}
.display em { font-style: italic; color: var(--indigo-l); }
.display.dark { color: var(--text-ink); }
.display.dark em { color: var(--violet); }

.headline {
  font-family: var(--font-d);
  font-size: clamp(1.9rem, 3.8vw, 3.4rem);
  font-weight: 300; line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 18px;
}
.headline.dark { color: var(--text-ink); }
.headline em { font-style: italic; }
.headline.dark em { color: var(--violet); }

.body { font-size: 1.02rem; color: var(--t2); line-height: 1.8; }
.body.dark { color: var(--text-sub); }
.body.lg { font-size: 1.15rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-b); font-weight: 500; font-size: 0.88rem;
  padding: 13px 26px; border-radius: 50px; border: none;
  cursor: pointer; transition: all 0.22s var(--ease); white-space: nowrap;
}
.btn-primary {
  background: var(--indigo); color: var(--white);
}
.btn-primary:hover {
  background: var(--indigo-l);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(99,102,241,0.4);
}
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--t1);
}
.btn-ghost:hover {
  border-color: var(--indigo-l);
  color: var(--indigo-xl);
  background: var(--indigo-g);
}
.btn-dark {
  background: var(--text-ink);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}
.btn-outline-dark {
  background: transparent;
  border: 1px solid var(--border-l);
  color: var(--text-ink);
}
.btn-outline-dark:hover {
  border-color: var(--violet);
  color: var(--violet);
}
.btn-submit {
  width: 100%; background: var(--indigo); color: var(--white);
  font-weight: 600; font-size: 0.92rem;
  padding: 15px; border-radius: 50px; border: none;
  cursor: pointer; transition: all 0.22s var(--ease);
}
.btn-submit:hover {
  background: var(--indigo-l);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(99,102,241,0.4);
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 16px 0;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(8,4,15,0.94);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(99,102,241,0.12);
  padding: 10px 0;
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 36px;
  display: flex; align-items: center; height: 52px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-d); font-size: 1.25rem;
  font-weight: 600; color: var(--white); letter-spacing: -0.02em;
}
.logo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--indigo); flex-shrink: 0;
  box-shadow: 0 0 12px rgba(99,102,241,0.7);
}
.logo em { font-style: italic; color: var(--indigo-l); }

.nav-links {
  display: flex; align-items: center; gap: 36px; margin-left: auto;
}
.nav-links a {
  font-size: 0.84rem; font-weight: 500; color: var(--t2);
  transition: color 0.2s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--indigo-l);
}
.nav-cta { margin-left: 28px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--t1); border-radius: 2px; transition: all 0.2s; }
.mobile-menu {
  display: none; flex-direction: column;
  background: rgba(8,4,15,0.98);
  border-bottom: 1px solid rgba(99,102,241,0.15);
}
.mobile-menu a {
  font-size: 0.9rem; font-weight: 500; color: var(--t2);
  padding: 14px 36px; border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--white); }
.mobile-menu .btn { margin: 14px 36px 20px; justify-content: center; }
.mobile-menu.open { display: flex; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 140px 0 100px;
  background: var(--void);
  position: relative; overflow: hidden;
}

/* Ambient glow elements */
.hero-glow-1 {
  position: absolute; top: -160px; left: -160px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute; bottom: -80px; right: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; position: relative; z-index: 1;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--indigo-g); border: 1px solid var(--indigo-b);
  border-radius: 50px; padding: 6px 16px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
  color: var(--indigo-xl); margin-bottom: 28px;
}
.hero-kicker-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--indigo-l); animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1}50%{opacity:0.3} }

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 300; line-height: 1.04;
  letter-spacing: -0.03em; color: var(--white);
  margin-bottom: 26px;
}
.hero-title em { font-style: italic; color: var(--indigo-l); display: block; }
.hero-sub { font-size: 1.1rem; color: var(--t2); line-height: 1.78; max-width: 440px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 60px; }

.hero-proof { display: flex; align-items: center; gap: 20px; }
.hero-proof-sep { width: 1px; height: 28px; background: var(--t4); }
.hero-proof-text { font-size: 0.8rem; color: var(--t3); }
.hero-proof-text strong { color: var(--t2); }

/* Hero right — code card + floating chips */
.hero-visual { position: relative; }
.code-card {
  background: var(--deep);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.5);
}
.code-topbar {
  background: var(--mid);
  padding: 12px 18px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.code-dot { width: 10px; height: 10px; border-radius: 50%; }
.code-dot.r { background: #ff5f57; }
.code-dot.y { background: #febc2e; }
.code-dot.g { background: #28c840; }
.code-title { font-family: var(--font-b); font-size: 0.72rem; color: var(--t3); margin-left: auto; }
.code-body { padding: 24px 26px; font-family: 'Courier New', monospace; font-size: 0.82rem; line-height: 1.9; }
.c-dim { color: var(--t4); }
.c-key { color: var(--indigo-l); }
.c-fn  { color: #60a5fa; }
.c-str { color: #34d399; }
.c-num { color: #fb923c; }
.c-cm  { color: var(--t4); font-style: italic; }

.float-chip {
  position: absolute;
  background: rgba(14,8,32,0.92);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: var(--r);
  backdrop-filter: blur(12px);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 9px;
}
.chip-top { top: -18px; right: -18px; animation: chipFloat 5s ease-in-out infinite; }
.chip-bot { bottom: -18px; left: -18px; animation: chipFloat 5s ease-in-out infinite 2.5s; }
@keyframes chipFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.chip-icon { width: 28px; height: 28px; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.chip-icon.ind { background: var(--indigo-g); }
.chip-icon.grn { background: rgba(52,211,153,0.15); }
.chip-icon.ind i { color: var(--indigo-l); font-size: 0.85rem; }
.chip-icon.grn i { color: #34d399; font-size: 0.85rem; }
.chip-val { font-family: var(--font-d); font-size: 1rem; font-weight: 600; color: var(--white); }
.chip-lbl { font-size: 0.68rem; color: var(--t3); }

/* ── SERVICES ── */
.services-section { background: var(--paper); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 64px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--border-l);
  border-radius: var(--r-xl);
  padding: 38px 32px;
  transition: all 0.28s var(--ease);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: #c4b5fd;
  box-shadow: 0 20px 48px rgba(124,58,237,0.1);
}
.service-num {
  font-family: var(--font-d); font-size: 0.75rem;
  color: #c4b5fd; margin-bottom: 20px; font-style: italic;
}
.service-icon {
  width: 48px; height: 48px; border-radius: var(--r);
  background: var(--paper-2); border: 1px solid var(--paper-3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon i { color: var(--violet); font-size: 1.1rem; }
.service-card h3 {
  font-family: var(--font-d); font-size: 1.15rem; font-weight: 400;
  color: var(--text-ink); margin-bottom: 12px; letter-spacing: -0.01em;
}
.service-card p { font-size: 0.87rem; color: var(--text-sub); line-height: 1.72; }
.service-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.8rem; font-weight: 600; color: var(--violet);
  margin-top: 20px; transition: gap 0.2s;
}
.service-card:hover .service-link { gap: 9px; }

/* ── ABOUT / STORY ── */
.story-section { background: var(--void); position: relative; overflow: hidden; }
.story-section::before {
  content: 'Slims';
  position: absolute; bottom: -60px; right: -40px;
  font-family: var(--font-d); font-size: 18rem; font-weight: 300;
  color: rgba(99,102,241,0.04); line-height: 1; pointer-events: none;
  user-select: none; letter-spacing: -0.04em;
}
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-left .tag { margin-bottom: 20px; }
.story-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.s-num-box {
  background: var(--deep);
  border: 1px solid rgba(99,102,241,0.15);
  border-radius: var(--r-lg);
  padding: 24px 20px;
}
.s-num-box .big {
  font-family: var(--font-d); font-size: 2.4rem; font-weight: 300;
  color: var(--indigo-xl); letter-spacing: -0.02em; line-height: 1;
}
.s-num-box .lbl { font-size: 0.78rem; color: var(--t3); margin-top: 5px; }
.s-num-box.accent { background: var(--indigo); border-color: var(--indigo); }
.s-num-box.accent .big { color: var(--white); }
.s-num-box.accent .lbl { color: rgba(255,255,255,0.7); }

.story-right-text .body { margin-bottom: 20px; }
.story-points { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; }
.story-point {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--deep); border: 1px solid rgba(99,102,241,0.1);
  border-radius: var(--r); padding: 16px 18px;
}
.story-point-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--indigo-g); border: 1px solid var(--indigo-b);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.story-point-icon i { color: var(--indigo-xl); font-size: 0.8rem; }
.story-point h4 { font-weight: 600; font-size: 0.88rem; color: var(--t1); margin-bottom: 3px; }
.story-point p { font-size: 0.82rem; color: var(--t3); line-height: 1.55; }

/* ── PROCESS ── */
.process-section { background: var(--paper-2); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 64px;
  border: 1px solid var(--border-l); border-radius: var(--r-xl);
  overflow: hidden;
}
.p-step {
  padding: 36px 28px;
  border-right: 1px solid var(--border-l);
  transition: background 0.25s ease;
}
.p-step:last-child { border-right: none; }
.p-step:hover { background: var(--paper); }
.p-step-num {
  font-family: var(--font-d); font-size: 2.5rem; font-weight: 300;
  color: var(--border-l); letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 20px;
}
.p-step h4 {
  font-family: var(--font-d); font-size: 1rem; font-weight: 400;
  color: var(--text-ink); margin-bottom: 10px;
}
.p-step p { font-size: 0.84rem; color: var(--text-sub); line-height: 1.65; }

/* ── TECH STACK ── */
.tech-section { background: var(--void); }
.tech-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 48px; }
.tech-pill {
  display: flex; align-items: center; gap: 8px;
  background: var(--deep); border: 1px solid rgba(99,102,241,0.15);
  border-radius: 50px; padding: 10px 18px;
  font-size: 0.84rem; color: var(--t2); transition: all 0.2s;
}
.tech-pill:hover { border-color: var(--indigo-l); color: var(--indigo-xl); }
.tech-pill i { color: var(--indigo-l); font-size: 0.9rem; }

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--deep) 0%, #1a0e40 50%, var(--mid) 100%);
  padding: 108px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(99,102,241,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: var(--font-d); font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 300; letter-spacing: -0.02em; color: var(--white);
  margin-bottom: 18px; position: relative; z-index: 1;
}
.cta-section h2 em { font-style: italic; color: var(--indigo-xl); }
.cta-section p { font-size: 1rem; color: var(--t2); max-width: 480px; margin: 0 auto 40px; position: relative; z-index: 1; }
.cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── CONTACT ── */
.contact-section { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start; }
.contact-info h2 {
  font-family: var(--font-d); font-size: 2rem; font-weight: 300;
  letter-spacing: -0.02em; color: var(--text-ink); margin-bottom: 14px;
}
.contact-info .body { margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.c-detail {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--white); border: 1px solid var(--border-l);
  border-radius: var(--r); padding: 14px 16px;
}
.c-detail-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--paper-2); border: 1px solid var(--paper-3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.c-detail-icon i { color: var(--violet); font-size: 0.82rem; }
.c-lbl { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--violet); margin-bottom: 3px; }
.c-val { font-size: 0.86rem; color: var(--text-sub); line-height: 1.55; }
.c-val a { color: var(--text-sub); transition: color 0.2s; }
.c-val a:hover { color: var(--violet); }

.contact-form {
  background: var(--white); border: 1px solid var(--border-l);
  border-radius: var(--r-xl); padding: 40px;
}
.contact-form h3 {
  font-family: var(--font-d); font-size: 1.3rem; font-weight: 400;
  color: var(--text-ink); margin-bottom: 6px;
}
.contact-form .sub { font-size: 0.84rem; color: var(--text-sub); margin-bottom: 28px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.f-group label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-sub); }
.f-group input, .f-group select, .f-group textarea {
  border: 1.5px solid var(--border-l); border-radius: var(--r);
  padding: 11px 14px; font-family: var(--font-b); font-size: 0.88rem;
  color: var(--text-ink); outline: none; transition: border-color 0.2s;
  background: var(--paper); width: 100%;
}
.f-group input::placeholder, .f-group textarea::placeholder { color: #b5aee0; }
.f-group input:focus, .f-group select:focus, .f-group textarea:focus {
  border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}
.f-group textarea { resize: vertical; min-height: 96px; }
.f-note { font-size: 0.73rem; color: var(--text-sub); text-align: center; margin-top: 10px; }

/* ── FOOTER ── */
.footer { background: var(--void); border-top: 1px solid rgba(255,255,255,0.04); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; margin-bottom: 52px; }
.footer-brand p { font-size: 0.84rem; color: var(--t3); margin-top: 16px; max-width: 240px; line-height: 1.7; }
.footer-col h5 { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--t4); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 0.85rem; color: var(--t3); margin-bottom: 11px; transition: color 0.2s; }
.footer-col a:hover { color: var(--indigo-l); }
.footer-col span { display: block; font-size: 0.84rem; color: var(--t4); margin-bottom: 10px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.04);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.76rem; color: var(--t4); }
.footer-nl { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; color: var(--t4); }
.nl-flag { width: 22px; height: 15px; border-radius: 2px; overflow: hidden; display: flex; flex-direction: column; flex-shrink: 0; }
.nl-flag span { flex: 1; }
.nl-flag .nl-r { background: #AE1C28; }
.nl-flag .nl-w { background: #ffffff; }
.nl-flag .nl-b { background: #21468B; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.76rem; color: var(--t4); transition: color 0.2s; }
.footer-legal a:hover { color: var(--t3); }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--void);
  padding: 160px 0 88px;
  position: relative; overflow: hidden;
}
.ph-glow {
  position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.ph-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(99,102,241,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(99,102,241,0.04) 1px, transparent 1px);
  background-size: 72px 72px; pointer-events: none;
}
.ph-inner { position: relative; z-index: 1; max-width: 680px; }
.ph-inner h1 {
  font-family: var(--font-d); font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300; letter-spacing: -0.03em; line-height: 1.1;
  color: var(--white); margin-bottom: 18px;
}
.ph-inner h1 em { font-style: italic; color: var(--indigo-l); }
.ph-inner p { font-size: 1.05rem; color: var(--t2); line-height: 1.75; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps .p-step:nth-child(2) { border-right: none; }
  .process-steps .p-step:nth-child(3) { border-top: 1px solid var(--border-l); }
  .story-grid { grid-template-columns: 1fr; gap: 56px; }
  .story-numbers { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; border-radius: var(--r); }
  .process-steps .p-step { border-right: none; border-bottom: 1px solid var(--border-l); }
  .process-steps .p-step:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .f-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
