/* =====================================================================
   STUDIO MONO — Designer Portfolio Template
   Plain HTML5 + CSS3. No frameworks. Offline-ready (no external images).
   ---------------------------------------------------------------------
   Swiss / minimal aesthetic: huge type, strict grid, generous whitespace,
   one bold accent (electric blue). Every visual is a CSS gradient, inline
   SVG, or emoji — no .jpg / .png files anywhere.

   REBRAND TIP: edit the CSS variables in :root below. Swap --accent for
   your primary color and update --font-head / --font-body plus the Google
   Fonts <link> in each HTML file. Everything else cascades.
   ===================================================================== */

:root {
  /* --- Palette (edit these to rebrand) --- */
  --bg:      #fafafa;   /* page background          */
  --ink:     #111111;   /* near-black text / heads  */
  --accent:  #2b50ec;   /* electric blue (one bold accent) */
  --accent-dark: #1f3bc4;/* darker accent for hovers */
  --muted:   #888888;   /* secondary text           */
  --surface: #ffffff;   /* cards / panels           */
  --line:    #e7e7e7;   /* borders / dividers       */

  /* --- Fonts --- */
  --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* --- Shape & motion --- */
  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 1px 2px rgba(17,17,17,.04), 0 8px 30px rgba(17,17,17,.06);
  --shadow-lg: 0 24px 60px rgba(17,17,17,.12);
  --ease:      .4s cubic-bezier(.16,.84,.44,1);

  /* --- Layout --- */
  --maxw: 1200px;
  --gutter: 28px;
}

/* ---------------------------------------------------------------------
   RESET / BASE
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.04;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -.03em;
}

h1 { font-size: clamp(2.6rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h3 { font-size: 1.3rem; letter-spacing: -.02em; }

p { margin: 0 0 1rem; }

a { color: var(--accent); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--accent-dark); }

svg { max-width: 100%; display: block; }

ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--accent); color: #fff; }

/* ---------------------------------------------------------------------
   LAYOUT HELPERS
   --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: 110px 0; }
.section--soft { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--tight { padding: 72px 0; }

.section-head {
  max-width: 760px;
  margin: 0 0 64px;
}
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--accent);
  display: inline-block;
}

.lead { font-size: 1.18rem; color: var(--muted); max-width: 620px; }
.muted { color: var(--muted); }

/* ---------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .96rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
  letter-spacing: -.01em;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); color: #fff; }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.btn-light { background: #fff; color: var(--ink); border-color: transparent; }
.btn-light:hover { background: var(--bg); color: var(--ink); }

.btn-line { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-line:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ---------------------------------------------------------------------
   HEADER / NAV  (shared, identical IDs on every page)
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 250, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--ink);
  letter-spacing: -.03em;
}
.brand:hover { color: var(--ink); }
.brand .logo-mark {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--ink);
  display: grid; place-items: center;
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink);
  padding: 8px 15px;
  border-radius: 999px;
  transition: background var(--ease), color var(--ease);
}
.nav-links a:hover { background: rgba(17,17,17,.05); color: var(--ink); }
.nav-links a.active { color: var(--accent); font-weight: 600; }
.nav-cta { margin-left: 10px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------------------
   HERO (home) — huge type, asymmetric grid
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 104px;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 56px;
  align-items: center;
}
.hero-name {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 26px;
}
.hero-name .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(43,80,236,.18); }
.hero h1 { margin-bottom: 24px; }
.hero h1 .accent { color: var(--accent); }
.hero h1 .outline {
  -webkit-text-stroke: 2px var(--ink);
  color: transparent;
}
.hero .lead { margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 42px; }
.hero-meta { display: flex; gap: 44px; flex-wrap: wrap; }
.hero-meta div strong {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--ink);
  display: block;
  line-height: 1;
  letter-spacing: -.03em;
}
.hero-meta div span { font-size: .88rem; color: var(--muted); }

/* Hero visual — pure CSS monogram / shapes */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: var(--ink);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual .hv-mono {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13rem;
  letter-spacing: -.06em;
  color: #fff;
  line-height: .8;
}
.hero-visual .hv-blob {
  position: absolute;
  width: 64%; height: 64%;
  border-radius: 50%;
  filter: blur(6px);
  opacity: .9;
}
.hero-visual .hv-blob.a { top: -16%; right: -14%; background: radial-gradient(circle at 30% 30%, var(--accent), transparent 70%); }
.hero-visual .hv-blob.b { bottom: -20%; left: -16%; width: 70%; height: 70%; background: radial-gradient(circle at 60% 60%, #5d7bff, transparent 72%); opacity: .55; }
.hero-visual .hv-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 44px 44px;
}
.hero-visual .hv-tag {
  position: absolute;
  bottom: 18px; left: 18px;
  font-family: var(--font-head);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* ---------------------------------------------------------------------
   CLIENT LOGO STRIP (text)
   --------------------------------------------------------------------- */
.clients { padding: 44px 0; border-bottom: 1px solid var(--line); }
.clients p {
  text-align: center; font-size: .76rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 26px;
}
.logo-strip {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 16px 52px;
}
.logo-strip span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  opacity: .42;
  letter-spacing: -.02em;
  transition: opacity var(--ease);
}
.logo-strip span:hover { opacity: 1; }

/* ---------------------------------------------------------------------
   SECTION HEADER ROW (title + link)
   --------------------------------------------------------------------- */
.head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 48px; flex-wrap: wrap;
}
.head-row .lead { margin: 0; }
.text-link {
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  color: var(--ink); display: inline-flex; align-items: center; gap: 8px;
}
.text-link span { transition: transform var(--ease); }
.text-link:hover { color: var(--accent); }
.text-link:hover span { transform: translateX(5px); }

