/* ============================================================
   BLAKE AGENCY — STYLESHEET
   Design: Supabase-inspired dark theme
   Colors: #0f0f0f bg · #3ECF8E accent · #EDEDED text
   Font: Inter only
   ============================================================ */

/* --- RESET ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

/* --- TOKENS ------------------------------------------------ */
:root {
  --bg:        #0f0f0f;
  --surface:   #111111;
  --surface-2: #1a1a1a;
  --surface-3: #222222;

  --border:    rgba(255,255,255,0.08);
  --border-2:  rgba(255,255,255,0.14);

  --green:     #3ECF8E;
  --green-bg:  rgba(62,207,142,0.1);
  --green-bd:  rgba(62,207,142,0.22);

  --text-1: #EDEDED;
  --text-2: #9B9B9B;
  --text-3: #4B5563;

  --mw:   1160px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
}

/* --- BASE -------------------------------------------------- */
body {
  background: var(--bg);
  color: var(--text-1);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }

/* --- TYPOGRAPHY -------------------------------------------- */
.display-xl { font-size: clamp(40px, 5.5vw, 72px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; }
.display-lg { font-size: clamp(32px, 4vw,  56px);  font-weight: 700; letter-spacing: -0.025em; line-height: 1.08; }
.display-md { font-size: clamp(24px, 3vw,  40px);  font-weight: 700; letter-spacing: -0.02em;  line-height: 1.1; }

.label {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--green);
}

/* --- LAYOUT ------------------------------------------------ */
.container { max-width: var(--mw); margin: 0 auto; padding: 0 28px; }
.py-2xl { padding-top: 128px; padding-bottom: 128px; }
.py-xl  { padding-top: 100px; padding-bottom: 100px; }
.py-lg  { padding-top: 72px;  padding-bottom: 72px; }
.py-md  { padding-top: 48px;  padding-bottom: 48px; }

/* --- SCROLL REVEAL ---------------------------------------- */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.in  { opacity: 1; transform: none; }
.reveal.d1  { transition-delay: 0.08s; }
.reveal.d2  { transition-delay: 0.16s; }
.reveal.d3  { transition-delay: 0.24s; }
.reveal.d4  { transition-delay: 0.32s; }
.reveal.d5  { transition-delay: 0.40s; }

/* --- GRADIENT BORDER CARD UTILITY ------------------------- */
/* Wrap any dark card: <div class="gb"> <div class="gb-in"> </div> </div> */
.gb {
  padding: 1px;
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.03) 100%);
}
.gb-in {
  background: var(--surface);
  border-radius: calc(var(--r-lg) - 1px);
  height: 100%;
}
.gb-green {
  padding: 1px;
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(62,207,142,0.25) 0%, rgba(62,207,142,0.04) 100%);
}
.gb-green > .gb-in {
  border-radius: calc(var(--r-lg) - 1px);
}

/* --- BUTTONS ---------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap; line-height: 1;
}
.btn-primary {
  background: var(--green);
  color: #0a0a0a;
  padding: 12px 22px;
  border-radius: var(--r-sm);
  font-weight: 600;
}
.btn-primary:hover {
  background: #4ed99a;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(62,207,142,0.25);
}
.btn-outline {
  background: transparent;
  color: var(--text-1);
  padding: 11px 21px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-2);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.04);
}
.btn-nav {
  background: var(--green);
  color: #0a0a0a;
  padding: 8px 16px;
  border-radius: var(--r-sm);
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  display: inline-flex; align-items: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.btn-nav:hover {
  background: #4ed99a;
  box-shadow: 0 4px 16px rgba(62,207,142,0.28);
}

/* --- NAVIGATION ------------------------------------------- */
#nav {
  position: fixed; top: 12px; left: 16px; right: 16px;
  z-index: 900;
  background: rgba(18,18,18,0.65);
  backdrop-filter: blur(32px) saturate(1.8);
  -webkit-backdrop-filter: blur(32px) saturate(1.8);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.nav-inner {
  max-width: var(--mw); margin: 0 auto; padding: 0 24px;
  height: 62px;
  display: flex; align-items: center; gap: 32px;
}
#nav.scrolled {
  background: rgba(14,14,14,0.84);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-img {
  height: 30px; width: auto; display: block;
}
.nav-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px; color: #0a0a0a;
  flex-shrink: 0; letter-spacing: -0.04em;
}
.nav-wordmark {
  font-size: 16px; font-weight: 600;
  color: var(--text-1); letter-spacing: -0.025em;
}

