/* ============================================================
   OUTSOURCE IN KARACHI — Home page
   Design system: refined navy + electric blue
   ============================================================ */

:root {
  /* color */
  --ink:        #0B1220;   /* primary ink / navy */
  --ink-2:      #111A2E;   /* secondary navy for layering */
  --ink-3:      #1A2540;   /* tertiary */
  --paper:      #F6F4EF;   /* warm off-white */
  --paper-2:    #EFEDE6;   /* slightly deeper */
  --line:       #E4E1D8;   /* hairline on paper */
  --line-dark:  rgba(255,255,255,0.10);

  --blue:       #2D5BFF;   /* electric */
  --blue-2:     #4D75FF;   /* hover lift */
  --blue-soft:  rgba(45,91,255,0.08);

  --text:       #0B1220;
  --text-mute:  #5A6478;
  --text-mute-2:#8A91A1;
  --text-on-dark:rgba(255,255,255,0.94);
  --text-on-dark-mute:rgba(255,255,255,0.55);

  --green:      #19C37D;   /* live indicator */

  /* type */
  --f-sans: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --f-mono: 'Geist Mono', 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --f-display: 'Fraunces', 'Tiempos Headline', Georgia, serif;

  /* layout */
  --maxw: 1320px;
  --pad-x: 40px;
  --gutter: 24px;

  /* radii / shadows */
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 12px;
}

@media (min-width: 1100px) {
  :root { --pad-x: 56px; }
}

/* ---------- reset ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html, body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: clip !important;
  width: 100% !important;
  position: relative;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--paper);
  letter-spacing: -0.005em;
}
body.nav-open { overflow: hidden; }
a{text-decoration:none;color:inherit;cursor:pointer}
button{font-family:inherit;border:none;background:none;cursor:pointer;color:inherit}
img,svg{display:block;max-width:100%}

::selection{background:var(--blue);color:#fff}

/* ============================================================
   PRIMITIVES
   ============================================================ */

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* Elementor wraps every widget in .elementor-widget-container which can add
   its own padding on top of our .container padding. Strip it for all OIK
   widgets so the only horizontal spacing comes from .container. */
.elementor-widget-oik_home_hero > .elementor-widget-container,
.elementor-widget-oik_home_services > .elementor-widget-container,
.elementor-widget-oik_home_audience > .elementor-widget-container,
.elementor-widget-oik_home_diff > .elementor-widget-container,
.elementor-widget-oik_home_work > .elementor-widget-container,
.elementor-widget-oik_home_team > .elementor-widget-container,
.elementor-widget-oik_home_testi > .elementor-widget-container,
.elementor-widget-oik_global_cta > .elementor-widget-container,
.elementor-widget-oik_global_footer > .elementor-widget-container,
.elementor-widget-oik_stats_bar > .elementor-widget-container,
.elementor-widget-oik_contact_section > .elementor-widget-container,
.elementor-widget-oik_marquee > .elementor-widget-container,
.elementor-widget-oik_work_list > .elementor-widget-container,
.elementor-widget-oik_work_featured > .elementor-widget-container,
.elementor-widget-oik_service_portfolio > .elementor-widget-container,
.elementor-widget-oik_tools_section > .elementor-widget-container,
.elementor-widget-oik_platforms_section > .elementor-widget-container,
.elementor-widget-oik_shopify_approach > .elementor-widget-container,
.elementor-widget-oik_values_grid > .elementor-widget-container,
.elementor-widget-oik_timeline_section > .elementor-widget-container,
.elementor-widget-oik_origin_story > .elementor-widget-container,
.elementor-widget-oik_pullquote_section > .elementor-widget-container,
.elementor-widget-oik_faq_section > .elementor-widget-container,
.elementor-widget-oik_work_hero > .elementor-widget-container,
.elementor-widget-oik_about_hero > .elementor-widget-container,
.elementor-widget-oik_shopify_hero > .elementor-widget-container,
.elementor-widget-oik_navbar > .elementor-widget-container {
  padding: 0 !important;
}

