/* ═══════════════════════════════════
   NAROPS — Global Styles
   ═══════════════════════════════════ */

:root {
  --blue:        #284AE1;
  --blue-dark:   #1A35B8;
  --blue-subtle: #EEF1FC;
  --lime:        #B2FF59;
  --bg-dark:     #07070F;
  --ink:         #08090D;
  --text-mid:    #52525B;
  --text-light:  #A1A1AA;
  --border:      #E4E4E7;
  --surface:     #FAFAFA;
  --white:       #FFFFFF;
  --font-head:   'Poppins', sans-serif;
  --font-body:   'Outfit', sans-serif;
  --cw:          1200px;
  --cpx:         48px;
  --sy:          128px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.container { max-width: var(--cw); margin: 0 auto; padding: 0 var(--cpx); }

/* ── REVEAL ─────────────────────── */
[data-r] { opacity: 0; }

/* ── HERO AMBIENT ORBS ──────────── */
.hero-orbs { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero-orb { position: absolute; border-radius: 50%; will-change: transform; }
.hero-orb-1 {
  width: 780px; height: 780px;
  background: radial-gradient(circle, rgba(40,74,225,0.55) 0%, transparent 68%);
  filter: blur(90px); top: -260px; left: -280px;
}
.hero-orb-2 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(178,255,89,0.22) 0%, transparent 70%);
  filter: blur(110px); top: -60px; right: -160px;
}
.hero-orb-3 {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(40,74,225,0.28) 0%, transparent 70%);
  filter: blur(130px); bottom: -180px; right: 80px;
}

/* ── HERO DOT GRID ──────────────── */
.hero-grid {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.18) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0,0,0,0.25) 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0,0,0,0.25) 0%, transparent 100%);
}

/* ── SECTION AMBIENT ACCENT ─────── */
.section-accent {
  position: absolute; pointer-events: none; border-radius: 50%;
  will-change: transform;
}

/* ── FLOATING CTA BUTTON ────────── */
.floating-cta {
  position: fixed; bottom: 28px; right: 28px; z-index: 300;
  background: var(--blue); color: var(--white);
  padding: 13px 22px; border-radius: 100px;
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  text-decoration: none; display: flex; align-items: center; gap: 7px;
  box-shadow: 0 8px 28px rgba(40,74,225,0.4);
  opacity: 0; transform: translateY(16px) scale(0.95);
  transition: opacity 0.35s, transform 0.35s, background 0.2s, box-shadow 0.2s;
  pointer-events: none;
}
.floating-cta.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.floating-cta:hover { background: var(--blue-dark); box-shadow: 0 12px 36px rgba(40,74,225,0.5); transform: translateY(-2px) scale(1); }
.floating-cta-dot { width: 7px; height: 7px; background: var(--lime); border-radius: 50%; animation: blink 2.5s infinite; }

/* ── 3D CARD TILT ────────────────── */
.home-svc-card, .tcard, .case-card {
  transform-style: preserve-3d;
  will-change: transform;
}


