/* =====================================================================
   BRANDCRAFT — Bold Brand-Identity Agency Template
   Plain HTML5 + CSS3. No frameworks. Offline-ready (no external images).
   ---------------------------------------------------------------------
   REBRAND TIP: Change the whole look by editing the CSS variables in
   :root below. Swap --accent for your primary color, adjust --accent2,
   and update --font-head / --font-body plus the Google Fonts <link> in
   each HTML file. Everything else cascades.
   ===================================================================== */

:root {
  /* --- Brand palette (edit these to rebrand) --- */
  --bg:        #fffdf7;   /* cream page background                    */
  --ink:       #111111;   /* near-black for headings & text          */
  --accent:    #6d28d9;   /* bold violet (primary)                   */
  --accent-dk: #581cb0;   /* darker violet for hovers                */
  --accent2:   #c3f53c;   /* punchy lime (secondary highlight)       */
  --muted:     #5b5b66;   /* muted body / captions                   */
  --surface:   #ffffff;   /* card / surface white                    */
  --line:      #ece8dd;   /* warm borders / dividers                 */

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

  /* --- Shape & motion --- */
  --radius:    22px;
  --radius-sm: 14px;
  --shadow:    0 14px 36px rgba(17, 17, 17, .07);
  --shadow-lg: 0 28px 70px rgba(17, 17, 17, .14);
  --ease:      .35s cubic-bezier(.4, 0, .2, 1);

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

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

html { scroll-behavior: smooth; }

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

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

h1 { font-size: clamp(2.6rem, 6.4vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 700; }

p { margin: 0 0 1rem; }

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

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

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

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

.section { padding: 100px 0; }
.section--soft { background: var(--surface); }
.section--ink { background: var(--ink); color: #fff; }
.section--tight { padding: 70px 0; }

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

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--accent2);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px rgba(195, 245, 60, .4);
}

.lead { font-size: 1.15rem; color: var(--muted); }
.muted { color: var(--muted); }

/* ---------------------------------------------------------------------
   BUTTONS — chunky, rounded, confident
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 30px;
  border-radius: 999px;
  border: 2.5px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 26px rgba(109, 40, 217, .35);
}
.btn-primary:hover { background: var(--accent-dk); color: #fff; box-shadow: 0 16px 36px rgba(109, 40, 217, .45); }

.btn-lime {
  background: var(--accent2);
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(195, 245, 60, .45);
}
.btn-lime:hover { background: #b6ed2a; color: var(--ink); }

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

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

/* ---------------------------------------------------------------------
   HEADER / NAV  (shared, identical IDs on every page)
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 247, .9);
  backdrop-filter: blur(12px);
  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.35rem;
  color: var(--ink);
  letter-spacing: -.03em;
}
.brand:hover { color: var(--ink); }
.brand .logo-mark {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #a855f7);
  display: grid; place-items: center;
  box-shadow: 0 8px 18px rgba(109, 40, 217, .4);
  transform: rotate(-4deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .98rem;
  color: var(--ink);
  padding: 9px 15px;
  border-radius: 11px;
  transition: background var(--ease), color var(--ease);
}
.nav-links a:hover { background: var(--bg); color: var(--accent); }
.nav-links a.active { color: var(--accent); background: rgba(109, 40, 217, .08); }

.nav-cta { margin-left: 10px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  background: var(--ink);
  border: none;
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2.5px;
  margin: 0 auto;
  background: #fff;
  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) — oversized type + big color blocks
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 480px at 90% 0%, rgba(109,40,217,.14), transparent 60%),
    radial-gradient(620px 480px at 0% 100%, rgba(195,245,60,.28), transparent 55%),
    var(--bg);
  padding: 84px 0 96px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 .hl { color: var(--accent); position: relative; }
.hero h1 .mark {
  background: var(--accent2);
  padding: 0 .12em;
  border-radius: 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero .lead { max-width: 520px; margin-bottom: 32px; font-size: 1.2rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.hero-meta {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-meta div strong {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.hero-meta div span { font-size: .9rem; color: var(--muted); }

/* Hero visual — pure CSS sticker collage (no image files) */
.hero-visual {
  position: relative;
  min-height: 420px;
}
.sticker {
  position: absolute;
  border-radius: 22px;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 800;
  box-shadow: var(--shadow-lg);
}
.sticker-1 {
  inset: 0 30% 38% 0;
  background: linear-gradient(150deg, var(--accent), #a855f7);
  color: #fff;
  transform: rotate(-5deg);
  font-size: 3.4rem;
}
.sticker-2 {
  inset: 16% 0 42% 44%;
  background: var(--accent2);
  color: var(--ink);
  transform: rotate(5deg);
  padding: 18px;
  font-size: 1.05rem;
  line-height: 1.3;
}
.sticker-3 {
  inset: 56% 36% 0 4%;
  background: var(--ink);
  color: #fff;
  transform: rotate(3deg);
  padding: 18px;
  font-size: 1rem;
  line-height: 1.35;
}
.sticker-4 {
  inset: 60% 2% 4% 60%;
  background: var(--surface);
  border: 2px solid var(--line);
  color: var(--ink);
  transform: rotate(-4deg);
  font-size: 2.6rem;
}

/* ---------------------------------------------------------------------
   STATS STRIP
   --------------------------------------------------------------------- */
.stats-strip {
  background: var(--ink);
  color: #fff;
  padding: 44px 0;
}
.stats-strip .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; }
.stats-strip .stat strong {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  display: block;
  line-height: 1;
  color: var(--accent2);
}
.stats-strip .stat span { color: rgba(255,255,255,.72); font-size: .92rem; }

/* ---------------------------------------------------------------------
   CARDS / GRIDS
   --------------------------------------------------------------------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: rgba(109,40,217,.3); }

.card .icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: rgba(109, 40, 217, .1);
  display: grid; place-items: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin-bottom: 0; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .94rem;
}
.card-link span { transition: transform var(--ease); }
.card-link:hover span { transform: translateX(5px); }

/* Numbered card variant (services preview) */
.card .tag-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .85rem;
  color: var(--accent);
  letter-spacing: .1em;
}