.nav-links {
  display: flex; align-items: center; gap: 2px;
  list-style: none;
  flex: 1; justify-content: center;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 7px 12px;
  font-size: 14px; font-weight: 400;
  color: var(--text-2);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.15s;
}
.nav-links > li > a:hover,
.nav-links > li.active > a { color: var(--text-1); }
.nav-caret {
  font-size: 9px; opacity: 0.55;
  transition: transform 0.2s; display: inline-block;
}
.nav-links > li.dd-open .nav-caret { transform: rotate(180deg); }

/* Services dropdown — top: 100% with padding-top bridge fixes hover gap */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 8px;         /* transparent bridge so cursor doesn't lose hover */
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.18s, visibility 0.18s;
  z-index: 10;
}
.nav-dropdown-panel {
  min-width: 276px;
  background: #161616;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  box-shadow: 0 20px 56px rgba(0,0,0,0.75);
  padding: 6px;
  overflow: hidden;
}
.nav-links > li:hover .nav-dropdown,
.nav-links > li.dd-open .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: all;
}
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  font-size: 13.5px; font-weight: 400;
  color: var(--text-2); text-decoration: none;
  border-radius: 8px;
  transition: all 0.12s;
}
.nav-dropdown a:hover { color: var(--text-1); background: rgba(255,255,255,0.05); }
.dd-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,0.2); flex-shrink: 0;
  transition: background 0.15s;
}
.nav-dropdown a:hover .dd-dot { background: var(--green); }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.nav-ham {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--text-2);
}

/* Mobile nav */
.mob-menu {
  display: none;
  position: fixed; top: 86px; left: 16px; right: 16px;
  background: rgba(18,18,18,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  padding: 12px 20px 20px;
  z-index: 899;
}
.mob-menu.open { display: block; }
.mob-menu ul { list-style: none; display: flex; flex-direction: column; margin-bottom: 16px; }
.mob-menu a {
  display: block; padding: 10px 12px;
  color: var(--text-2); text-decoration: none;
  font-size: 15px; font-weight: 400;
  border-radius: 8px; transition: color 0.12s;
}
.mob-menu a:hover { color: var(--text-1); }

/* --- SECTION HEADER --------------------------------------- */
.sh { max-width: 640px; }
.sh-center { margin: 0 auto; text-align: center; }
.sh .label { display: block; margin-bottom: 14px; }
.sh h2 { margin-bottom: 16px; color: var(--text-1); }
.sh p  { font-size: 17px; line-height: 1.72; color: var(--text-2); }

/* --- ANNOUNCE PILL ---------------------------------------- */
.announce-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 5px 14px 5px 7px;
  border-radius: 100px;
  background: rgba(62,207,142,0.08);
  border: 1px solid rgba(62,207,142,0.18);
  margin-bottom: 32px;
  text-decoration: none;
  transition: background 0.2s;
}
.announce-pill:hover { background: rgba(62,207,142,0.13); }
.announce-tag {
  background: var(--green); color: #0a0a0a;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 100px; flex-shrink: 0;
}
.announce-text { font-size: 13px; font-weight: 500; color: var(--green); }
.announce-arr  { color: var(--green); opacity: 0.6; }