/* ── NAV ────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.07); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; max-width: var(--cw); margin: 0 auto; padding: 0 var(--cpx);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { width: 26px; height: 26px; }
.logo-mark { font-family: var(--font-head); font-weight: 700; font-size: 18px; letter-spacing: -0.4px; color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: var(--text-mid); text-decoration: none; transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta {
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  background: var(--ink); color: var(--white) !important;
  padding: 10px 22px; border-radius: 100px; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-cta:hover { background: var(--blue) !important; transform: translateY(-1px); }

/* ── HERO (home) ────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--bg-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1920&h=1080&fit=crop&q=80') center/cover no-repeat;
  filter: brightness(0.52) saturate(0.75);
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(165deg, rgba(7,7,15,0.72) 0%, rgba(28,50,200,0.08) 55%, rgba(7,7,15,0.84) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 820px; margin: 0 auto;
  padding: 160px var(--cpx) 100px;
  width: 100%; text-align: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(178,255,89,0.08); border: 1px solid rgba(178,255,89,0.22);
  color: var(--lime); font-family: var(--font-body); font-size: 11px;
  font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 40px;
}
.hero-tag-dot { width: 6px; height: 6px; background: var(--lime); border-radius: 50%; animation: blink 2.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
.hero-title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1.05; letter-spacing: -3px; color: var(--white);
}
.hero-title-rotate { color: var(--lime); min-height: 1.1em; display: block; }
.cursor-bar {
  display: inline-block; width: 3px; background: var(--lime);
  margin-left: 3px; border-radius: 2px; height: 0.82em;
  position: relative; top: 0.07em;
  animation: blink-c 0.72s step-end infinite;
}
@keyframes blink-c { 0%,100%{opacity:1} 50%{opacity:0} }
.hero-sub {
  font-family: var(--font-body); font-size: 19px; line-height: 1.78;
  color: rgba(255,255,255,0.50); max-width: 420px; margin: 32px auto 52px;
}
.hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; justify-content: center; }

/* ── PAGE HERO (inner pages) ────── */
.page-hero {
  background: var(--bg-dark);
  padding: 168px var(--cpx) 108px;
  overflow: hidden; position: relative;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(165deg, rgba(7,7,15,0.96) 0%, rgba(28,50,200,0.07) 60%, rgba(7,7,15,0.99) 100%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; max-width: var(--cw); margin: 0 auto; }
.page-hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--lime); font-family: var(--font-body); font-size: 11px;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 28px;
}
.page-hero-title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(52px, 7.5vw, 104px);
  line-height: 1.0; letter-spacing: -4px; color: var(--white);
  max-width: 820px;
}
.page-hero-sub {
  font-family: var(--font-body); font-size: 18px; line-height: 1.76;
  color: rgba(255,255,255,0.42); max-width: 500px; margin-top: 28px;
}
.page-hero-line { width: 40px; height: 2px; background: var(--lime); margin-top: 44px; }

/* ── BUTTONS ────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: 100px; text-decoration: none;
  transition: all 0.22s ease; white-space: nowrap; cursor: pointer;
}
.btn-blue { background: var(--blue); color: var(--white); border: none; }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(40,74,225,0.3); }
.btn-outline { background: transparent; color: rgba(255,255,255,0.75); border: 1.5px solid rgba(255,255,255,0.22); }
.btn-outline:hover { border-color: rgba(255,255,255,0.55); color: var(--white); }
.btn-lime { background: var(--lime); color: var(--bg-dark); font-weight: 700; border: none; }
.btn-lime:hover { background: #C5FF7A; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(178,255,89,0.22); }
.btn-ghost-light { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.14); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.07); color: var(--white); }
.btn-ink { background: var(--ink); color: var(--white); border: none; }
.btn-ink:hover { background: var(--blue); transform: translateY(-1px); }
.btn-border { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.btn-border:hover { border-color: var(--ink); }

/* ── TRUST ──────────────────────── */
.trust { background: var(--surface); padding: 28px 0; border-bottom: 1px solid var(--border); }
.trust-inner { display: flex; align-items: center; gap: 52px; }
.trust-label { font-family: var(--font-body); font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); white-space: nowrap; flex-shrink: 0; }
.trust-logos { display: flex; align-items: center; gap: 44px; }
.trust-logo { font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: #C4C4C8; transition: color 0.2s; cursor: default; }
.trust-logo:hover { color: #999; }

/* ── SECTION COMMON ─────────────── */
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--blue);
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1; letter-spacing: -1.5px; color: var(--ink);
}
.section-sub {
  font-family: var(--font-body); font-size: 17px; line-height: 1.7;
  color: var(--text-mid); margin-top: 16px; max-width: 540px;
}

/* ── VALUE ──────────────────────── */
.value { padding: var(--sy) 0; }
.value-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; }
.value-text { font-family: var(--font-body); font-size: 18px; line-height: 1.8; color: var(--text-mid); margin: 24px 0 36px; max-width: 480px; }
.value-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-weight: 600; font-size: 15px; color: var(--blue); text-decoration: none; transition: gap 0.2s; }
.value-link:hover { gap: 13px; }
.value-right { border-radius: 20px; overflow: hidden; min-height: 460px; height: 100%; }
.value-right img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.88); transition: transform 0.6s ease, filter 0.4s; }
.value-right:hover img { transform: scale(1.03); filter: saturate(1); }