/* ---------------------------------------------------------------------
   WORK GRID + CARDS (big gradient thumbs)
   --------------------------------------------------------------------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
.work-card {
  display: block;
  color: var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--ease);
}
.work-card:hover { color: var(--ink); transform: translateY(-6px); }
.work-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.work-thumb::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.work-emoji {
  position: relative; z-index: 1;
  font-size: 3.4rem;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.22));
  transition: transform var(--ease);
}
.work-card:hover .work-emoji { transform: scale(1.12) rotate(-4deg); }
.work-num {
  position: absolute; top: 16px; left: 18px; z-index: 1;
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  letter-spacing: .12em; color: rgba(255,255,255,.85);
}
.work-info { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.work-info h3 { font-size: 1.5rem; margin-bottom: 4px; }
.work-cat {
  font-family: var(--font-head); font-size: .82rem; font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin: 0;
}
.work-arrow {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid; place-items: center;
  font-size: 1.05rem;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}
.work-card:hover .work-arrow { background: var(--accent); color: #fff; border-color: var(--accent); transform: rotate(-45deg); }

/* Gradient thumbnails — swap to rebrand */
.thumb-1 { background: linear-gradient(135deg, #2b50ec, #6d8bff); }
.thumb-2 { background: linear-gradient(135deg, #111111, #3a3a3a); }
.thumb-3 { background: linear-gradient(135deg, #2b50ec, #1a2c8a); }
.thumb-4 { background: linear-gradient(135deg, #2d3436, #636e72); }
.thumb-5 { background: linear-gradient(135deg, #4b6bff, #b3c2ff); }
.thumb-6 { background: linear-gradient(135deg, #1f2330, #2b50ec); }
.thumb-7 { background: linear-gradient(135deg, #0c1024, #4b6bff); }
.thumb-8 { background: linear-gradient(135deg, #5d7bff, #c8d2ff); }
.thumb-9 { background: linear-gradient(135deg, #111111, #2b50ec); }

/* Work filters (work.html) */
.work-filters {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 48px;
}
.filter-chip {
  font-family: var(--font-head); font-weight: 600; font-size: .9rem;
  padding: 10px 20px; border-radius: 999px;
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line); cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.filter-chip:hover { border-color: var(--ink); }
.filter-chip.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
.work-card.is-hidden { display: none; }

/* ---------------------------------------------------------------------
   ABOUT TEASER (split)
   --------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  background: var(--ink);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid; place-items: center;
}
.split-media .sm-mono {
  font-family: var(--font-head); font-weight: 800; font-size: 9rem;
  color: #fff; letter-spacing: -.06em; line-height: .8; position: relative; z-index: 1;
}
.split-media .hv-blob.a { position: absolute; top: -18%; right: -16%; width: 60%; height: 60%; border-radius: 50%; background: radial-gradient(circle at 30% 30%, var(--accent), transparent 70%); filter: blur(6px); }
.split-media .hv-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 44px 44px;
}
.about-list { margin-top: 26px; display: grid; gap: 14px; }
.about-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); }
.about-list li .tick {
  flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(43,80,236,.1); color: var(--accent);
  display: grid; place-items: center; font-size: .8rem; font-weight: 700; margin-top: 2px;
}

/* ---------------------------------------------------------------------
   SKILLS GRID
   --------------------------------------------------------------------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.skill-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.skill-card:hover { transform: translateY(-5px); border-color: var(--ink); box-shadow: var(--shadow); }
.skill-card .skill-icon { font-size: 1.9rem; display: block; margin-bottom: 18px; }
.skill-card h3 { margin-bottom: 8px; }
.skill-card p { color: var(--muted); margin-bottom: 0; font-size: .96rem; }

/* Tool tags */
.tool-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tool-tags li {
  font-family: var(--font-head); font-weight: 500; font-size: .9rem;
  color: var(--ink); background: var(--surface);
  border: 1px solid var(--line); padding: 8px 16px; border-radius: 999px;
}

/* ---------------------------------------------------------------------
   STATS BAND
   --------------------------------------------------------------------- */
.stats-band { background: var(--ink); color: #fff; }
.stats-band .eyebrow { color: #fff; }
.stats-band .eyebrow::before { background: var(--accent); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat strong {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 4rem);
  display: block; line-height: 1; letter-spacing: -.04em;
  color: #fff;
}
.stat span { color: rgba(255,255,255,.6); font-size: .92rem; }
.stat .accent { color: var(--accent); }

/* ---------------------------------------------------------------------
   TESTIMONIALS
   --------------------------------------------------------------------- */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 34px;
  transition: transform var(--ease), box-shadow var(--ease);
}
.quote-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.quote-card .mark { font-family: var(--font-head); font-size: 3rem; line-height: .6; color: var(--accent); display: block; margin-bottom: 14px; }
.quote-card blockquote {
  margin: 0 0 24px;
  font-size: 1.1rem; color: var(--ink);
  font-weight: 500; line-height: 1.5;
}
.quote-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  background: linear-gradient(135deg, var(--c1, var(--accent)), var(--c2, #6d8bff));
}
.quote-author b { display: block; font-family: var(--font-head); color: var(--ink); }
.quote-author span { font-size: .86rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   CTA BAND
   --------------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  border-radius: 24px;
  padding: 72px 56px;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute; top: -40%; right: -10%;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(43,80,236,.55), transparent 68%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.72); max-width: 560px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------------
   PAGE BANNER (inner pages)
   --------------------------------------------------------------------- */
.page-banner {
  padding: 78px 0 66px;
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  font-family: var(--font-head);
  font-size: .85rem; font-weight: 500;
  color: var(--muted); margin-bottom: 22px;
}
.breadcrumb a { color: var(--ink); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 8px; color: var(--line); }
.page-banner h1 { margin-bottom: 18px; }
.page-banner .lead { margin-bottom: 0; }

/* ---------------------------------------------------------------------
   ABOUT PAGE — timeline + values
   --------------------------------------------------------------------- */
.timeline { position: relative; margin-top: 10px; }
.timeline::before {
  content: ""; position: absolute; left: 9px; top: 8px; bottom: 8px;
  width: 2px; background: var(--line);
}
.timeline-item {
  position: relative; padding-left: 44px; padding-bottom: 40px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ""; position: absolute; left: 2px; top: 6px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--surface); border: 3px solid var(--accent);
}
.timeline-period {
  font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px;
}
.timeline-item h3 { font-size: 1.25rem; margin-bottom: 2px; }
.timeline-org { font-family: var(--font-head); font-weight: 500; color: var(--muted); font-size: .92rem; margin-bottom: 8px; }
.timeline-item p { color: var(--muted); margin-bottom: 0; }

.value-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform var(--ease), border-color var(--ease);
}
.value-card:hover { transform: translateY(-5px); border-color: var(--ink); }
.value-card .v-num {
  font-family: var(--font-head); font-weight: 700; font-size: .9rem;
  color: var(--accent); letter-spacing: .12em; display: block; margin-bottom: 14px;
}
.value-card h3 { margin-bottom: 8px; }
.value-card p { color: var(--muted); margin-bottom: 0; font-size: .96rem; }

/* ---------------------------------------------------------------------
   SERVICES PAGE
   --------------------------------------------------------------------- */
.service-block {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 28px;
  align-items: start;
  padding: 38px 0;
  border-top: 1px solid var(--line);
}
.service-block:last-child { border-bottom: 1px solid var(--line); }
.service-block .s-num {
  font-family: var(--font-head); font-weight: 700; font-size: 1.5rem;
  color: var(--accent); letter-spacing: -.02em;
}
.service-block h3 { font-size: 1.7rem; margin-bottom: 10px; }
.service-block p { color: var(--muted); margin-bottom: 16px; max-width: 620px; }
.deliverables { display: flex; flex-wrap: wrap; gap: 10px; }
.deliverables li {
  font-size: .84rem; font-family: var(--font-head); font-weight: 500;
  color: var(--ink); background: var(--bg);
  border: 1px solid var(--line); padding: 6px 14px; border-radius: 999px;
}
.service-block .s-price { font-family: var(--font-head); font-weight: 600; color: var(--muted); font-size: .92rem; white-space: nowrap; }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.step .num {
  font-family: var(--font-head); font-weight: 700; font-size: 2.4rem;
  color: var(--line); letter-spacing: -.04em; display: block; margin-bottom: 12px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 6px; }
.step p { margin-bottom: 0; font-size: .94rem; color: var(--muted); }

/* Packages */
.pkg {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 34px;
  display: flex; flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease);
}
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pkg.featured { background: var(--ink); color: #fff; border-color: var(--ink); }
.pkg.featured h3, .pkg.featured .pkg-price { color: #fff; }
.pkg.featured .pkg-feat li { color: rgba(255,255,255,.82); }
.pkg.featured .pkg-feat li::before { color: var(--accent); }
.pkg .pkg-tag {
  font-family: var(--font-head); font-weight: 600; font-size: .76rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; display: block;
}
.pkg h3 { font-size: 1.4rem; margin-bottom: 6px; }
.pkg-price { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; letter-spacing: -.03em; color: var(--ink); margin-bottom: 4px; }
.pkg-price span { font-size: .9rem; font-weight: 500; color: var(--muted); }
.pkg-sub { color: var(--muted); font-size: .94rem; margin-bottom: 22px; }
.pkg-feat { display: grid; gap: 12px; margin-bottom: 28px; }
.pkg-feat li { display: flex; gap: 10px; font-size: .94rem; color: var(--ink); }
.pkg-feat li::before { content: "✓"; color: var(--accent); font-weight: 700; }
.pkg .btn { width: 100%; justify-content: center; margin-top: auto; }

/* FAQ */
.faq { max-width: 800px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; color: var(--ink);
  padding: 26px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.faq-q .ic { flex: 0 0 auto; font-size: 1.4rem; color: var(--accent); transition: transform var(--ease); line-height: 1; }
.faq-item.open .faq-q .ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--ease); }
.faq-a p { color: var(--muted); padding: 0 0 26px; margin: 0; max-width: 680px; }
.faq-item.open .faq-a { max-height: 260px; }

/* ---------------------------------------------------------------------
   CONTACT
   --------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-details { display: grid; gap: 18px; margin-top: 28px; }
.contact-details li { display: flex; gap: 14px; align-items: flex-start; }
.contact-details .ic {
  width: 44px; height: 44px; flex: 0 0 auto; border-radius: 12px;
  background: var(--surface); border: 1px solid var(--line);
  display: grid; place-items: center; font-size: 1.2rem;
}
.contact-details b { font-family: var(--font-head); color: var(--ink); display: block; font-size: .92rem; }
.contact-details span { font-size: .96rem; color: var(--muted); }
.contact-socials { display: flex; gap: 12px; margin-top: 30px; }
.contact-socials a {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--line); display: grid; place-items: center;
  color: var(--ink); font-size: 1rem;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.contact-socials a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block; font-family: var(--font-head); font-weight: 500;
  font-size: .9rem; color: var(--ink); margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg); transition: border-color var(--ease), box-shadow var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 4px rgba(43,80,236,.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.field .error-msg { color: #d11a2a; font-size: .82rem; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #d11a2a; }
.field.invalid .error-msg { display: block; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 6px; }
.form-status {
  display: none; margin-top: 18px; padding: 15px 18px; border-radius: var(--radius-sm);
  background: rgba(43,80,236,.08); border: 1px solid rgba(43,80,236,.3);
  color: var(--accent-dark); font-weight: 500;
}
.form-status.show { display: block; }

/* ---------------------------------------------------------------------
   FOOTER (shared)
   --------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.62); padding: 76px 0 28px; }
.footer-cta { text-align: center; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.12); margin-bottom: 44px; }
.footer-cta h2 { color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 22px; }
.footer-cta .btn { font-size: 1rem; padding: 16px 34px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px;
}
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer .brand:hover { color: #fff; }
.site-footer .brand .logo-mark { background: var(--accent); }
.footer-about p { font-size: .95rem; color: rgba(255,255,255,.6); max-width: 300px; }
.footer-col h4 { color: #fff; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,.62); padding: 5px 0; font-size: .95rem; }
.footer-col a:hover { color: #fff; }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: grid; place-items: center; font-size: 1rem; color: #fff;
  transition: background var(--ease);
}
.social a:hover { background: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 26px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .86rem; color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.7); }

/* ---------------------------------------------------------------------
   SCROLL-REVEAL
   --------------------------------------------------------------------- */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.no-io .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 420px; }
  .hero-visual .hv-mono { font-size: 11rem; }
}

@media (max-width: 768px) {
  .section { padding: 76px 0; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 78px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--surface); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); padding: 16px var(--gutter) 24px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity var(--ease), transform var(--ease);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 12px 14px; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; gap: 32px; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split-media { order: 0; }
  .steps { grid-template-columns: 1fr 1fr; }
  .service-block { grid-template-columns: 1fr; gap: 14px; }
  .service-block .s-price { white-space: normal; }
  .cta-band { padding: 52px 30px; }
  .form-card { padding: 30px 24px; }
}

@media (max-width: 480px) {
  :root { --gutter: 20px; }
  .stats-grid, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 28px; }
  .head-row { align-items: flex-start; }
}