.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  display: inline-block;
}
.eyebrow.on-dark { color: var(--text-on-dark-mute); }

.kicker {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.kicker.on-dark { color: var(--text-on-dark-mute); }

.h-display {
  font-family: var(--f-display);
  font-weight: 400;          /* Fraunces looks best between 350-450 for display */
  font-size: clamp(56px, 8.2vw, 132px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.h-display em {
  font-style: italic;
  font-weight: 300;
  color: var(--blue);
}

.h-section {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: 1;
  letter-spacing: -0.025em;
}
.h-section em {
  font-style: italic;
  font-weight: 300;
  color: var(--blue);
}

.h-card {
  font-family: var(--f-sans);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
}

.lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-mute);
  max-width: 56ch;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.lede.on-dark { color: var(--text-on-dark-mute); }

.body-sm {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-mute);
}

/* ----- buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
  flex-wrap: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn .arrow {
  width: 14px; height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: transform .25s cubic-bezier(.2,.8,.2,1);
}
.btn:hover .arrow { transform: translate(2px,-2px); }

.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover { background: var(--blue-2); }

.btn-ghost-dark {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-ghost-dark:hover { border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.04); }

.btn-ghost-light {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(11,18,32,0.15);
}
.btn-ghost-light:hover { border-color: var(--ink); }

.btn-paper {
  background: var(--paper);
  color: var(--ink);
}
.btn-paper:hover { background: #fff; }

/* arrow svg helper baked into ::after for the primary CTA */
.btn-primary .arrow::before,
.btn-paper .arrow::before {
  content:'→';
  font-family: var(--f-mono);
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(246,244,239,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
/* WordPress Admin Bar offset for Sticky Nav */
body.admin-bar .nav {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .nav {
    top: 46px;
  }
}
.nav-logo img {
  max-height: 55px;
  width: auto;
  display: block;
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  height: 68px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  flex-shrink: 0;
}
.nav-logo .mark {
  width: 26px; height: 26px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 6px;
  display: grid; place-items: center;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 600;
}
.nav-logo .name { display:flex; align-items:center; gap:6px; color: var(--ink); }
.nav-logo .name b { font-weight: 600; }
.nav-logo .name span { color: #A1A1A1; font-weight: 400; margin: 0 2px; }

.nav nav {
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; }
.nav-links li a {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 450;
  color: #5A6478;
  transition: all .2s;
  white-space: nowrap;
}
.nav-links li a:hover, 
.nav-links li.current-menu-item a { 
  color: var(--ink); 
  background: #EAE8E1; 
}

/* Vertical Divider in Menu */
.nav-links li.menu-divider,
.nav-links li:has(a:empty) { 
  width: 1px; 
  height: 14px; 
  background: #D1CFCA; 
  margin: 0 12px; 
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 38px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff !important;
  font-size: 13px;
  font-weight: 500;
  transition: background .2s;
  flex-shrink: 0;
}
.nav-cta .dot { 
  width: 6px; height: 6px; 
  border-radius: 50%; 
  background: #19C37D; 
  box-shadow: 0 0 0 3px rgba(25,195,125,0.2); 
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  z-index: 10001; /* Higher than mobile-menu */
}
.mobile-toggle span { width: 100%; height: 2px; background: var(--ink); transition: .3s; }

/* Ensure whole nav is on top and solid when menu is open */
body.nav-open .nav {
  z-index: 99999 !important;
  background: #0B1220 !important;
  height: 100vh !important;
  position: fixed !important;
  inset: 0 !important;
}

.mobile-menu {
  position: absolute; /* relative to fixed nav */
  inset: 0;
  background: #0B1220;
  display: flex;
  flex-direction: column;
  padding: 100px 0 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px); /* Subtle slide from right */
  transition: transform .4s ease, opacity .4s ease;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

body.nav-open .mobile-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(0);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 var(--pad-x) 40px;
}

.mobile-nav-kicker {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 32px;
}

.mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-links li {
  list-style: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav-links li a {
  display: block;
  padding: 18px 0;
  font-family: var(--f-sans);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff !important;
}

.mobile-nav-links li.current-menu-item a {
  color: #19C37D !important;
}

.mobile-menu .nav-cta {
  margin-top: auto;
  width: 100%;
  height: 56px;
  background: #000 !important;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff !important;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu .nav-cta .dot {
  width: 6px;
  height: 6px;
  background: #19C37D;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(25,195,125,0.2);
}

/* Ensure toggle stays white on dark bg */
.mobile-toggle.active span {
  background: #fff !important;
}

@media (max-width: 1350px) {
  .nav-inner { gap: 16px; }
  .nav-links li a { padding: 0 10px; font-size: 12px; }
}

@media (max-width: 1300px) {
  .nav-inner { grid-template-columns: auto 1fr auto auto; gap: 16px; }
  .nav .desktop-nav, .nav-inner > .nav-cta { display: none !important; }
  .mobile-toggle { display: flex !important; justify-self: end; }
  .mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mobile-toggle.active span:nth-child(2) { transform: translateY(-0px) rotate(-45deg); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 96px 0 0;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 96px 96px;
  background-position: -1px -1px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 60% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 60% 30%, #000 30%, transparent 80%);
}
.hero-glow {
  position: absolute;
  top: -200px;
  right: -250px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(45,91,255,0.18), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x) 48px;
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-on-dark-mute);
}
.hero-status .live {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(25,195,125,0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(25,195,125,0.4); }
  50%     { box-shadow: 0 0 0 6px rgba(25,195,125,0); }
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-on-dark-mute);
}
.hero-meta span { display:inline-flex; align-items:center; gap:8px; }
.hero-meta .sep { color: rgba(255,255,255,0.2); }

.hero-title {
  color: #fff;
  margin-bottom: 28px;
  max-width: 16ch;
}
.hero-title em {
  color: var(--blue-2);
  font-style: italic;
  font-weight: 300;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
}
.hero-pitch {
  font-size: 19px;
  line-height: 1.5;
  color: var(--text-on-dark);
  max-width: 44ch;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.hero-pitch strong { color: #fff; font-weight: 500; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* hero stats strip */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  margin-top: 40px;
}
.hero-stat {
  padding: 28px 28px 32px;
  border-right: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-stat:last-child { border-right: none; }
.hero-stat .num {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}
.hero-stat .num em { color: var(--blue-2); font-style: italic; font-weight: 300; }
.hero-stat .lbl {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-on-dark-mute);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--ink);
  color: #fff;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 48s linear infinite;
  gap: 48px;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
.marquee-item .dot {
  width: 6px; height: 6px;
  background: var(--blue-2);
  border-radius: 50%;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section {
  padding: 120px 0;
}
.section.tight { padding: 96px 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}
.section-head .left { display:flex; flex-direction:column; gap: 20px; }
.section-head .right { display:flex; flex-direction:column; gap: 16px; padding-bottom: 6px; }

.section-num {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-num.on-dark { color: var(--text-on-dark-mute); }
.section-num .bar { width: 24px; height: 1px; background: currentColor; opacity: 0.4; }

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.svc-row {
  display: contents;
}
.svc-cell {
  padding: 40px 32px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  cursor: pointer;
  transition: background .25s;
  min-height: 280px;
}
.svc-cell:nth-child(3n) { border-right: none; }
.svc-cell:nth-child(-n+3) { border-top: none; }
.svc-cell:hover { background: rgba(11,18,32,0.02); }
.svc-cell.no-link {
  cursor: default;
}
.svc-cell.no-link:hover {
  background: transparent;
}
.svc-cell.no-link:hover .svc-foot .arrow-link {
  gap: 6px;
  color: var(--ink);
}

.svc-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-mute-2);
}
.svc-name {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.svc-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-mute);
  max-width: 32ch;
}
.svc-foot {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.svc-foot .arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  transition: gap .25s;
}
.svc-cell:hover .svc-foot .arrow-link { gap: 12px; color: var(--blue); }

/* keep consistent internal padding for all cells (full-bleed grid, padded interiors) */

/* ============================================================
   AUDIENCE (Who we work with)
   ============================================================ */
.aud {
  background: var(--ink);
  color: #fff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.aud::before {
  content:'';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 96px 100%;
  pointer-events: none;
}
.aud .section-head .left .h-section { color: #fff; }
.aud-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  position: relative;
}
.aud-card {
  padding: 56px 48px;
  border-right: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.aud-card:first-child { padding-left: 0; }
.aud-card:last-child { border-right: none; padding-right: 0; }

.aud-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-2);
}
.aud-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 18ch;
}
.aud-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.aud-list li {
  padding: 16px 0;
  border-top: 1px solid var(--line-dark);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-on-dark);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}