/* ── SERVICES ───────────────────── */
.services { padding: var(--sy) 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.services-split { display: grid; grid-template-columns: 1fr 1.45fr; gap: 96px; align-items: start; }
.services-left { position: sticky; top: 96px; }
.services-desc { font-family: var(--font-body); font-size: 16px; line-height: 1.72; color: var(--text-mid); margin-top: 18px; max-width: 340px; }
.svc-list { display: flex; flex-direction: column; }
.svc-row {
  display: grid; grid-template-columns: 64px 1fr 40px;
  align-items: center; gap: 32px;
  padding: 28px 32px; background: var(--white);
  border: 1px solid var(--border); border-bottom: none;
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer; text-decoration: none;
}
.svc-row:first-child { border-radius: 16px 16px 0 0; }
.svc-row:last-child { border-bottom: 1px solid var(--border); border-radius: 0 0 16px 16px; }
.svc-row:hover { background: #FAFBFF; box-shadow: 0 2px 16px rgba(40,74,225,0.06); z-index: 1; position: relative; }
.svc-num { font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: 0.5px; color: var(--text-light); }
.svc-name { font-family: var(--font-head); font-weight: 700; font-size: 19px; letter-spacing: -0.4px; color: var(--ink); }
.svc-arrow {
  width: 38px; height: 38px; border: 1.5px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--text-light); font-size: 15px; transition: all 0.22s; flex-shrink: 0;
}
.svc-row:hover .svc-arrow { background: var(--blue); border-color: var(--blue); color: var(--white); transform: rotate(45deg); }

/* ── CASES ──────────────────────── */
.cases { padding: var(--sy) 0; }
.cases-head { margin-bottom: 56px; }
.cases-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.case-card {
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
  background: var(--white); text-decoration: none; display: block;
}
.case-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.case-thumb { height: 220px; overflow: hidden; }
.case-thumb-photo {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.82) brightness(0.95);
  transition: transform 0.55s ease, filter 0.35s;
}
.case-card:hover .case-thumb-photo { transform: scale(1.06); filter: saturate(1) brightness(1.02); }
.case-body { padding: 28px; }
.case-tag {
  display: inline-block; font-family: var(--font-body); font-size: 11px;
  font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px; margin-bottom: 14px;
}
.case-tag-blue { background: var(--blue-subtle); color: var(--blue); }
.case-tag-green { background: #F0FDF4; color: #16A34A; }
.case-tag-orange { background: #FFF7ED; color: #EA580C; }
.case-client { font-family: var(--font-body); font-size: 12px; color: var(--text-light); margin-bottom: 4px; }
.case-title { font-family: var(--font-head); font-weight: 700; font-size: 18px; letter-spacing: -0.3px; color: var(--ink); margin-bottom: 12px; line-height: 1.3; }
.case-desc { font-family: var(--font-body); font-size: 14px; line-height: 1.68; color: var(--text-mid); margin-bottom: 20px; }
.case-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-body); font-weight: 600; font-size: 14px; color: var(--blue); text-decoration: none; transition: gap 0.2s; }
.case-link:hover { gap: 10px; }