/* --- HERO ------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 148px; padding-bottom: 96px;
  position: relative; overflow: hidden;
}
/* Dot grid */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.065) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
/* Green glow */
.hero::after {
  content: '';
  position: absolute; top: -15%; left: 50%; transform: translateX(-50%);
  width: 960px; height: 520px;
  background: radial-gradient(ellipse, rgba(62,207,142,0.13) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content {
  max-width: 760px; margin: 0 auto; text-align: center;
  position: relative; z-index: 1;
}
.hero-content h1 { margin-bottom: 24px; color: var(--text-1); }
.hero-sub {
  font-size: 18px; line-height: 1.72;
  color: var(--text-2); margin-bottom: 40px;
  max-width: 580px; margin-left: auto; margin-right: auto;
}
.hero-ctas {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap; margin-bottom: 72px;
}

/* Hero stats grid */
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.hero-stat {
  padding: 28px 20px; text-align: center;
  border-right: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.hero-stat:last-child { border-right: none; }
.hs-val {
  font-size: 32px; font-weight: 700; letter-spacing: -0.04em;
  color: var(--text-1); line-height: 1; margin-bottom: 8px;
}
.hs-val em { color: var(--green); font-style: normal; }
.hs-lbl { font-size: 12px; color: var(--text-2); line-height: 1.45; }

/* --- SERVICE GRID (tiled, Supabase style) ----------------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-top: 64px;
}
.svc-tile {
  background: var(--surface);
  padding: 34px 28px;
  transition: background 0.2s;
  cursor: default;
}
.svc-tile:hover { background: var(--surface-2); }
.svc-tile-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--green-bg);
  border: 1px solid var(--green-bd);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); margin-bottom: 20px;
  flex-shrink: 0;
}
.svc-tile h3 {
  font-size: 16px; font-weight: 600; color: var(--text-1);
  margin-bottom: 10px; letter-spacing: -0.015em; line-height: 1.3;
}
.svc-tile p { font-size: 14px; color: var(--text-2); line-height: 1.68; margin-bottom: 20px; }
.svc-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 500; color: var(--green);
  text-decoration: none;
  transition: gap 0.2s;
}
.svc-link:hover { gap: 9px; }
.svc-link svg { transition: transform 0.2s; }
.svc-link:hover svg { transform: translateX(2px); }

/* Service cards — gradient border, services hub page */
.svc-card-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; margin-top: 56px;
}
.svc-card {
  padding: 1px; border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
  transition: background 0.22s;
  text-decoration: none;
}
.svc-card:hover {
  background: linear-gradient(160deg, rgba(62,207,142,0.22) 0%, rgba(62,207,142,0.04) 100%);
}
.svc-card-in {
  background: var(--surface);
  border-radius: calc(var(--r-lg) - 1px);
  padding: 32px; height: 100%;
}
.svc-card-in .svc-tile-icon { margin-bottom: 18px; }
.svc-card-in h3 {
  font-size: 18px; font-weight: 600; color: var(--text-1);
  margin-bottom: 10px; letter-spacing: -0.02em;
}
.svc-card-in > p { font-size: 14px; color: var(--text-2); line-height: 1.72; margin-bottom: 24px; }

/* --- CRED STRIP ------------------------------------------ */
.cred-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cred-row { display: flex; }
.cred-item {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 28px;
  border-right: 1px solid var(--border);
  flex: 1; justify-content: center;
}
.cred-item:last-child { border-right: none; }
.ci-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--green-bg); border: 1px solid var(--green-bd);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--green);
}
.ci-text { font-size: 13px; font-weight: 400; color: var(--text-2); }
.ci-text strong { color: var(--text-1); font-weight: 600; }

/* --- STATS STRIP ----------------------------------------- */
.stats-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-cell {
  padding: 56px 24px; text-align: center;
  border-right: 1px solid var(--border);
}
.stat-cell:last-child { border-right: none; }
.stat-val {
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 700; letter-spacing: -0.04em;
  color: var(--text-1); line-height: 1; margin-bottom: 10px;
}
.stat-val em { color: var(--green); font-style: normal; }
.stat-desc { font-size: 13px; color: var(--text-2); line-height: 1.5; }