.aud-list li:last-child { border-bottom: 1px solid var(--line-dark); }
.aud-list li .li-num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-on-dark-mute);
  padding-top: 4px;
  letter-spacing: 0.04em;
}

/* ============================================================
   DIFFERENTIATORS (Why us)
   ============================================================ */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.diff-card {
  padding: 56px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
}
.diff-card:nth-child(2n+1) { padding-left: 0; }
.diff-card:nth-child(2n) { border-right: none; padding-right: 0; }
.diff-num {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: italic;
  font-size: 88px;
  line-height: 0.9;
  color: var(--blue);
  letter-spacing: -0.04em;
}
.diff-content { display:flex; flex-direction:column; gap: 12px; }
.diff-title {
  font-family: var(--f-sans);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.diff-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-mute);
  max-width: 42ch;
}

/* ============================================================
   WORK
   ============================================================ */
.work-bg {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.work-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  display: flex;
  flex-direction: column;
}
.work-card:hover {
  transform: translateY(-4px);
}
.work-thumb {
  aspect-ratio: 4/3;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.work-thumb::after {
  content:'';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 14px);
  pointer-events: none;
}
.work-thumb-tag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.work-thumb-tag .d { width: 5px; height: 5px; background: var(--blue-2); border-radius: 50%; }
.work-placeholder {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-align: center;
  position: relative;
  z-index: 1;
}
.work-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.work-pills { display:flex; gap: 6px; flex-wrap: wrap; }
.work-pill {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text-mute);
  background: var(--paper);
}
.work-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.work-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-mute);
}
.work-meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-mute-2);
}
.work-meta .sep { opacity: 0.4; }