/* ── PROCESS ────────────────────── */
.process { padding: var(--sy) 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-head { max-width: 540px; margin-bottom: 72px; }
.process-sub { font-family: var(--font-body); font-size: 17px; line-height: 1.7; color: var(--text-mid); margin-top: 18px; }
.process-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 28px; left: calc(100%/6); right: calc(100%/6);
  height: 1px; background: linear-gradient(90deg,transparent,var(--border) 15%,var(--border) 85%,transparent);
}
.ps { padding: 0 48px 0 0; }
.ps-circle {
  width: 56px; height: 56px; border: 1.5px solid var(--border);
  background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px; position: relative; z-index: 1;
}
.ps-inner { width: 28px; height: 28px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.ps-num { font-family: var(--font-head); font-weight: 800; font-size: 11px; color: var(--white); }
.ps-title { font-family: var(--font-head); font-weight: 700; font-size: 19px; letter-spacing: -0.3px; color: var(--ink); margin-bottom: 10px; }
.ps-desc { font-family: var(--font-body); font-size: 15px; line-height: 1.7; color: var(--text-mid); }

/* ── TESTIMONIALS ───────────────── */
.testimonials { padding: var(--sy) 0; }
.testi-head { margin-bottom: 56px; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.tcard {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.tcard:hover { border-color: rgba(40,74,225,0.18); box-shadow: 0 8px 32px rgba(40,74,225,0.07); transform: translateY(-4px); }
.tcard-quote { font-family: var(--font-body); font-size: 15.5px; line-height: 1.72; color: var(--text-mid); flex: 1; font-style: italic; }
.tcard-quote::before { content: '"'; color: var(--blue); font-style: normal; font-size: 20px; line-height: 0; vertical-align: -4px; margin-right: 2px; }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--white);
  overflow: hidden;
}
.tcard-avatar.green { background: #16A34A; }
.tcard-avatar.dark { background: var(--ink); }
.tcard-name { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--ink); }
.tcard-role { font-family: var(--font-body); font-size: 12px; color: var(--text-light); margin-top: 2px; }

/* ── CTA ────────────────────────── */
.cta { background: var(--bg-dark); padding: calc(var(--sy) * 1.1) var(--cpx); text-align: center; position: relative; overflow: hidden; }
.cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 800px; height: 400px; background: radial-gradient(ellipse,rgba(40,74,225,0.22) 0%,transparent 65%); pointer-events: none; }
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(178,255,89,0.1); border: 1px solid rgba(178,255,89,0.2); color: var(--lime); font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase; padding: 7px 14px; border-radius: 100px; margin-bottom: 32px; }
.cta-title { font-family: var(--font-head); font-weight: 900; font-size: clamp(36px,5vw,64px); line-height: 1.0; letter-spacing: -2.5px; color: var(--white); margin-bottom: 22px; }
.cta-title em { font-style: normal; color: var(--blue); }
.cta-sub { font-family: var(--font-body); font-size: 17px; color: rgba(255,255,255,0.48); margin-bottom: 44px; line-height: 1.65; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 14px; }

/* ── FOOTER ─────────────────────── */
footer { background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,0.05); padding: 44px var(--cpx); }
.footer-inner { max-width: var(--cw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-mark { font-family: var(--font-head); font-weight: 700; font-size: 18px; letter-spacing: -0.3px; color: rgba(255,255,255,0.82); }
.footer-copy { font-family: var(--font-body); font-size: 12.5px; color: rgba(255,255,255,0.22); }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-family: var(--font-body); font-size: 12.5px; color: rgba(255,255,255,0.32); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.75); }

/* ── TEAM ───────────────────────── */
.team { padding: var(--sy) 0; }
.team-head { margin-bottom: 64px; }
.team-intro { font-family: var(--font-body); font-size: 17px; line-height: 1.7; color: var(--text-mid); max-width: 540px; margin-top: 18px; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; }
.team-photo { width: 100%; aspect-ratio: 4/5; border-radius: 20px; overflow: hidden; margin-bottom: 24px; background: var(--surface); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.6s ease; display: block; }
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-name { font-family: var(--font-head); font-weight: 700; font-size: 20px; letter-spacing: -0.3px; color: var(--ink); margin-bottom: 4px; }
.team-role { font-family: var(--font-body); font-size: 11.5px; font-weight: 600; color: var(--blue); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; }
.team-bio { font-family: var(--font-body); font-size: 14.5px; line-height: 1.7; color: var(--text-mid); }
.team-social { margin-top: 16px; display: flex; gap: 12px; }
.team-social a { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--blue); text-decoration: none; transition: opacity 0.2s; }
.team-social a:hover { opacity: 0.65; }

/* ── SERVICE DETAIL ─────────────── */
.svc-detail { padding: var(--sy) 0; border-bottom: 1px solid var(--border); }
.svc-detail:last-of-type { border-bottom: none; }
.svc-detail-inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: 96px; align-items: center; }
.svc-detail-inner.reverse { direction: rtl; }
.svc-detail-inner.reverse > * { direction: ltr; }
.svc-detail-num { font-family: var(--font-head); font-weight: 700; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); margin-bottom: 16px; }
.svc-detail-title { font-family: var(--font-head); font-weight: 800; font-size: clamp(32px,4vw,52px); letter-spacing: -2px; line-height: 1.06; color: var(--ink); margin-bottom: 24px; }
.svc-detail-desc { font-family: var(--font-body); font-size: 17px; line-height: 1.8; color: var(--text-mid); margin-bottom: 32px; }
.svc-detail-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.svc-detail-list li { display: flex; align-items: flex-start; gap: 12px; font-family: var(--font-body); font-size: 15px; color: var(--text-mid); line-height: 1.6; }
.svc-detail-list li::before { content: '—'; color: var(--blue); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.svc-detail-photo { border-radius: 24px; overflow: hidden; aspect-ratio: 5/4; }
.svc-detail-photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.85); transition: transform 0.65s, filter 0.45s; }
.svc-detail-photo:hover img { transform: scale(1.03); filter: saturate(1); }