/* --- PROCESS STEPS --------------------------------------- */
.proc-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start; margin-top: 64px;
}
.steps { display: flex; flex-direction: column; }
.step { display: flex; gap: 20px; padding-bottom: 36px; }
.step:last-child { padding-bottom: 0; }
.step-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.step-num {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--green-bg); border: 1px solid var(--green-bd);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; color: var(--green);
}
.step-line {
  width: 1px; flex: 1; min-height: 32px; margin-top: 8px;
  background: linear-gradient(to bottom, var(--border-2), transparent);
}
.step:last-child .step-line { display: none; }
.step-body { padding-top: 6px; }
.step-body h3 { font-size: 16px; font-weight: 600; color: var(--text-1); margin-bottom: 7px; letter-spacing: -0.01em; }
.step-body p  { font-size: 14px; color: var(--text-2); line-height: 1.72; }

/* Model card (sticky) */
.model-card {
  padding: 1px; border-radius: var(--r-xl);
  background: linear-gradient(160deg, rgba(62,207,142,0.22) 0%, rgba(62,207,142,0.04) 100%);
  position: sticky; top: 84px;
}
.model-card-in {
  background: var(--surface);
  border-radius: calc(var(--r-xl) - 1px);
  padding: 36px;
}
.mc-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--green-bg); border: 1px solid var(--green-bd);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); margin-bottom: 20px;
}
.mc-title { font-size: 18px; font-weight: 600; color: var(--text-1); margin-bottom: 6px; letter-spacing: -0.02em; }
.mc-sub   { font-size: 12px; color: var(--text-2); }
.mc-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.mc-body  { font-size: 14px; color: var(--text-2); line-height: 1.75; margin-bottom: 24px; }
.mc-tags  { display: flex; flex-wrap: wrap; gap: 8px; }
.mc-tag {
  padding: 6px 12px;
  background: var(--green-bg); border: 1px solid var(--green-bd);
  border-radius: 6px;
  font-size: 11px; font-weight: 600; color: var(--green);
  letter-spacing: 0.05em; text-transform: uppercase;
}

/* --- WHO WE HELP ----------------------------------------- */
.who-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-top: 56px;
}
.who-card {
  padding: 1px; border-radius: var(--r-md);
  background: linear-gradient(160deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
  transition: background 0.2s;
}
.who-card:hover {
  background: linear-gradient(160deg, rgba(62,207,142,0.2) 0%, rgba(62,207,142,0.04) 100%);
}
.who-card-in {
  background: var(--surface);
  border-radius: calc(var(--r-md) - 1px);
  padding: 24px; height: 100%;
  display: flex; flex-direction: column; gap: 10px;
}
.who-icon { font-size: 24px; line-height: 1; }
.who-card-in h3 { font-size: 15px; font-weight: 600; color: var(--text-1); letter-spacing: -0.01em; }
.who-card-in p  { font-size: 13.5px; color: var(--text-2); line-height: 1.65; }

/* --- TESTIMONIALS ---------------------------------------- */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 56px;
}
.testi-card {
  padding: 1px; border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
}
.testi-card-in {
  background: var(--surface);
  border-radius: calc(var(--r-lg) - 1px);
  padding: 28px; height: 100%;
  display: flex; flex-direction: column;
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testi-quote {
  font-size: 14.5px; color: var(--text-2); line-height: 1.78;
  font-style: italic; margin-bottom: 20px; flex: 1;
}
.testi-author {
  font-size: 11px; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--text-3);
}