.see-all {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: gap .25s, color .25s;
}
.see-all:hover { gap: 18px; color: var(--blue); border-bottom-color: var(--blue); }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.team-photo {
  aspect-ratio: 3/4;
  background: var(--ink);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.team-photo::after {
  content:'';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4));
}
.team-initials {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 96px;
  line-height: 1;
  color: rgba(255,255,255,0.18);
  letter-spacing: -0.04em;
}
.team-photo .corner {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.team-photo .placeholder-label {
  position: absolute;
  bottom: 16px; left: 16px;
  z-index: 2;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.team-name {
  font-family: var(--f-sans);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.team-role {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.team-bio {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-mute);
}

/* ============================================================
   PROOF / STATS BAR
   ============================================================ */
.proof {
  background: var(--blue);
  color: #fff;
}
.proof-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.proof-cell {
  padding: 56px 40px;
  border-right: 1px solid rgba(255,255,255,0.18);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.proof-cell:first-child { padding-left: 0; }
.proof-cell:last-child { padding-right: 0; }
.proof-cell:last-child { border-right: none; }
.proof-num {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}
.proof-num em { font-style: italic; font-weight: 300; opacity: 0.8; }
.proof-lbl {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.testi-card {
  padding: 56px 48px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.testi-card:first-child { padding-left: 0; }
.testi-card:last-child { border-right: none; padding-right: 0; }
.testi-quote {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.018em;
  color: var(--ink);
  max-width: 30ch;
}
.testi-quote::before {
  content: '“';
  font-family: var(--f-display);
  font-size: 64px;
  line-height: 0.6;
  color: var(--blue);
  display: block;
  margin-bottom: 16px;
  font-weight: 300;
}
.testi-meta {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 16px;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.testi-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}
.testi-loc {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-mute);
  text-transform: uppercase;
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  background: var(--ink);
  color: #fff;
  padding: 140px 0 120px;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content:'';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 96px 100%;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
}
.cta-title {
  color: #fff;
  max-width: 14ch;
}
.cta-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 8px;
}
.cta-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-on-dark-mute);
  max-width: 44ch;
}
.cta-actions { display:flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: #fff;
  border-top: 1px solid var(--line-dark);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand .logo-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.footer-brand .logo-row .mark {
  width: 32px; height: 32px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 6px;
  display: grid; place-items: center;
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 600;
}
.footer-brand .logo-row .name {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.footer-about {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-on-dark-mute);
  max-width: 36ch;
  margin-bottom: 24px;
}
.footer-chips { display:flex; gap: 6px; flex-wrap: wrap; }
.footer-chip {
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.footer-col h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display:flex; flex-direction:column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  transition: color .15s;
}
.footer-col a:hover { color: var(--blue-2); }

.footer-bot {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bot .links { display: flex; gap: 24px; }
.footer-bot a { color: rgba(255,255,255,0.4); transition: color .15s; }
.footer-bot a:hover { color: #fff; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

/* Force visibility in Elementor Editor */
.elementor-editor-active [data-reveal] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
.elementor-editor-active .mobile-menu {
  display: none !important;
}
.elementor-editor-active .hero-glow,
.elementor-editor-active .hero-grid-bg {
  display: block !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-bottom { grid-template-columns: 1fr; gap: 32px; }
  .hero-actions { justify-content: flex-start; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .hero-stat:nth-child(2) { border-right: none; }
  .hero-stat:nth-child(3) { border-top: 1px solid var(--line-dark); border-right: 1px solid var(--line-dark); }
  .hero-stat:nth-child(4) { border-top: 1px solid var(--line-dark); }

  .section { padding: 88px 0; }
  .section-head { grid-template-columns: 1fr; gap: 20px; align-items: start; }

  .svc-grid, .work-grid, .team-grid { gap: 24px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .aud-grid { grid-template-columns: 1fr; }
  .aud-card { border-right: none; border-bottom: 1px solid var(--line-dark); padding: 40px 0; }
  .aud-card:last-child { padding-left: 0; border-bottom: none; }

  .diff-grid { border-top: none; }
  .diff-card { 
    grid-template-columns: 1fr; 
    gap: 16px; 
    padding: 40px 0 !important; 
    border-right: none !important;
    border-bottom: 1px solid var(--line);
  }
  .diff-num { font-size: 64px; line-height: 1; }

  .testi-grid { grid-template-columns: 1fr; }
  .testi-card { border-right: none; padding: 40px 0; border-bottom: 1px solid var(--line); }
  .testi-card:last-child { border-bottom: none; padding-left: 0; }
}

@media (max-width: 720px) {
  :root { --pad-x: 24px; }
  .nav-links { display: none; }
  .hero { padding-top: 64px; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat { border-right: none !important; border-top: 1px solid var(--line-dark) !important; }
  .svc-grid, .work-grid, .team-grid { gap: 16px; }
  .svc-cell { border-right: none !important; padding-left: 0 !important; }
  .proof-inner { grid-template-columns: 1fr; }
  .proof-cell { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.18); }
  .footer-grid { grid-template-columns: 1fr; }
  .marquee-item { font-size: 22px; gap: 32px; }
}