/* ── STORY ──────────────────────── */
.story { padding: var(--sy) 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; }
.story-photo { border-radius: 20px; overflow: hidden; aspect-ratio: 3/4; }
.story-photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.85); }
.story-text { font-family: var(--font-body); font-size: 17px; line-height: 1.8; color: var(--text-mid); margin-top: 24px; }
.story-text + .story-text { margin-top: 16px; }

/* ── MANIFESTO ──────────────────── */
.manifesto { padding: var(--sy) 0; }
.manifesto-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 96px; align-items: start; }
.manifesto-label { position: sticky; top: 120px; }
.manifesto-list { display: flex; flex-direction: column; gap: 0; }
.mf-item { border-top: 1px solid var(--border); padding: 36px 0; }
.mf-item:last-child { border-bottom: 1px solid var(--border); }
.mf-num { font-family: var(--font-head); font-weight: 700; font-size: 11px; letter-spacing: 2px; color: var(--text-light); text-transform: uppercase; margin-bottom: 14px; }
.mf-title { font-family: var(--font-head); font-weight: 800; font-size: clamp(22px,2.5vw,32px); letter-spacing: -0.8px; color: var(--ink); margin-bottom: 14px; }
.mf-desc { font-family: var(--font-body); font-size: 16px; line-height: 1.72; color: var(--text-mid); max-width: 560px; }

/* ── CASE FULL (portfolio page) ─── */
.case-full { padding: var(--sy) 0; border-bottom: 1px solid var(--border); }
.case-full:last-of-type { border-bottom: none; }
.case-full-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.case-full-inner.reverse { direction: rtl; }
.case-full-inner.reverse > * { direction: ltr; }
.case-full-photo { border-radius: 20px; overflow: hidden; aspect-ratio: 16/11; }
.case-full-photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.85); transition: transform 0.7s, filter 0.5s; }
.case-full-photo:hover img { transform: scale(1.03); filter: saturate(1); }
.case-full-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.case-full-title { font-family: var(--font-head); font-weight: 800; font-size: clamp(26px,3.5vw,44px); letter-spacing: -1.5px; line-height: 1.08; color: var(--ink); margin-bottom: 20px; }
.case-full-desc { font-family: var(--font-body); font-size: 17px; line-height: 1.8; color: var(--text-mid); margin-bottom: 28px; }
.case-full-detail { display: flex; flex-direction: column; gap: 8px; margin-bottom: 32px; padding: 20px; background: var(--surface); border-radius: 14px; border: 1px solid var(--border); }
.case-full-detail-row { display: flex; gap: 8px; font-family: var(--font-body); font-size: 14px; }
.case-full-detail-row strong { color: var(--ink); font-weight: 600; min-width: 80px; }
.case-full-detail-row span { color: var(--text-mid); }

/* ── CONTACT ────────────────────── */
.contact { padding: var(--sy) 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 96px; align-items: start; }
.contact-info { position: sticky; top: 96px; }
.contact-title { font-family: var(--font-head); font-weight: 800; font-size: clamp(28px,3.5vw,44px); letter-spacing: -1.5px; line-height: 1.1; color: var(--ink); margin-bottom: 20px; }
.contact-text { font-family: var(--font-body); font-size: 17px; line-height: 1.78; color: var(--text-mid); margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.cd-item { display: flex; flex-direction: column; gap: 3px; }
.cd-label { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); }
.cd-value { font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--ink); }
.cd-value a { color: var(--blue); text-decoration: none; }
.cd-value a:hover { text-decoration: underline; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--ink); }
.form-group input, .form-group select, .form-group textarea {
  font-family: var(--font-body); font-size: 15px;
  padding: 14px 16px; border: 1.5px solid var(--border);
  border-radius: 12px; background: var(--white); color: var(--ink);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%; -webkit-appearance: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(40,74,225,0.08);
}
.form-group textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); }
.form-note { font-family: var(--font-body); font-size: 13px; color: var(--text-light); line-height: 1.6; }
.form-submit { width: 100%; padding: 16px; font-size: 16px; justify-content: center; border-radius: 14px; }