/* --- FAQ ------------------------------------------------- */
.faq-list {
  max-width: 680px; margin: 56px auto 0;
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
}
.faq-item { background: var(--surface); }
.faq-item + .faq-item { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; padding: 20px 24px;
  background: none; border: none; color: var(--text-1);
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 500; letter-spacing: -0.01em;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--text-1); background: rgba(255,255,255,0.015); }
.faq-plus {
  width: 22px; height: 22px; border-radius: 6px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 16px; color: var(--text-2);
  transition: transform 0.22s, background 0.15s, color 0.15s;
  font-weight: 300; line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-plus {
  transform: rotate(45deg);
  background: var(--green-bg); color: var(--green);
}
.faq-a {
  display: none; padding: 16px 24px 22px;
  font-size: 14px; color: var(--text-2); line-height: 1.78;
  border-top: 1px solid var(--border);
}
.faq-a.open { display: block; }

/* --- CTA SECTION ----------------------------------------- */
.cta-section {
  position: relative; overflow: hidden;
  border-top: 1px solid var(--border);
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top center, rgba(62,207,142,0.1) 0%, transparent 60%);
  pointer-events: none;
}
/* Dot grid for CTA */
.cta-section::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.cta-inner {
  text-align: center; position: relative; z-index: 1;
  max-width: 640px; margin: 0 auto;
}
.cta-inner h2 { margin-bottom: 16px; color: var(--text-1); }
.cta-inner p  { font-size: 17px; color: var(--text-2); line-height: 1.72; margin-bottom: 36px; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* --- PAGE HERO ------------------------------------------- */
.page-hero {
  padding-top: 168px; padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 100%;
  background: radial-gradient(ellipse at top center, rgba(62,207,142,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .label { display: block; margin-bottom: 14px; }
.page-hero h1     { margin-bottom: 20px; color: var(--text-1); }
.page-hero p      { font-size: 18px; color: var(--text-2); line-height: 1.72; max-width: 600px; }

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-3); margin-bottom: 24px;
}
.breadcrumb a { color: var(--text-3); text-decoration: none; transition: color 0.15s; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { opacity: 0.5; }

/* Feature list */
.feature-list {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; color: var(--text-2); line-height: 1.65;
}
.feature-list li::before {
  content: '';
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green-bg);
  border: 1.5px solid var(--green-bd);
  flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%233ECF8E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* --- HIGHLIGHT CARD -------------------------------------- */
.highlight-card {
  padding: 1px; border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(62,207,142,0.22) 0%, rgba(62,207,142,0.04) 100%);
}
.highlight-card-in {
  background: var(--surface);
  border-radius: calc(var(--r-lg) - 1px);
  padding: 32px;
}
.highlight-card-in h3 {
  font-size: 17px; font-weight: 600; color: var(--text-1);
  margin-bottom: 12px; letter-spacing: -0.02em;
}
.highlight-card-in p  { font-size: 14px; color: var(--text-2); line-height: 1.75; }

/* --- TWO-COL CONTENT LAYOUT ------------------------------ */
.content-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start; margin-top: 64px;
}
.content-layout-lg {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 72px; align-items: start; margin-top: 64px;
}
.content-col h2 { margin-bottom: 16px; color: var(--text-1); }
.content-col > p { font-size: 16px; color: var(--text-2); line-height: 1.75; margin-bottom: 28px; }

/* --- CONTACT FORM ---------------------------------------- */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.contact-info h2 { margin-bottom: 16px; color: var(--text-1); }
.contact-info > p { font-size: 16px; color: var(--text-2); line-height: 1.75; margin-bottom: 36px; }
.promise-list { display: flex; flex-direction: column; gap: 10px; }
.promise-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.pi-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--green-bg); border: 1px solid var(--green-bd);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--green);
}
.pi-title { font-size: 14px; font-weight: 500; color: var(--text-1); margin-bottom: 2px; }
.pi-sub   { font-size: 12.5px; color: var(--text-2); }