/* Feature list (why us) */
.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature .tick {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 13px;
  background: var(--accent2);
  color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  box-shadow: 0 6px 14px rgba(195,245,60,.4);
}
.feature h3 { font-size: 1.15rem; margin-bottom: 4px; }
.feature p { margin-bottom: 0; font-size: .98rem; color: var(--muted); }

/* Split section (color block + content) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media {
  border-radius: 26px;
  min-height: 400px;
  background: linear-gradient(150deg, var(--accent), #7c3aed 60%, var(--ink));
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
  padding: 36px;
}
.split-media::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(360px 300px at 78% 22%, rgba(195,245,60,.4), transparent 60%);
}

/* ---------------------------------------------------------------------
   FEATURED WORK GRID (home) / WORK PAGE
   --------------------------------------------------------------------- */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.work-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
}
.work-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.work-thumb {
  height: 210px;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.6rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.work-thumb span {
  position: relative; z-index: 1;
  transition: transform var(--ease);
}
.work-card:hover .work-thumb span { transform: scale(1.08); }
/* Gradient thumbnail variants */
.tg-1 { background: linear-gradient(135deg, #6d28d9, #c026d3); }
.tg-2 { background: linear-gradient(135deg, #111111, #6d28d9); }
.tg-3 { background: linear-gradient(135deg, #c3f53c, #6d28d9); color: var(--ink); }
.tg-4 { background: linear-gradient(135deg, #f97316, #6d28d9); }
.tg-5 { background: linear-gradient(135deg, #0ea5e9, #111111); }
.tg-6 { background: linear-gradient(135deg, #6d28d9, #f43f5e); }
.tg-7 { background: linear-gradient(135deg, #c3f53c, #0f766e); color: var(--ink); }
.tg-8 { background: linear-gradient(135deg, #111111, #c3f53c); }
.tg-9 { background: linear-gradient(135deg, #a855f7, #facc15); }
.work-body { padding: 22px 24px 26px; }
.work-body .wb-cat {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
}
.work-body h3 { font-size: 1.2rem; margin: 8px 0 4px; }
.work-body .wb-client { color: var(--muted); font-size: .92rem; margin: 0; }

/* Filter bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}
.filter-btn {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
  background: var(--surface);
  border: 2px solid var(--line);
  padding: 9px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------------------------------------------------------------------
   TESTIMONIALS
   --------------------------------------------------------------------- */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 34px;
  box-shadow: var(--shadow);
}
.quote-card .stars { color: var(--accent); margin-bottom: 14px; letter-spacing: 2px; }
.quote-card blockquote {
  margin: 0 0 22px;
  font-size: 1.14rem;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -.01em;
}
.quote-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), #c026d3);
}
.quote-author b { display: block; font-family: var(--font-head); color: var(--ink); }
.quote-author span { font-size: .88rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   CTA BAND — big bold color block
   --------------------------------------------------------------------- */
.cta-band {
  background:
    radial-gradient(520px 380px at 88% 14%, rgba(195,245,60,.35), transparent 60%),
    linear-gradient(135deg, var(--accent), var(--ink));
  color: #fff;
  border-radius: 32px;
  padding: 70px 52px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.2rem); }
.cta-band p { color: rgba(255,255,255,.88); max-width: 580px; margin: 0 auto 30px; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------------
   PAGE BANNER (inner pages)
   --------------------------------------------------------------------- */
.page-banner {
  background:
    radial-gradient(560px 360px at 88% -10%, rgba(109,40,217,.14), transparent 60%),
    radial-gradient(440px 360px at 4% 120%, rgba(195,245,60,.3), transparent 55%),
    var(--bg);
  padding: 76px 0 64px;
  border-bottom: 1px solid var(--line);
}
.page-banner h1 { margin-bottom: 12px; }
.page-banner p { max-width: 640px; color: var(--muted); margin-bottom: 0; font-size: 1.15rem; }
.breadcrumb {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { margin: 0 8px; }

/* ---------------------------------------------------------------------
   SERVICES PAGE — detailed blocks + packages + faq
   --------------------------------------------------------------------- */
.service-block {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 26px;
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
}
.service-block:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-block .s-icon {
  width: 70px; height: 70px;
  border-radius: 18px;
  background: rgba(109,40,217,.1);
  display: grid; place-items: center;
  font-size: 2rem;
}
.service-block h3 { margin-bottom: 8px; font-size: 1.5rem; }
.deliverables {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 18px;
}
.deliverables li {
  font-size: .85rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 999px;
}

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  position: relative;
}
.step .num {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #a855f7);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 6px; }
.step p { margin-bottom: 0; font-size: .95rem; color: var(--muted); }

/* Pricing / packages */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.price-card.featured h3, .price-card.featured .price { color: #fff; }
.price-card.featured .price-feats li { color: rgba(255,255,255,.82); }
.price-card .badge {
  align-self: flex-start;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: var(--accent2);
  color: var(--ink);
  padding: 5px 13px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.price-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.price-card .price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--ink);
  line-height: 1;
  margin: 6px 0 2px;
}
.price-card .price small { font-size: .9rem; font-weight: 600; color: var(--muted); }
.price-card .p-sub { font-size: .92rem; color: var(--muted); margin-bottom: 22px; }
.price-card.featured .p-sub { color: rgba(255,255,255,.7); }
.price-feats { margin: 0 0 26px; display: grid; gap: 11px; }
.price-feats li { font-size: .95rem; color: var(--muted); display: flex; gap: 10px; align-items: flex-start; }
.price-feats li::before { content: "\2713"; color: var(--accent); font-weight: 800; }
.price-card.featured .price-feats li::before { color: var(--accent2); }
.price-card .btn { margin-top: auto; justify-content: center; }

/* FAQ */
.faq { max-width: 800px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  box-shadow: var(--shadow);
}
.faq-item h3 { font-size: 1.12rem; margin-bottom: 8px; display: flex; gap: 10px; align-items: baseline; }
.faq-item h3 .q { color: var(--accent); font-weight: 800; }
.faq-item p { margin: 0; color: var(--muted); font-size: .98rem; }

/* ---------------------------------------------------------------------
   ABOUT — values + team
   --------------------------------------------------------------------- */
.value-card .icon { background: var(--accent2); }

.team-card { text-align: center; }
.team-card .team-photo {
  width: 116px; height: 116px;
  border-radius: 26px;
  margin: 0 auto 18px;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.1rem;
  color: #fff;
  box-shadow: var(--shadow);
  transform: rotate(-3deg);
}
.team-card h3 { font-size: 1.2rem; margin-bottom: 2px; }
.team-card .role { color: var(--accent); font-family: var(--font-head); font-weight: 700; font-size: .9rem; margin-bottom: 10px; }
.team-card p { font-size: .92rem; color: var(--muted); margin-bottom: 0; }

/* ---------------------------------------------------------------------
   CONTACT
   --------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: start; }
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 14px 16px;
  border: 2px 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);
  box-shadow: 0 0 0 4px rgba(109,40,217,.14);
}
.field textarea { resize: vertical; min-height: 130px; }
.field .error-msg { color: #dc2626; font-size: .82rem; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #dc2626; }
.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: 16px 20px;
  border-radius: var(--radius-sm);
  background: rgba(195, 245, 60, .22);
  border: 1.5px solid var(--accent2);
  color: var(--ink);
  font-weight: 600;
  font-family: var(--font-head);
}
.form-status.show { display: block; }

.info-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 22px;
}
.info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.info-row:last-child { margin-bottom: 0; }
.info-row .info-ic {
  width: 46px; height: 46px; flex: 0 0 auto;
  border-radius: 13px; background: rgba(255,255,255,.1);
  display: grid; place-items: center; font-size: 1.3rem;
}
.info-row b { font-family: var(--font-head); color: #fff; display: block; }
.info-row span { font-size: .94rem; color: rgba(255,255,255,.78); }
.info-row a { color: var(--accent2); }

/* Map placeholder */
.map-placeholder {
  border-radius: var(--radius);
  min-height: 250px;
  background:
    linear-gradient(rgba(109,40,217,.05), rgba(109,40,217,.05)),
    repeating-linear-gradient(0deg, var(--line) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 44px),
    var(--surface);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  text-align: center;
  color: var(--muted);
}
.map-placeholder .pin { font-size: 2.6rem; }

/* ---------------------------------------------------------------------
   FOOTER (shared)
   --------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.75);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 48px;
}
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.site-footer .brand:hover { color: #fff; }
.footer-about p { font-size: .95rem; color: rgba(255,255,255,.7); max-width: 330px; }
.footer-col h4 {
  color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 16px; font-weight: 700;
}
.footer-col a { display: block; color: rgba(255,255,255,.72); padding: 5px 0; font-size: .95rem; }
.footer-col a:hover { color: var(--accent2); }
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,.1);
  display: grid; place-items: center;
  font-size: 1rem;
  color: #fff;
}
.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: .88rem;
  color: rgba(255,255,255,.6);
}
.footer-bottom a { color: rgba(255,255,255,.75); }
.footer-bottom a:hover { color: var(--accent2); }

/* ---------------------------------------------------------------------
   SCROLL-REVEAL
   --------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  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; }

/* ---------------------------------------------------------------------
   RESPONSIVE — 1024px+ / 768px / 360px
   --------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-strip .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 460px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 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(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 14px var(--gutter) 22px;
    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: 13px 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; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .split--reverse .split-media { order: 0; }
  .service-block { grid-template-columns: 1fr; }
  .stats-strip .stats-grid, .steps { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 50px 28px; }
}

@media (max-width: 360px) {
  body { font-size: 16px; }
  .stats-strip .stats-grid, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn { padding: 14px 24px; }
}