/* ── HOME SERVICE CARDS ─────────── */
.home-svcs { padding: var(--sy) 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.home-svcs-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; gap: 16px; }
.home-svcs-note { font-family: var(--font-body); font-size: 13px; color: var(--text-light); }
.home-svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.home-svc-card {
  border-radius: 20px; overflow: hidden;
  background: var(--white); border: 1px solid var(--border);
  transition: transform 0.28s, box-shadow 0.28s;
  text-decoration: none; display: block;
}
.home-svc-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0,0,0,0.09); }
.home-svc-photo { height: 260px; overflow: hidden; }
.home-svc-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.8) brightness(0.96);
  transition: transform 0.6s ease, filter 0.4s;
}
.home-svc-card:hover .home-svc-photo img { transform: scale(1.06); filter: saturate(1) brightness(1.02); }
.home-svc-body { padding: 32px 32px 28px; }
.home-svc-num { font-family: var(--font-head); font-weight: 700; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); margin-bottom: 12px; }
.home-svc-name { font-family: var(--font-head); font-weight: 800; font-size: 22px; letter-spacing: -0.6px; color: var(--ink); margin-bottom: 6px; line-height: 1.2; }
.home-svc-result { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--blue); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.home-svc-desc { font-family: var(--font-body); font-size: 15px; line-height: 1.72; color: var(--text-mid); margin-bottom: 24px; }
.home-svc-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-body); font-weight: 600; font-size: 14px; color: var(--blue); transition: gap 0.2s; }
.home-svc-card:hover .home-svc-link { gap: 11px; }

/* ── RESPONSIVE ─────────────────── */
@media (max-width: 768px) {
  :root { --cpx: 20px; --sy: 80px; }
  .nav-links li:not(:last-child) { display: none; }
  .nav-cta { padding: 9px 18px; font-size: 13px; }
  .page-hero { padding: 130px var(--cpx) 72px; }
  .page-hero-title { letter-spacing: -2px; }
  .hero-inner { padding: 120px var(--cpx) 72px; }
  .hero-sub { font-size: 16px; margin: 24px auto 40px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .trust-inner { flex-direction: column; gap: 14px; align-items: flex-start; }
  .trust-logos { flex-wrap: wrap; gap: 20px 28px; }
  .value-inner { grid-template-columns: 1fr; gap: 36px; }
  .value-right { min-height: 260px; order: -1; }
  .value-text { font-size: 16px; }
  .services-split { grid-template-columns: 1fr; gap: 36px; }
  .services-left { position: static; }
  .services-desc { max-width: 100%; }
  .svc-row { padding: 22px 20px; gap: 20px; }
  .cases-grid { grid-template-columns: 1fr; gap: 20px; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .ps { padding: 0; }
  .process-head { max-width: 100%; margin-bottom: 48px; }
  .testi-grid { grid-template-columns: 1fr; gap: 16px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 320px; justify-content: center; }
  .cta-sub { font-size: 15px; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .footer-copy { order: 3; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 14px 20px; }
  .svc-detail-inner, .svc-detail-inner.reverse { grid-template-columns: 1fr; gap: 36px; direction: ltr; }
  .story-inner { grid-template-columns: 1fr; gap: 36px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
  .manifesto-label { position: static; }
  .case-full-inner, .case-full-inner.reverse { grid-template-columns: 1fr; gap: 36px; direction: ltr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-info { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .home-svc-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  :root { --cpx: 16px; --sy: 64px; }
  .hero-title { letter-spacing: -1.5px; }
  .hero-tag { font-size: 10px; letter-spacing: 1.2px; }
  .section-title { letter-spacing: -0.8px; }
  .svc-row { padding: 18px 14px; gap: 14px; grid-template-columns: 48px 1fr 36px; }
  .svc-name { font-size: 17px; }
  .case-thumb { height: 180px; }
  .case-body { padding: 20px; }
  .tcard { padding: 24px 20px; }
  .nav-inner { height: 60px; }
  .team-grid { grid-template-columns: 1fr; }
  .page-hero-title { letter-spacing: -1.5px; }
}