.contact-form-wrap {
  padding: 1px; border-radius: var(--r-xl);
  background: linear-gradient(160deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.03) 100%);
}
.contact-form {
  background: var(--surface);
  border-radius: calc(var(--r-xl) - 1px);
  padding: 36px;
}
.contact-form h3 {
  font-size: 20px; font-weight: 600; color: var(--text-1);
  margin-bottom: 28px; letter-spacing: -0.02em;
}
.f2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.fg label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-3);
}
.fg input, .fg select, .fg textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 11px 14px;
  color: var(--text-1); font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none; width: 100%;
  transition: border-color 0.18s, background 0.18s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: rgba(62,207,142,0.45);
  background: rgba(62,207,142,0.04);
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--text-3); }
.fg select { appearance: none; cursor: pointer; }
.fg select option { background: #161616; }
.fg textarea { resize: vertical; min-height: 110px; }
.form-hint { font-size: 12px; color: var(--text-3); text-align: center; margin-top: 12px; }
.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--green-bg); border: 1px solid var(--green-bd);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; color: var(--green);
}
.form-success h4 { font-size: 20px; font-weight: 600; color: var(--text-1); margin-bottom: 8px; }
.form-success p  { font-size: 14px; color: var(--text-2); }

/* --- ABOUT PAGE ------------------------------------------ */
.founder-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start; margin-top: 64px;
}
.founder-col h2 { margin-bottom: 16px; color: var(--text-1); }
.founder-col > p {
  font-size: 16px; color: var(--text-2); line-height: 1.78; margin-bottom: 20px;
}
.value-list {
  display: flex; flex-direction: column; gap: 10px; margin-top: 32px;
}
.value-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px; border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.vi-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--green-bg); border: 1px solid var(--green-bd);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--green);
}
.vi-title { font-size: 14px; font-weight: 500; color: var(--text-1); margin-bottom: 2px; }
.vi-desc  { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* Resume-style credentials card */
.cred-card {
  padding: 1px; border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.02) 100%);
  position: sticky; top: 84px;
}
.cred-card-in {
  background: var(--surface);
  border-radius: calc(var(--r-lg) - 1px);
  padding: 32px;
}
.cred-card-in h3 {
  font-size: 14px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-3);
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.cred-line {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.cred-line:last-child { border-bottom: none; padding-bottom: 0; }
.cl-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--green-bg); border: 1px solid var(--green-bd);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--green);
}
.cl-main { font-size: 14px; font-weight: 500; color: var(--text-1); line-height: 1.3; }
.cl-sub  { font-size: 12px; color: var(--text-2); margin-top: 2px; }

/* --- DIVIDER ---------------------------------------------- */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* --- FOOTER ---------------------------------------------- */
footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
  position: relative; z-index: 1;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.ft-brand p { font-size: 13px; color: var(--text-3); line-height: 1.75; margin-top: 14px; max-width: 260px; }
.ft-col h4 {
  font-size: 11px; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 14px;
}
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft-col a { font-size: 13.5px; color: var(--text-2); text-decoration: none; transition: color 0.15s; }
.ft-col a:hover { color: var(--text-1); }
.footer-bot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; border-top: 1px solid var(--border);
  font-size: 12px; color: var(--text-3);
}

/* --- RESPONSIVE ------------------------------------------ */
@media (max-width: 1060px) {
  .proc-layout { grid-template-columns: 1fr; gap: 48px; }
  .model-card { position: static; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-layout { grid-template-columns: 1fr; }
  .content-layout { grid-template-columns: 1fr; gap: 48px; }
  .content-layout-lg { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:nth-child(2) { border-right: none; }
  .founder-grid { grid-template-columns: 1fr; gap: 48px; }
  .cred-card { position: static; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions .btn-nav { display: none; }
  .nav-ham { display: flex; align-items: center; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .cred-row { flex-direction: column; }
  .cred-item { border-right: none; border-bottom: 1px solid var(--border); }
  .cred-item:last-child { border-bottom: none; }
  .f2col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .who-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bot { flex-direction: column; gap: 8px; text-align: center; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn { justify-content: center; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .page-hero h1 { font-size: clamp(30px, 8vw, 48px); }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right: none; }
}
