/* ─── HERO ─── */
.hero { padding-top: 64px; min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px 80px 40px;
  max-width: 620px; margin-left: auto;
}
.hero-tag { margin-bottom: 24px; }
.hero-h1 { font-size: clamp(40px, 4.5vw, 60px); font-weight: 700; line-height: 1.08; letter-spacing: -2px; color: var(--ink); }
.hero-h1 em { font-style: normal; color: var(--accent); }
.hero-sub { font-size: 16px; color: var(--ink2); margin-top: 20px; max-width: 420px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 20px; margin-top: 36px; flex-wrap: wrap; }
.hero-right {
  background: var(--bg2); border-left: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  padding: 80px 48px; position: relative; overflow: hidden;
}
.hero-right::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, oklch(0.95 0.04 252) 0%, transparent 70%);
}
.hero-cards { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 14px; width: 100%; max-width: 300px; }
.hero-cards-row { display: flex; gap: 14px; }

/* ─── SERVICES ─── */
.services { background: var(--white); border-top: 1px solid var(--border); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ─── PROCESS ─── */
.process { background: var(--bg); border-top: 1px solid var(--border); }
.process-steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; margin-top: 48px; }

/* ─── PRICING ─── */
.pricing { background: var(--white); border-top: 1px solid var(--border); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
  margin-bottom: 20px;
}
.extras-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.pricing-vat { font-family: var(--ff-mono); font-size: 11px; color: var(--ink3); margin-top: 28px; }

/* ─── PORTFOLIO ─── */
.portfolio { background: var(--bg); border-top: 1px solid var(--border); display: none; }
.portfolio.show { display: block; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }

/* ─── CONTACT ─── */
.contact { background: var(--bg-dark); border-top: 1px solid #1a1a18; }
.contact .label { color: #444; }
.contact .section-title { color: var(--white); }
.contact .section-title em { font-style: normal; color: var(--accent); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 48px; }
.contact-info p { font-size: 14.5px; color: #a8a8a3; line-height: 1.8; margin-top: 12px; }
.contact-details { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.cd-row .cd-lbl { font-family: var(--ff-mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: #888885; margin-bottom: 5px; }
.cd-row .cd-val { font-size: 14px; color: #c4c4be; }
.cd-row .cd-val a { transition: color 0.2s; }
.cd-row .cd-val a:hover { color: var(--accent); }

/* ─── FOOTER ─── */
footer {
  background: var(--bg-dark2); border-top: 1px solid #1a1a18;
  padding: 28px 0;
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.footer-logo { font-family: var(--ff-mono); font-size: 13px; font-weight: 700; letter-spacing: 1px; color: #333; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 12px; color: #333; transition: color 0.2s; }
.footer-links a:hover { color: #666; }
.footer-copy { font-family: var(--ff-mono); font-size: 11px; color: #2a2a28; }
