/* ============================================================
   MuckaMedia — styles.css  (Premium Cinematic Redesign)
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --royal-blue:    #1E40AF;
  --blue-mid:      #2563EB;
  --blue-bright:   #3B82F6;
  --yellow:        #FACC15;
  --yellow-dim:    #EAB308;
  --ink:           #060B18;
  --navy:          #0A1020;
  --navy-2:        #0F1929;
  --navy-3:        #111827;
  --navy-card:     #131C30;
  --surface:       #0E1624;
  --glass:         rgba(255,255,255,.04);
  --glass-border:  rgba(255,255,255,.07);
  --glass-hover:   rgba(255,255,255,.07);
  --off-white:     #F0F4FF;
  --white:         #FFFFFF;
  --slate:         #94A3B8;
  --slate-dim:     rgba(148,163,184,.6);
  --text-on-light: #0A1020;
  --text-sec-light:#475569;

  --section-py:    120px;
  --container-max: 1260px;
  --container-px:  32px;

  --r-sm:  6px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;

  --ease-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --t: 0.24s ease;

  --glow-blue:   0 0 60px rgba(37,99,235,.18);
  --glow-yellow: 0 0 40px rgba(250,204,21,.22);
  --shadow-card: 0 2px 12px rgba(0,0,0,.3), 0 8px 32px rgba(0,0,0,.2);
  --shadow-lift: 0 16px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.06);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Keyboard focus ── */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Dark-on-light contexts */
.section-light-bg :focus-visible,
.why-section :focus-visible,
.process-section :focus-visible {
  outline-color: var(--royal-blue);
}

/* ── Scroll offset for sticky header ── */
[id] { scroll-margin-top: 88px; }

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--navy);
  color: rgba(255,255,255,.82);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.7;
}

body.loading { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; transition: color var(--t); }
ul  { list-style: none; }
button { cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

/* ── Utilities ── */
.hidden  { display: none !important; }
[hidden] { display: none !important; }
.icon    { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Manrope', system-ui, sans-serif;
  line-height: 1.1;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--yellow);
  display: block;
  flex-shrink: 0;
}
.section-label-dark { color: var(--blue-bright); }
.section-label-dark::before { background: var(--blue-bright); }

.section-h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  max-width: 720px;
  margin-bottom: 28px;
  line-height: 1.12;
}
.section-h2-dark { color: var(--text-on-light); }

.section-intro {
  font-size: 1.0625rem;
  color: var(--slate);
  max-width: 640px;
  margin-bottom: 64px;
  line-height: 1.8;
}
.section-intro-dark { color: var(--text-sec-light); }

/* ── Section skins ── */
.section-dark-bg  { background: var(--navy);    padding-block: var(--section-py); }
.section-deeper   { background: var(--ink);     padding-block: var(--section-py); }
.section-light-bg {
  background: var(--off-white);
  padding-block: var(--section-py);
}
.section-navy2    { background: var(--navy-2);  padding-block: var(--section-py); }

/* ============================================================
   GRAIN OVERLAY
   ============================================================ */
.grain-overlay {
  position: fixed;
  inset: -200%;
  width: 400%; height: 400%;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  animation: grain-shift 0.5s steps(2) infinite;
}
@keyframes grain-shift {
  0%   { transform: translate(0,0); }
  25%  { transform: translate(-3%,-4%); }
  50%  { transform: translate(4%,3%); }
  75%  { transform: translate(-2%,5%); }
  100% { transform: translate(5%,-2%); }
}

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--royal-blue) 0%, var(--yellow) 100%);
  z-index: 10002;
  transition: width 0.1s linear;
}

/* ============================================================
   PAGE LOADER
   ============================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s var(--ease-expo), visibility 0.7s;
}
.page-loader.done { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.loader-logo {
  height: 48px; width: auto;
  opacity: 0; transform: translateY(10px);
  animation: fade-up-in 0.6s var(--ease-expo) 0.15s forwards;
}
@keyframes fade-up-in { to { opacity: 1; transform: translateY(0); } }

.loader-bar-wrap {
  width: 180px; height: 1px;
  background: rgba(255,255,255,.08);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--royal-blue), var(--yellow));
  transition: width 0.05s linear;
}
.loader-label {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
  font-weight: 600;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-quart), transform 0.8s var(--ease-quart);
  transition-delay: var(--d, 0ms);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

/* ── Apple-style scroll reveals ── */
.reveal-scale {
  opacity: 0;
  transform: scale(0.93) translateY(28px);
  transition: opacity 1s var(--ease-quart), transform 1s var(--ease-quart);
  transition-delay: var(--d, 0ms);
}
.reveal-scale.visible { opacity: 1; transform: scale(1) translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-52px);
  transition: opacity 0.85s var(--ease-quart), transform 0.85s var(--ease-quart);
  transition-delay: var(--d, 0ms);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(52px);
  transition: opacity 0.85s var(--ease-quart), transform 0.85s var(--ease-quart);
  transition-delay: var(--d, 0ms);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Statement word-by-word reveal */
.fn2-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s var(--ease-quart);
}
.fn2-word.visible { opacity: 1; transform: translateY(0); }

/* Hero exit parallax */
.fn2-hero-content { will-change: transform, opacity; }
.fn2-hero-orb { will-change: transform; }

/* Work image zoom-reveal */
.mm-work-img-wrap { overflow: hidden; }
.mm-work-img {
  transition: transform 1.3s var(--ease-quart);
  transform: scale(1.06);
}
.mm-work-card.visible .mm-work-img { transform: scale(1); }

/* Stat items scale-in override */
.fn2-stat-item.reveal-up { transform: translateY(44px) scale(0.94); }
.fn2-stat-item.reveal-up.visible { transform: translateY(0) scale(1); }

/* Hero line reveal */
.trl { display: block; overflow: hidden; }
.trl span {
  display: block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 1s var(--ease-expo), opacity 0.6s ease;
}
.hero-h1 .trl:nth-child(1) span { transition-delay: 0.05s; }
.hero-h1 .trl:nth-child(2) span { transition-delay: 0.18s; }
.hero-h1 .trl:nth-child(3) span { transition-delay: 0.31s; }
.hero-h1 .trl:nth-child(4) span { transition-delay: 0.44s; }
.hero-h1.animated .trl span { transform: translateY(0); opacity: 1; }

.hero-eyebrow,
.hero-sub-anim,
.hero-marquee-anim,
.hero-ctas-anim,
.hero-meta-anim,
.hero-card-anim {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease-quart), transform 0.7s var(--ease-quart);
}
.hero-eyebrow.animated      { opacity: 1; transform: translateY(0); }
.hero-sub-anim.animated     { opacity: 1; transform: translateY(0); transition-delay: 0.52s; }
.hero-marquee-anim.animated { opacity: 1; transform: translateY(0); transition-delay: 0.66s; }
.hero-ctas-anim.animated    { opacity: 1; transform: translateY(0); transition-delay: 0.78s; }
.hero-meta-anim.animated    { opacity: 1; transform: translateY(0); transition-delay: 0.94s; }
.hero-card-anim.animated    { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  padding: 15px 30px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-expo);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn .btn-arrow { width: 15px; height: 15px; transition: transform 0.3s var(--ease-expo); }
.btn:hover .btn-arrow { transform: translate(3px, -3px); }

.btn-primary {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
  font-weight: 700;
}
.btn-primary:hover {
  background: #FDE047;
  box-shadow: 0 6px 28px rgba(250,204,21,.35);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,.82);
  border-color: rgba(255,255,255,.16);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.32);
  color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--royal-blue);
  border-color: var(--royal-blue);
}
.btn-outline-dark:hover { background: var(--royal-blue); color: var(--white); }

.btn-sm { font-size: 0.875rem; padding: 11px 22px; }
.btn-full { width: 100%; justify-content: center; }
.btn-full-mobile { width: 100%; justify-content: center; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  z-index: 100;
  background: rgba(10,16,32,.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), background 0.4s, box-shadow 0.4s;
}
.site-header.hide-nav {
  transform: translateY(-110%);
}
.site-header.scrolled {
  background: rgba(6,11,24,.92);
  box-shadow: 0 1px 40px rgba(0,0,0,.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-link { display: flex; align-items: center; }
.logo { height: 38px; width: auto; object-fit: contain; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,.68);
  position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--yellow);
  transition: width 0.3s var(--ease-expo);
}
.nav-link:hover { color: rgba(255,255,255,.9); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--white); }

/* ── Nav dropdown ── */
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-item { position: relative; }
.nav-item > a, .nav-item > button {
  display: flex; align-items: center; gap: 5px;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.68);
  background: none; border: none; cursor: pointer;
  padding: 8px 12px; border-radius: 8px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-item > a:hover, .nav-item > button:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-item > a.active, .nav-item > button.active { color: #fff; }
.nav-chevron { width: 12px; height: 12px; transition: transform .2s; }
.nav-item.open > button .nav-chevron { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 220px;
  background: rgba(10,12,24,.96);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 8px;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s, transform .2s;
  z-index: 200;
}
.nav-item.open .nav-dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.6);
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-dropdown a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-dropdown-icon { font-size: 15px; width: 24px; text-align: center; flex-shrink: 0; }

.nav-cta {
  display: inline-flex; align-items: center;
  padding: 9px 22px;
  background: #fff; color: #0a0a0a !important;
  border-radius: 100px; font-size: 13px; font-weight: 600;
  transition: background .2s, color .2s !important;
  margin-left: 8px;
}
.nav-cta:hover { background: #e5e5e5 !important; color: #0a0a0a !important; }

/* Case study pages — light nav override */
.cs-page .site-header {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.cs-page .site-header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 1px 20px rgba(0,0,0,.08);
}
.cs-page .nav-item > a,
.cs-page .nav-item > button { color: #555; }
.cs-page .nav-item > a:hover,
.cs-page .nav-item > button:hover { color: #0a0a0a; background: rgba(0,0,0,.04); }
.cs-page .nav-dropdown {
  background: rgba(255,255,255,.98);
  border-color: rgba(0,0,0,.1);
}
.cs-page .nav-dropdown a { color: #555; }
.cs-page .nav-dropdown a:hover { color: #0a0a0a; background: rgba(0,0,0,.04); }
.cs-page .nav-cta { background: #0a0a0a; color: #fff !important; }
.cs-page .nav-cta:hover { background: #333 !important; color: #fff !important; }

/* Mobile nav dropdown items */
.nav-mobile-sub { padding-left: 16px; }
.nav-mobile-sub a {
  display: block; font-size: .9rem; font-weight: 500;
  color: rgba(255,255,255,.58); padding: 8px 8px;
  border-radius: 6px; transition: color .2s;
}
.nav-mobile-sub a:hover { color: rgba(255,255,255,.8); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  transition: all var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  background: rgba(6,11,24,.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 16px var(--container-px) 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-mobile-link {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  padding: 12px 8px;
  border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-mobile-link:hover { color: var(--white); background: rgba(255,255,255,.05); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: #070B14;
  padding-block: 132px 108px;
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg-layer {
  position: absolute;
  inset: -25%;
  background:
    radial-gradient(ellipse 70% 55% at 62% 32%, rgba(30,64,175,.12) 0%, transparent 58%),
    radial-gradient(ellipse 55% 50% at 30% 18%, rgba(37,99,235,.08) 0%, transparent 55%),
    radial-gradient(ellipse 45% 45% at 12% 82%, rgba(250,204,21,.04) 0%, transparent 55%);
  background-size: 160% 160%;
  will-change: transform, background-position;
  pointer-events: none;
  animation: hero-gradient-shift 22s ease-in-out infinite;
}
@keyframes hero-gradient-shift {
  0%, 100% { background-position: 0% 0%; }
  50%      { background-position: 100% 60%; }
}

/* Soft floating glow accents */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: .55;
  will-change: transform;
}
.hero-glow-blue {
  width: 460px; height: 460px;
  top: 8%; right: 6%;
  background: radial-gradient(circle, rgba(37,99,235,.28), transparent 70%);
  animation: glow-drift-a 16s ease-in-out infinite;
}
.hero-glow-gold {
  width: 320px; height: 320px;
  bottom: 4%; left: 10%;
  background: radial-gradient(circle, rgba(250,204,21,.12), transparent 70%);
  animation: glow-drift-b 20s ease-in-out infinite;
}
@keyframes glow-drift-a {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-28px, 26px); }
}
@keyframes glow-drift-b {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(24px, -22px); }
}

/* Particle canvas */
#hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Grid lines background decoration */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 30%, transparent 85%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 1;
}

.hero-left {
  max-width: 780px;
}

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 28px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--yellow);
  display: block;
}

/* H1 */
.hero-h1 {
  font-size: clamp(2.85rem, 5.6vw, 5.25rem);
  color: var(--off-white);
  margin-bottom: 30px;
  letter-spacing: -0.035em;
  line-height: 0.98;
  font-weight: 800;
}
.hero-h1 .trl span { padding-bottom: 0.06em; }
.hero-accent {
  font-style: normal;
  color: var(--yellow);
  position: relative;
}
.trl-accent span { color: var(--yellow); }

.hero-sub {
  font-size: 1.125rem;
  color: var(--slate);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Marquee */
.marquee-wrap {
  overflow: hidden;
  margin-bottom: 40px;
  mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee-scroll 20s linear infinite;
}
.marquee-track span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
  white-space: nowrap;
}
.mdot { color: rgba(250,204,21,.4) !important; font-size: 0.5rem !important; display: inline-flex; align-items: center; }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.trust-line {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.42);
  font-style: italic;
  margin-bottom: 10px;
}

.location-line {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,.42);
}
.location-line .icon { color: var(--blue-bright); width: 14px; height: 14px; }

/* Hero meta — trust line + location */
.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trust-line {
  font-size: 0.875rem;
  color: rgba(255,255,255,.55);
  font-style: italic;
}
.trust-line em { font-style: italic; }
.location-line {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,.48);
}
.location-line .icon { color: var(--blue-bright); width: 14px; height: 14px; }

/* ── Brand card (hero right) ── */
/* Parallax wrapper — JS moves this; float lives on .brand-card */
.brand-card-parallax {
  position: relative;
  will-change: transform;
  transition: transform 0.5s var(--ease-expo);
}

.brand-card {
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 24px 70px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.08);
  animation: card-float 7s ease-in-out infinite;
}
.brand-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(250,204,21,.55), transparent);
}
/* Inner glow accent */
.brand-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  background: radial-gradient(ellipse 70% 45% at 50% 0%, rgba(37,99,235,.10), transparent 65%);
  pointer-events: none;
}

@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

.card-orbit {
  position: absolute;
  right: -70px; bottom: -70px;
  width: 220px; height: 220px;
  border: 1px dashed rgba(37,99,235,.15);
  border-radius: 50%;
  animation: orbit-spin 24s linear infinite;
  pointer-events: none;
}
@keyframes orbit-spin { to { transform: rotate(360deg); } }

.brand-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.brand-card-logo { height: 44px; width: auto; object-fit: contain; }
.since-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--yellow);
  background: rgba(250,204,21,.08);
  border: 1px solid rgba(250,204,21,.2);
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-card-divider { height: 1px; background: rgba(255,255,255,.06); margin-bottom: 28px; }

.brand-card-services { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.brand-card-services li {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.9375rem; font-weight: 600; color: rgba(255,255,255,.7);
  transition: color 0.2s;
}
.brand-card-services li:hover { color: var(--white); }
.service-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-bright); flex-shrink: 0;
  transition: background 0.2s;
  box-shadow: 0 0 8px var(--blue-bright);
}
.brand-card-services li:hover .service-dot { background: var(--yellow); box-shadow: 0 0 8px var(--yellow); }

.brand-card-accent-bar {
  height: 1px;
  background: linear-gradient(90deg, rgba(37,99,235,.3), transparent);
  margin-bottom: 20px;
}
.brand-card-tagline {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,.2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Service chips inside brand card */
.brand-card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.bc-chip {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: 5px 13px;
  transition: color 0.2s, border-color 0.2s;
}
.bc-chip:hover { color: var(--white); border-color: rgba(255,255,255,.22); }
.bc-chip-blue {
  color: rgba(96,165,250,.9);
  background: rgba(37,99,235,.1);
  border-color: rgba(37,99,235,.25);
}
.bc-chip-gold {
  color: rgba(250,204,21,.8);
  background: rgba(250,204,21,.07);
  border-color: rgba(250,204,21,.2);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.scroll-hint-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.25));
  animation: scroll-pulse 2.2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.75); }
  50%       { opacity: 1;   transform: scaleY(1); }
}
.scroll-hint-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
}

/* ============================================================
   EXPERIENCE STRIP (below hero)
   ============================================================ */
.experience-strip {
  background: #070B14;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding-block: 30px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.experience-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.experience-label {
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  position: relative;
  padding-right: 40px;
}
.experience-label::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  width: 1px; height: 28px;
  background: rgba(255,255,255,.1);
  transform: translateY(-50%);
}
.experience-marquee {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 90%, transparent 100%);
}
.experience-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: exp-scroll 40s linear infinite;
}
.experience-track span {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: color 0.3s;
  padding-inline: 22px;
}
.experience-track:hover { animation-play-state: paused; }
.experience-track span:hover { color: var(--white); }
.exp-dot {
  color: rgba(250,204,21,.5) !important;
  font-size: 0.4375rem !important;
  padding-inline: 0 !important;
  flex-shrink: 0;
  line-height: 1;
  align-self: center;
}
@keyframes exp-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Button hover glow (hero CTAs) */
.btn-ghost:hover {
  box-shadow: 0 0 0 1px rgba(255,255,255,.12), 0 8px 30px rgba(37,99,235,.18);
}

/* ============================================================
   WHO WE ARE  (light section)
   ============================================================ */
.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
  margin-bottom: 72px;
}
.about-col-left p {
  font-size: 1.125rem;
  color: var(--text-sec-light);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-col-left p:last-child { margin-bottom: 0; }
.about-col-left p:first-child {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-on-light);
  line-height: 1.7;
}

.about-col-right { display: flex; flex-direction: column; gap: 0; }

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(0,0,0,.06);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.highlight-card {
  background: var(--white);
  padding: 32px 28px;
  transition: background 0.3s;
  position: relative;
}
.highlight-card:hover { background: #FAFBFF; }
.highlight-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--royal-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-expo);
}
.highlight-card:first-child::after { background: var(--yellow-dim); }
.highlight-card:hover::after { transform: scaleX(1); }

.highlight-number {
  font-family: 'Manrope', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--royal-blue);
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}
.highlight-icon { width: 32px; height: 32px; color: var(--royal-blue); margin-bottom: 12px; }
.highlight-icon svg { width: 100%; height: 100%; }
.highlight-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-on-light);
  margin-bottom: 5px;
}
.highlight-desc { font-size: 0.8125rem; color: var(--text-sec-light); line-height: 1.5; }

/* ============================================================
   WHAT WE DO  (dark)
   ============================================================ */
/* ============================================================
   WHAT WE DO — Premium Service Cards
   ============================================================ */

.svc-section {
  background: var(--navy-2);
  padding-block: var(--section-py);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.svc-card {
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-xl);
  background: rgba(255,255,255,.025);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s var(--ease-expo);
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37,99,235,.5), rgba(250,204,21,.35), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.svc-card:hover {
  border-color: rgba(37,99,235,.28);
  box-shadow: 0 0 40px rgba(37,99,235,.08), 0 20px 56px rgba(0,0,0,.3);
  transform: translateY(-4px);
}
.svc-card:hover::before { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .svc-card:hover { transform: none; }
}

.svc-card-inner {
  padding: 44px 40px 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Number + title header */
.svc-card-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 18px;
}
.svc-num {
  font-family: 'Manrope', sans-serif;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(37,99,235,.55);
  flex-shrink: 0;
  line-height: 1;
  padding-top: 3px;
}
.svc-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.svc-desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,.65);
  line-height: 1.78;
  margin-bottom: 28px;
  max-width: 420px;
}

/* Includes list */
.svc-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
  flex: 1;
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 20px;
}
.svc-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(255,255,255,.58);
  line-height: 1.5;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color 0.2s;
}
.svc-card:hover .svc-list li { color: rgba(255,255,255,.75); }
.svc-list li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(250,204,21,.45);
  flex-shrink: 0;
  transition: background 0.2s;
}
.svc-card:hover .svc-list li::before { background: var(--yellow); }

/* Explore cue */
.svc-cue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,.62);
  margin-top: auto;
  transition: color 0.25s;
}
.svc-arrow {
  width: 14px; height: 14px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-expo);
}
.svc-card:hover .svc-cue { color: var(--yellow); }
.svc-card:hover .svc-arrow { transform: translateX(5px); }

/* ============================================================
   WHY MUCKAMEDIA (light)
   ============================================================ */
/* ============================================================
   WHY MUCKAMEDIA — Editorial 2-col (light)
   ============================================================ */

.why-section {
  background: var(--off-white);
  padding-block: var(--section-py);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

/* Sticky left column on scroll */
.why-left {
  position: sticky;
  top: 92px;
}

.why-heading {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text-on-light);
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.why-body {
  font-size: 1rem;
  color: var(--text-sec-light);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 420px;
}

/* Right: 2×2 grid of feature cards */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.why-card {
  background: var(--white);
  border: 1px solid rgba(30,64,175,.08);
  border-radius: var(--r-lg);
  padding: 32px 28px 36px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s var(--ease-expo);
}
.why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--royal-blue), var(--blue-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-expo);
}
.why-card:hover {
  border-color: rgba(30,64,175,.14);
  box-shadow: 0 10px 40px rgba(30,64,175,.09);
  transform: translateY(-3px);
}
.why-card:hover::after { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
  .why-card:hover { transform: none; }
}

.why-num {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--royal-blue);
  opacity: 0.55;
  margin-bottom: 18px;
}

.why-card-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-on-light);
  margin-bottom: 12px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.why-card-copy {
  font-size: 0.9rem;
  color: var(--text-sec-light);
  line-height: 1.75;
}

/* ============================================================
   FOUNDER PROFILE — Premium dark identity
   ============================================================ */

.founder-section {
  background: var(--ink);
  padding-block: var(--section-py);
}

.fp-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 8px;
}

/* ── Identity card ── */
.fp-id-card {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  padding: 36px 30px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  /* Photo background */
  background-image: url('assets/founder.jpg');
  background-size: cover;
  background-position: center top;
  min-height: 480px;
}
/* Dark gradient overlay — bottom-heavy so chips/name stay readable */
.fp-id-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(6,11,24,.45) 0%,
      rgba(6,11,24,.62) 40%,
      rgba(6,11,24,.88) 70%,
      rgba(6,11,24,.97) 100%);
  border-radius: inherit;
  z-index: 0;
}
/* Top gold accent line */
.fp-id-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(250,204,21,.55), transparent);
  z-index: 2;
}
/* All direct children sit above the overlay */
.fp-id-card > * { position: relative; z-index: 1; }

.fp-card-glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.22), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.fp-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.fp-logo { height: 32px; width: auto; object-fit: contain; }

.fp-since-badge {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(250,204,21,.08);
  border: 1px solid rgba(250,204,21,.2);
  padding: 4px 10px;
  border-radius: 100px;
}

/* Large monogram */
.fp-initials {
  font-family: 'Manrope', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,.06);
  line-height: 1;
  margin-bottom: 28px;
  user-select: none;
}

.fp-id-info { margin-bottom: 24px; }

.fp-id-name {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.fp-id-role {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.fp-id-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,.62);
}
.fp-loc-icon { width: 13px; height: 13px; color: var(--blue-bright); flex-shrink: 0; }

/* Chips */
.fp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 20px;
  margin-top: 4px;
}
.fp-chip {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,.58);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.08);
  padding: 4px 10px;
  border-radius: 100px;
}
.fp-chip-blue {
  color: rgba(96,165,250,.9);
  background: rgba(37,99,235,.1);
  border-color: rgba(37,99,235,.22);
}

/* ── Bio column ── */
.fp-bio-text {
  font-size: 0.9375rem;
  color: rgba(255,255,255,.68);
  line-height: 1.85;
  margin-bottom: 18px;
}

.fp-education {
  margin: 32px 0;
  padding: 22px 26px;
  background: rgba(255,255,255,.025);
  border-radius: var(--r-md);
  border-left: 2px solid rgba(37,99,235,.4);
}
.fp-edu-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 14px;
}
.fp-edu-list { display: flex; flex-direction: column; gap: 10px; }
.fp-edu-list li {
  font-size: 0.875rem;
  color: rgba(255,255,255,.62);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}
.fp-edu-list li::before { content: '–'; position: absolute; left: 0; color: rgba(255,255,255,.2); }

.fp-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   SELECTED WORK  (dark)
   ============================================================ */
/* ============================================================
   SELECTED WORK — Premium Case Study Layout
   ============================================================ */

.work-section {
  background: var(--ink);
  padding-block: var(--section-py);
}

/* Tab switcher — underline style */
.portfolio-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  width: 100%;
}
.tab-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,.50);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 10px 26px 13px;
  cursor: pointer;
  transition: color 0.22s, border-color 0.22s;
}
.tab-btn.active {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}
.tab-btn:hover:not(.active) { color: rgba(255,255,255,.65); }

/* ── Featured card (first Recent Work project) ── */
.cs-card.cs-card--featured {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: rgba(255,255,255,.022);
  margin-bottom: 20px;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.cs-card.cs-card--featured:hover {
  border-color: rgba(37,99,235,.32);
  box-shadow: 0 0 48px rgba(37,99,235,.1), 0 28px 64px rgba(0,0,0,.45);
}
.cs-card.cs-card--featured .cs-img-wrap {
  aspect-ratio: auto;
  min-height: 440px;
}

/* ── Secondary 2-col grid ── */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.cs-card {
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: rgba(255,255,255,.022);
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.cs-card:hover {
  border-color: rgba(37,99,235,.28);
  box-shadow: 0 0 36px rgba(37,99,235,.08), 0 16px 48px rgba(0,0,0,.35);
}

/* ── Image wrap ── */
.cs-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #0B1220;
}
.cs-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-expo), filter 0.5s;
  filter: brightness(0.82) saturate(0.8);
}
.cs-card:hover .cs-img,
.cs-card--featured:hover .cs-img {
  transform: scale(1.06);
  filter: brightness(0.95) saturate(1);
}
.cs-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(6,11,24,.68) 100%);
  pointer-events: none;
}

/* ── Card body ── */
.cs-body {
  padding: 36px 38px 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cs-index {
  font-family: 'Manrope', sans-serif;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,.1);
  margin-bottom: 14px;
  display: block;
}
.cs-category {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 10px;
  display: block;
}
.cs-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.cs-card.cs-card--featured .cs-title {
  font-size: 2.125rem;
}
.cs-desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,.62);
  line-height: 1.78;
  margin-bottom: 24px;
  flex: 1;
}
.cs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
}
.cs-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,.58);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.09);
  padding: 4px 12px;
  border-radius: 100px;
}
.cs-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,.52);
  transition: color 0.25s;
  margin-top: auto;
  width: fit-content;
}
.cs-arrow {
  width: 15px; height: 15px;
  transition: transform 0.3s var(--ease-expo);
  flex-shrink: 0;
}
.cs-card:hover .cs-link,
.cs-card--featured:hover .cs-link { color: var(--yellow); }
.cs-card:hover .cs-arrow,
.cs-card--featured:hover .cs-arrow { transform: translateX(5px); }

/* ── Selected Experience — editorial 2×2 ── */
.cs-exp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.cs-exp-card {
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(255,255,255,.018);
  transition: border-color 0.35s, box-shadow 0.35s;
}
.cs-exp-card:hover {
  border-color: rgba(250,204,21,.18);
  box-shadow: 0 0 28px rgba(250,204,21,.05), 0 12px 36px rgba(0,0,0,.3);
}
.cs-img-wrap--exp { aspect-ratio: 16/9; }
.cs-exp-body { padding: 20px 24px 26px; }
.cs-exp-category {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.52);
  margin-bottom: 7px;
}
.cs-exp-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: rgba(255,255,255,.68);
  line-height: 1.3;
  letter-spacing: -0.01em;
  transition: color 0.22s;
}
.cs-exp-card:hover .cs-exp-title { color: var(--white); }
.cs-exp-card:hover .cs-img { transform: scale(1.05); filter: brightness(0.95) saturate(1); }

/* ============================================================
   HOW WE WORK (light)
   ============================================================ */
/* ============================================================
   HOW WE WORK — Premium horizontal timeline
   ============================================================ */

.process-section {
  background: var(--off-white);
  padding-block: var(--section-py);
}

.process-header {
  max-width: 680px;
  margin-bottom: 64px;
}

.process-intro {
  font-size: 1rem;
  color: var(--text-sec-light);
  line-height: 1.8;
  margin-top: 20px;
}

/* 5-column horizontal list */
.ps-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  list-style: none;
  position: relative;
}

/* ── Each step ── */
.ps-step {
  padding: 0 20px 0 0;
  position: relative;
  cursor: default;
}
.ps-step:last-child { padding-right: 0; }

/* Large faint background number — decorative */
.ps-num-bg {
  font-family: 'Manrope', sans-serif;
  font-size: 5.5rem;
  font-weight: 800;
  color: rgba(30,64,175,.055);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: -12px;
  user-select: none;
  pointer-events: none;
  transition: color 0.35s;
}
.ps-step:hover .ps-num-bg { color: rgba(30,64,175,.1); }

/* Top row: small label + connecting line */
.ps-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.ps-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--royal-blue);
  opacity: 0.7;
  flex-shrink: 0;
  transition: opacity 0.25s;
}
.ps-step:hover .ps-label { opacity: 1; }

/* Connecting line that fills to next step */
.ps-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(30,64,175,.2), rgba(30,64,175,.06));
}

/* Step body */
.ps-body {
  border-top: 2px solid rgba(30,64,175,.1);
  padding-top: 20px;
  transition: border-color 0.35s;
}
.ps-step:hover .ps-body { border-top-color: rgba(30,64,175,.38); }

.ps-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--text-on-light);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
  transition: color 0.25s;
}
.ps-step:hover .ps-title { color: var(--royal-blue); }

.ps-copy {
  font-size: 0.875rem;
  color: var(--text-sec-light);
  line-height: 1.72;
}

@media (prefers-reduced-motion: reduce) {
  .ps-num-bg, .ps-label, .ps-body, .ps-title { transition: none; }
}

/* ============================================================
   CONTACT (dark)
   ============================================================ */
/* ============================================================
   CONTACT — premium dark two-column layout
   ============================================================ */

.contact-section {
  background: var(--ink);
  padding-block: var(--section-py);
  position: relative;
  overflow: hidden;
}

/* Ambient glow orbs */
.contact-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.contact-glow--blue {
  width: 500px; height: 500px;
  background: rgba(30,64,175,.14);
  top: -100px; left: -80px;
}
.contact-glow--gold {
  width: 360px; height: 360px;
  background: rgba(250,204,21,.07);
  bottom: -60px; right: -40px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* ── Left column ── */
.contact-left { padding-top: 8px; }

.contact-heading {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-block: 20px 16px;
}

.contact-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.62);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 400px;
}

.contact-person-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding: 18px 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
}

.contact-person-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal-blue), #1d4ed8);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--white);
  flex-shrink: 0;
}

.contact-name {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.contact-role { font-size: 0.8125rem; color: rgba(255,255,255,.52); }

.contact-list {
  display: flex; flex-direction: column; gap: 14px;
  list-style: none;
  margin-bottom: 36px;
}
.contact-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9375rem; color: rgba(255,255,255,.68);
}
.cl-icon {
  width: 32px; height: 32px;
  background: rgba(30,64,175,.18);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-bright);
  flex-shrink: 0;
}
.contact-list a { color: rgba(255,255,255,.68); transition: color 0.2s; }
.contact-list a:hover { color: var(--yellow); }

.contact-ctas { display: flex; flex-direction: column; gap: 12px; }
.contact-ctas .btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
}

/* ── Right column — glass form card ── */
/* ============================================================
   PROJECT-START CARD  (replaces contact form)
   ============================================================ */

.psc-wrap {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;
  padding: 44px 40px 40px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 72px rgba(0,0,0,.4), 0 1px 0 rgba(255,255,255,.06) inset;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Subtle logo watermark — bottom-right corner */
.psc-watermark {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 140px;
  height: 140px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}
.psc-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1);
}

/* All card content above watermark */
.psc-wrap > *:not(.psc-watermark) { position: relative; z-index: 1; }

/* Top section: eyebrow + heading + body */
.psc-top { margin-bottom: 32px; }

.psc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}
.psc-eyebrow::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--yellow);
  display: block;
  flex-shrink: 0;
}

.psc-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.psc-body {
  font-size: 0.9375rem;
  color: rgba(255,255,255,.62);
  line-height: 1.75;
}

/* Service rows */
.psc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,.07);
  margin-bottom: 32px;
}

.psc-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background 0.2s;
}

.psc-num {
  font-family: 'Manrope', sans-serif;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(37,99,235,.6);
  flex-shrink: 0;
  width: 22px;
  padding-top: 3px;
}

.psc-item-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: rgba(255,255,255,.82);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}

.psc-item-desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.52);
  line-height: 1.6;
}

/* Footer: WA button + response note */
.psc-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.psc-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  background: rgba(37,211,102,.12);
  border: 1px solid rgba(37,211,102,.25);
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #25d366;
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease-expo);
  text-decoration: none;
  white-space: nowrap;
}
.psc-wa-btn:hover {
  background: rgba(37,211,102,.2);
  border-color: rgba(37,211,102,.45);
  transform: translateY(-2px);
}

.psc-note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  .psc-wa-btn:hover { transform: none; }
}

/* ============================================================
   FOOTER — premium dark
   ============================================================ */
.site-footer {
  background: var(--ink);
  position: relative;
}

/* thin gradient accent line at top of footer */
.footer-accent-line {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(30,64,175,.5) 30%,
    rgba(250,204,21,.4) 60%,
    transparent 100%
  );
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-block: 64px 56px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo { height: 36px; width: auto; object-fit: contain; }
.footer-wordmark {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.footer-tagline {
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(255,255,255,.62);
  margin-bottom: 5px;
}
.footer-service-line {
  font-size: 0.6875rem;
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,.62);
  line-height: 1.8;
  max-width: 300px;
}

.footer-col-label {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.52);
  margin-bottom: 22px;
}

.footer-nav nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.55);
  transition: color 0.2s;
  width: fit-content;
}
.footer-nav a:hover { color: rgba(255,255,255,.88); }

.footer-contact-list { display: flex; flex-direction: column; gap: 11px; list-style: none; }
.footer-contact-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,.55);
}
.footer-contact-list li { font-size: 0.875rem; color: rgba(255,255,255,.52); }
.footer-contact-list a { color: rgba(255,255,255,.52); transition: color 0.2s; }
.footer-contact-list a:hover { color: var(--yellow); }

.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  padding: 9px 16px;
  background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.2);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #25d366;
  transition: background 0.2s, border-color 0.2s;
}
.footer-wa-btn:hover {
  background: rgba(37,211,102,.18);
  border-color: rgba(37,211,102,.38);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-block: 22px;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,.45); }
.footer-bottom-right { color: rgba(255,255,255,.45) !important; }

/* ============================================================
   RESPONSIVE — TABLET PORTRAIT (≤ 768px) — nav compaction
   ============================================================ */
@media (max-width: 768px) {
  .nav-desktop { gap: 20px; }
  .nav-link { font-size: 0.8125rem; }
  .btn-sm { padding: 10px 16px; font-size: 0.8125rem; }
}

/* ============================================================
   RESPONSIVE — LAPTOP SMALL (≤ 1024px) — process step spacing
   ============================================================ */
@media (max-width: 1024px) {
  .ps-step { padding-right: 12px; }
  .ps-num-bg { font-size: 4rem; }
  .ps-body { padding-top: 16px; }
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 960px)
   ============================================================ */
@media (max-width: 960px) {
  :root { --section-py: 80px; --container-px: 24px; }

  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-right { max-width: 420px; }
  .hero { min-height: auto; padding-block: 112px 84px; }
  .hero-glow-blue { width: 340px; height: 340px; }

  .experience-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .experience-label { padding-right: 0; }
  .experience-label::after { display: none; }
  .experience-marquee { width: 100%; }

  .about-body { grid-template-columns: 1fr; gap: 32px; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-left { position: static; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .fp-inner { grid-template-columns: 1fr; gap: 40px; }

  .cs-card.cs-card--featured { grid-template-columns: 1fr; }
  .cs-card.cs-card--featured .cs-img-wrap { min-height: auto; aspect-ratio: 16/9; }

  /* Process — stack to single column on tablet */
  .ps-list { grid-template-columns: 1fr; gap: 0; }
  .ps-line { display: none; }
  .ps-step {
    padding: 24px 28px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: var(--r-md);
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
  }
  .ps-step:last-child { margin-bottom: 0; }
  .ps-num-bg { font-size: 3.5rem; margin-bottom: -6px; }

  /* Contact — stack on tablet */
  .contact-inner { grid-template-columns: 1fr; gap: 52px; }
  .contact-sub { max-width: 100%; }
  .contact-ctas { flex-direction: row; }
  /* Footer — 2-col on tablet */
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .hero-trust-strip { gap: 20px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  :root { --section-py: 60px; --container-px: 20px; }

  .nav-desktop { display: none; }
  .hamburger { display: flex; }

  .hero { padding-block: 88px 64px; }
  .hero-inner { gap: 44px; }
  .hero-h1 { font-size: 2.85rem; }
  .hero-sub { font-size: 1.0625rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .scroll-hint { display: none; }
  .hero-glow { opacity: .4; }
  .brand-card { padding: 32px 28px; }
  .experience-strip { padding-block: 22px; }
  .experience-track span { font-size: 0.875rem; padding-inline: 16px; }

  .highlights-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .highlight-card { padding: 24px 20px; }

  .svc-card-inner { padding: 28px 24px 28px; }

  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 24px 20px 28px; }

  .fp-id-card { padding: 28px 24px; }

  .cs-grid { grid-template-columns: 1fr; }
  .cs-exp-grid { grid-template-columns: 1fr; }
  .cs-body { padding: 24px 24px 28px; }
  .cs-card.cs-card--featured .cs-title { font-size: 1.5rem; }
  .portfolio-tabs { width: 100%; }
  .tab-btn { flex: 1; padding: 10px 12px; font-size: 0.8125rem; }

  /* Contact — mobile */
  .psc-wrap { padding: 28px 20px 24px; border-radius: 20px; }
  .psc-heading { font-size: 1.25rem; }
  .psc-footer { flex-direction: column; align-items: flex-start; gap: 14px; }
  .psc-wa-btn { width: 100%; justify-content: center; }
  .contact-ctas { flex-direction: column; }
  .contact-ctas .btn { width: 100%; justify-content: center; }
  .contact-heading { font-size: 2rem; }

  /* Footer — single column on mobile */
  .footer-inner { grid-template-columns: 1fr; gap: 40px; padding-block: 48px 40px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
  .footer-desc { max-width: 100%; }

  .section-h2 { font-size: 1.75rem; }
  .btn-full-mobile { width: 100%; justify-content: center; }
}

/* ============================================================
   SERVICE PAGES — Inner page layout
   ============================================================ */

/* ── Page Hero ── */
.page-hero {
  background: var(--ink);
  padding: 140px 0 88px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -160px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 560px;
  background: radial-gradient(ellipse, rgba(30,64,175,.22) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.07), transparent);
}
.page-hero-inner { max-width: 760px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--slate); transition: color var(--t); }
.breadcrumb a:hover { color: var(--off-white); }
.breadcrumb-sep { color: rgba(255,255,255,.32); font-size: 0.625rem; }
.breadcrumb-current { color: rgba(255,255,255,.72); }
.page-hero-h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  color: var(--white);
}
.page-hero-h1 em {
  font-style: normal;
  color: var(--yellow);
}
.page-hero-sub {
  font-size: 1.125rem;
  color: var(--slate);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 40px;
}
.page-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.page-hero-meta {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.07);
  flex-wrap: wrap;
}
.page-hero-stat { }
.page-hero-stat-num {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}
.page-hero-stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--slate);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* ── SP Sections ── */
.sp-section { padding-block: var(--section-py); }
.sp-section-sm { padding-block: 80px; }

/* ── For-Who grid ── */
.sp-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.sp-who-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 28px 24px 32px;
  transition: border-color 0.3s, background 0.3s;
}
.sp-who-card:hover {
  border-color: rgba(250,204,21,.18);
  background: rgba(255,255,255,.055);
}
.sp-who-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(30,64,175,.25);
  border: 1px solid rgba(59,130,246,.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--blue-bright);
}
.sp-who-icon svg { width: 18px; height: 18px; }
.sp-who-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.sp-who-desc {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.7;
}

/* ── Problems grid ── */
.sp-problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.sp-problem-card {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-lg);
  padding: 28px 28px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.sp-problem-card:hover {
  border-color: rgba(59,130,246,.2);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.sp-problem-num {
  font-family: 'Manrope', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,.04);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
  letter-spacing: -0.04em;
}
.sp-problem-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.sp-problem-desc {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.75;
}

/* ── Inclusions ── */
.sp-includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.sp-include-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,.022);
  border: 1px solid rgba(255,255,255,.055);
  border-radius: var(--r-md);
  padding: 20px 22px;
  transition: border-color 0.3s, background 0.3s;
}
.sp-include-item:hover {
  border-color: rgba(250,204,21,.15);
  background: rgba(255,255,255,.04);
}
.sp-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(30,64,175,.3);
  border: 1px solid rgba(59,130,246,.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--blue-bright);
}
.sp-check svg { width: 11px; height: 11px; }
.sp-include-text { }
.sp-include-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.sp-include-desc {
  font-size: 0.8125rem;
  color: var(--slate);
  line-height: 1.65;
}

/* ── Approach — 2-col text+card ── */
.sp-approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 56px;
}
.sp-approach-body p {
  color: var(--text-sec-light);
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 1rem;
}
.sp-approach-body p:last-child { margin-bottom: 0; }
.sp-approach-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: 36px 32px;
}
.sp-approach-card-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 20px;
}
.sp-approach-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sp-approach-list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}
.sp-approach-list-item::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ── Process ── */
.sp-process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
  counter-reset: sp-step;
  max-width: 760px;
}
.sp-process-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding-block: 32px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
}
.sp-process-item:last-child { border-bottom: none; }
.sp-process-num {
  font-family: 'Manrope', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--blue-bright);
  letter-spacing: 0.1em;
  padding-top: 4px;
}
.sp-process-content { }
.sp-process-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.sp-process-desc {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.75;
}

/* ── FAQ ── */
.sp-faq-list {
  max-width: 760px;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sp-faq-item {
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.3s;
}
.sp-faq-item.open {
  border-color: rgba(59,130,246,.25);
}
.sp-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(255,255,255,.025);
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background 0.25s;
}
.sp-faq-q:hover { background: rgba(255,255,255,.04); }
.sp-faq-q-text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}
.sp-faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--slate);
  transition: transform 0.3s var(--ease-expo), border-color 0.3s, color 0.3s;
}
.sp-faq-item.open .sp-faq-icon {
  transform: rotate(45deg);
  border-color: var(--blue-bright);
  color: var(--blue-bright);
}
.sp-faq-icon svg { width: 12px; height: 12px; }
.sp-faq-a {
  display: none;
  padding: 0 24px 22px;
  background: rgba(255,255,255,.025);
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.8;
}
.sp-faq-item.open .sp-faq-a { display: block; }

/* ── CTA Block ── */
.sp-cta-block {
  background: var(--ink);
  padding-block: 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sp-cta-block::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(30,64,175,.18) 0%, transparent 70%);
  pointer-events: none;
}
.sp-cta-inner { position: relative; z-index: 1; }
.sp-cta-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}
.sp-cta-label::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--yellow);
}
.sp-cta-h2 {
  font-size: clamp(1.875rem, 3.5vw, 3rem);
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.1;
}
.sp-cta-sub {
  font-size: 1rem;
  color: var(--slate);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.sp-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.sp-cta-note {
  margin-top: 20px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,.52);
}

/* ── Internal Link Strip ── */
.sp-links-strip {
  background: var(--navy-2);
  padding-block: 48px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.sp-links-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.sp-links-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.48);
  margin-right: 8px;
  white-space: nowrap;
}
.sp-link-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.sp-link-pill:hover {
  border-color: rgba(250,204,21,.3);
  color: var(--off-white);
  background: rgba(250,204,21,.04);
}

/* ── Responsive — Tablet ── */
@media (max-width: 960px) {
  .sp-who-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-approach-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Responsive — Mobile ── */
@media (max-width: 640px) {
  .page-hero { padding: 120px 0 64px; }
  .page-hero-ctas { flex-direction: column; }
  .page-hero-ctas .btn { width: 100%; justify-content: center; }
  .page-hero-meta { gap: 20px; }
  .sp-who-grid { grid-template-columns: 1fr; }
  .sp-problems-grid { grid-template-columns: 1fr; }
  .sp-includes-grid { grid-template-columns: 1fr; }
  .sp-links-inner { flex-direction: column; align-items: flex-start; }
  .sp-cta-btns { flex-direction: column; align-items: stretch; }
  .sp-cta-btns .btn { justify-content: center; }
  .sp-process-item { grid-template-columns: 40px 1fr; gap: 16px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .grain-overlay { display: none; }
  .trl span { transform: none; opacity: 1; }
  .hero-eyebrow, .hero-sub-anim, .hero-marquee-anim,
  .hero-ctas-anim, .hero-meta-anim, .hero-card-anim { opacity: 1; transform: none; }
  .reveal-up { opacity: 1; transform: none; }
  .reveal-scale, .reveal-left, .reveal-right { opacity: 1; transform: none; }
  .fn2-word { opacity: 1; transform: none; }
  .mm-work-img { transform: scale(1); }
  .fn2-hero-content { transform: none !important; opacity: 1 !important; }
  .brand-card { animation: none; }
  .hero-glow { animation: none; }
  .brand-card-parallax { transform: none !important; }
  .experience-track { animation: none; }
}


/* ════════════════════════════════════════════════════════════════════
   FN2 — Trustly-inspired minimal design system
   ════════════════════════════════════════════════════════════════════ */

/* ── Base ── */
body.fn2-page {
  background: #020202 !important;
  color: #0a0a0a !important;
}
.fn2-page {
  background: #020202;
  color: #0a0a0a;
}

/* ── Header ── */
.fn2-page .site-header {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.fn2-page .site-header.scrolled {
  background: rgba(2,2,2,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: none;
}
.fn2-page .nav-links a { color: rgba(255,255,255,.68); font-size: 14px; font-weight: 500; }
.fn2-page .nav-links a:hover { color: #fff; }
.fn2-page .nav-links .btn {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,.2);
}
.fn2-page .site-header.scrolled .nav-links .btn {
  background: #fff;
  color: #0a0a0a;
  border-color: #fff;
}
.fn2-page .nav-links .btn:hover { background: #222; }
.fn2-page .hamburger span { background: #0a0a0a; }
.fn2-page .nav-toggle span { background: #0a0a0a; }

/* ── Hero ── */
.fn2-hero {
  min-height: 100vh;
  background: #020202;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 160px 0 80px;
}
/* 3D orb */
.fn2-hero-orb {
  position: absolute;
  width: 620px; height: 620px;
  border-radius: 50%;
  right: -60px; top: 50%;
  transform: translateY(-50%) scale(0.85);
  background: radial-gradient(circle at 38% 35%, #1c1c1c 0%, #080808 55%, #020202 100%);
  box-shadow:
    inset -30px -30px 60px rgba(0,0,0,.9),
    inset 10px 10px 40px rgba(255,255,255,.025),
    40px 40px 100px rgba(0,0,0,.8);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: fn2-orb-in 1.4s cubic-bezier(0.16,1,0.3,1) 0.2s forwards;
}
@keyframes fn2-orb-in {
  to { opacity: 1; transform: translateY(-50%) scale(1); }
}
@keyframes fn2-slide-up {
  from { opacity: 0; transform: translateY(48px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fn2-stamp-in {
  0%   { opacity: 0; transform: scale(1.04); }
  60%  { opacity: 1; transform: scale(0.98); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes fn2-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fn2-hero-tags {
  opacity: 0;
  animation: fn2-fade-up 0.6s cubic-bezier(0.16,1,0.3,1) 0.1s forwards;
}
.fn2-hero-h1-outline {
  opacity: 0;
  animation: fn2-slide-up 0.9s cubic-bezier(0.16,1,0.3,1) 0.35s forwards;
}
.fn2-hero-h1-solid {
  opacity: 0;
  animation: fn2-stamp-in 0.35s cubic-bezier(0.34,1.56,0.64,1) 1.15s forwards;
}
.fn2-hero-sub {
  opacity: 0;
  animation: fn2-fade-up 0.6s ease 1.55s forwards;
}
.fn2-hero-btns {
  opacity: 0;
  animation: fn2-fade-up 0.6s ease 1.75s forwards;
}
.fn2-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}
.fn2-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #999;
  margin-bottom: 32px;
  justify-content: center;
}
.fn2-hero-breadcrumb a { color: #64748B; text-decoration: none; }
.fn2-hero-breadcrumb a:hover { color: #0a0a0a; }
.fn2-hero-breadcrumb span { color: #ccc; }
.fn2-hero-tags {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.fn2-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  letter-spacing: 0.01em;
}
.fn2-hero-tag--live::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(34,197,94,.25);
}
.fn2-hero-h1 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0 0 40px;
}
.fn2-hero-h1-solid,
.fn2-hero-h1-outline {
  display: block;
  font-size: clamp(64px, 10vw, 130px);
}
.fn2-hero-h1-solid {
  color: #ffffff;
}
.fn2-hero-h1-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.35);
}
.fn2-hero-h1 em {
  font-family: 'DM Serif Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  display: block;
  font-size: clamp(64px, 10vw, 130px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1.5px #3b82f6;
  margin-top: 0;
}
.fn2-hero-bottom {
  display: flex;
  align-items: flex-end;
  gap: 60px;
  flex-wrap: wrap;
}
.fn2-hero-sub {
  font-size: clamp(14px, 1.4vw, 16px);
  color: rgba(255,255,255,.68);
  max-width: 340px;
  line-height: 1.7;
  font-weight: 400;
  margin: 0;
}
.fn2-hero-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.fn2-btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #0a0a0a;
  color: #fff;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease;
  border: 1.5px solid #0a0a0a;
  letter-spacing: 0.01em;
}
.fn2-btn-dark:hover { background: #222; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.fn2-hero .fn2-btn-dark { background: #fff; color: #0a0a0a; border-color: #fff; }
.fn2-hero .fn2-btn-dark:hover { background: #f0f0f0; border-color: #f0f0f0; }
.fn2-btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: #0a0a0a;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease;
  border: 1.5px solid #d4d4d4;
}
.fn2-btn-arrow:hover { border-color: #0a0a0a; transform: translateY(-2px); }
.fn2-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border: 1.5px solid #d4d4d4;
  color: #333;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease;
  background: transparent;
}
.fn2-btn-outline:hover { border-color: #0a0a0a; color: #0a0a0a; transform: translateY(-2px); }
.fn2-btn-outline--light { border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.6); }
.fn2-btn-outline--light:hover { border-color: rgba(255,255,255,.6); color: #fff; }
.fn2-hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.fn2-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #999;
  font-weight: 500;
}
.fn2-hero-trust-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #d4d4d4;
  flex-shrink: 0;
}

/* ── Marquee ── */
.fn2-marquee {
  padding: 22px 0;
  overflow: hidden;
  background: #FACC15;
}
.fn2-marquee-label {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0,0,0,.4);
  margin-bottom: 10px;
}
.fn2-marquee-row {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.fn2-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: fn2-marquee 36s linear infinite;
}
.fn2-marquee:hover .fn2-marquee-track { animation-play-state: paused; }
@keyframes fn2-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.fn2-marquee-item {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0a0a0a;
  white-space: nowrap;
  text-decoration: none;
  padding: 0 28px;
  letter-spacing: -0.01em;
  flex-shrink: 0;
  transition: opacity .15s;
}
.fn2-marquee-item:hover { opacity: .5; }
.fn2-marquee-sep {
  color: rgba(0,0,0,.25);
  font-size: 18px;
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
}

/* ── Statement ── */
.fn2-statement {
  padding: 140px 0;
  background: #0a0a0a;
}
.fn2-statement-inner { max-width: 860px; }
.fn2-statement-pre {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 32px;
}
.fn2-statement-text {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.5;
  color: rgba(255,255,255,.15);
  letter-spacing: -0.01em;
}
/* Statement words: visible (dim) by default, light up on scroll via .lit */
.fn2-word { color: rgba(255,255,255,.35); opacity: 1; transform: none; transition: color 0.45s ease; }
.fn2-word.lit { color: rgba(255,255,255,.9); }
.fn2-word.accent.lit { color: #FACC15 !important; }

/* ── Features / sections ── */
.fn2-features {
  padding: 120px 0 80px;
  background: #fff;
}
.fn2-svc-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 64px;
}
.fn2-svc-h2 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #0a0a0a;
  margin-top: 16px;
}
.fn2-svc-list {
  border-top: 1px solid #e8e8e8;
}
.fn2-svc-row {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid #e8e8e8;
  text-decoration: none;
  transition: background .2s;
  margin: 0 -32px;
  padding-left: 32px;
  padding-right: 32px;
  border-radius: 0;
}
.fn2-svc-row:hover { background: #f8f8f8; }
.fn2-svc-num {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #bbb;
  letter-spacing: 0.08em;
  min-width: 28px;
  flex-shrink: 0;
}
.fn2-svc-body { flex: 1; }
.fn2-svc-title {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  line-height: 1.2;
}
.fn2-svc-desc {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
  max-width: 480px;
}
.fn2-svc-arrow {
  font-size: 20px;
  color: #ccc;
  flex-shrink: 0;
  transition: transform .2s, color .2s;
}
.fn2-svc-row:hover .fn2-svc-arrow { transform: translateX(4px); color: #0a0a0a; }
.fn2-section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 20px;
}
.fn2-section-h2 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #0a0a0a;
  max-width: 700px;
  margin-bottom: 20px;
}
.fn2-section-sub {
  font-size: 16px;
  color: #777;
  max-width: 560px;
  margin-bottom: 64px;
  line-height: 1.75;
}
.fn2-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.fn2-feature-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  padding: 36px 32px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.fn2-feature-card:hover {
  border-color: #d0d0d0;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,.06);
}
.fn2-feature-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: #f4f4f4;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Manrope', system-ui, sans-serif;
  color: #555;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  transition: transform .2s ease;
}
.fn2-feature-card:hover .fn2-feature-icon { transform: scale(1.05); }
.fn2-feature-title {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.fn2-feature-desc {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
}

/* ── Who This Is For ── */
.fn2-who { padding: 80px 0; }
.fn2-who .fn2-section-label { color: rgba(255,255,255,.45); }
.fn2-who .fn2-section-h2 { color: rgba(255,255,255,.90); }
.fn2-who .fn2-section-sub { color: rgba(255,255,255,.62); }
.fn2-who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.fn2-who-card {
  padding: 28px 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
}
.fn2-who-icon { font-size: 1.5rem; margin-bottom: 14px; display: block; }
.fn2-who-title {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,.88);
  margin-bottom: 8px;
}
.fn2-who-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,.62);
  line-height: 1.7;
}

/* ── Process ── */
.fn2-process {
  padding: 120px 0;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
}
.fn2-process-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}
.fn2-process-sticky {
  position: sticky;
  top: 100px;
}
.fn2-process-sticky-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1e40af;
  margin-bottom: 16px;
}
.fn2-process-sticky-h2 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.fn2-process-sticky-sub {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}
.fn2-process-list {
  list-style: none;
  padding: 0;
  border-top: 1px solid #ebebeb;
}
.fn2-process-item {
  border-bottom: 1px solid #ebebeb;
}
.fn2-process-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color .2s ease;
}
.fn2-process-num {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #bbb;
  letter-spacing: 0.08em;
  min-width: 24px;
  transition: color .2s ease;
}
.fn2-process-item.open .fn2-process-num { color: #1e40af; }
.fn2-process-title {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #0a0a0a;
  flex: 1;
  letter-spacing: -0.01em;
}
.fn2-process-toggle {
  font-size: 20px;
  color: #aaa;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .3s ease;
}
.fn2-process-item.open .fn2-process-toggle { transform: rotate(45deg); }
.fn2-process-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease, padding .4s ease;
}
.fn2-process-item.open .fn2-process-body { max-height: 400px; padding-bottom: 24px; }
.fn2-process-content {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  padding-left: 44px;
}
.fn2-process-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.fn2-process-tag {
  font-size: 12px;
  font-weight: 600;
  color: #1e40af;
  background: rgba(30,64,175,.08);
  border-radius: 20px;
  padding: 4px 12px;
}

/* ── Stats ── */
.fn2-stats {
  padding: 0;
  background: #0a0a0a;
}
.fn2-stats-header {
  padding: 100px 0 0;
  margin-bottom: 64px;
}
.fn2-stats-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  margin-bottom: 16px;
}
.fn2-stats-h2 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1.1;
}
.fn2-stats-grid {
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,.06);
  border-top: 1px solid rgba(255,255,255,.06);
}
.fn2-stat-item {
  background: #0a0a0a;
  padding: 64px 52px;
}
.fn2-stat-num {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.fn2-stat-num sub, .fn2-stat-num sup {
  font-size: 0.4em;
  font-weight: 700;
  vertical-align: baseline;
}
.fn2-stat-label {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  line-height: 1.6;
  max-width: 200px;
}

/* ── Testimonials ── */
.fn2-related-work {
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.fn2-related-work .fn2-section-label { color: rgba(255,255,255,.45); }
.fn2-related-work .fn2-section-h2 { color: rgba(255,255,255,.90); }
.fn2-related-work .fn2-section-sub { color: rgba(255,255,255,.62); }
.fn2-related-work .fn2-btn-outline { border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.7); }
.fn2-related-work .fn2-btn-outline:hover { border-color: rgba(255,255,255,.6); color: #fff; }
.fn2-hero .fn2-btn-outline { border-color: rgba(255,255,255,.25); color: rgba(255,255,255,.65); }
.fn2-hero .fn2-btn-outline:hover { border-color: rgba(255,255,255,.7); color: #fff; }
.fn2-rw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
}
.fn2-rw-cta {
  margin-top: 48px;
  text-align: center;
}

/* ── Case study service tag pills ── */
.ay-ov-services { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.cs-svc-tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid currentColor;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
  opacity: .88;
  transition: opacity .2s, background .2s, color .2s;
}
.cs-svc-tag:hover { opacity: 1; background: var(--ink); color: #fff; border-color: var(--ink); }

.fn2-testi {
  padding: 120px 0;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
}
.fn2-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.fn2-testi-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  padding: 36px 32px;
}
.fn2-testi-stars { color: #f59e0b; font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.fn2-testi-quote {
  font-size: 15px;
  color: #333;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.fn2-testi-author { font-size: 13px; font-weight: 700; color: #0a0a0a; }
.fn2-testi-role   { font-size: 12px; color: #64748B; margin-top: 3px; }

/* ── FAQ ── */
.fn2-faq {
  padding: 120px 0;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}
.fn2-faq-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}
.fn2-faq-left {
  position: sticky;
  top: 100px;
}
.fn2-faq-list { border-top: 1px solid #ebebeb; }
.fn2-faq-item { border-bottom: 1px solid #ebebeb; }
.fn2-faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; background: transparent; border: none; cursor: pointer;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 16px; font-weight: 600; color: #0a0a0a; text-align: left;
  letter-spacing: -0.01em;
}
.fn2-faq-chevron { width: 18px; height: 18px; position: relative; flex-shrink: 0; }
.fn2-faq-chevron::before, .fn2-faq-chevron::after {
  content: ''; position: absolute;
  width: 8px; height: 1.5px; background: #aaa; top: 50%;
  transition: transform .3s ease;
}
.fn2-faq-chevron::before { left: 1px; transform: translateY(-50%) rotate(45deg); }
.fn2-faq-chevron::after  { right: 1px; transform: translateY(-50%) rotate(-45deg); }
.fn2-faq-item.open .fn2-faq-chevron::before { transform: translateY(-50%) rotate(-45deg); }
.fn2-faq-item.open .fn2-faq-chevron::after  { transform: translateY(-50%) rotate(45deg); }
.fn2-faq-body { overflow: hidden; max-height: 0; transition: max-height .4s ease, padding .4s ease; }
.fn2-faq-item.open .fn2-faq-body { max-height: 400px; padding-bottom: 20px; }
.fn2-faq-body p { font-size: 15px; color: #666; line-height: 1.75; }

/* ── Nav strip ── */
.fn2-nav-strip {
  padding: 0;
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
}
.fn2-nav-strip-inner {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 0; overflow-x: auto;
}
.fn2-nav-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #bbb; white-space: nowrap; margin-right: 8px;
}
.fn2-nav-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 100px;
  font-size: 13px; font-weight: 500; color: #555;
  text-decoration: none; white-space: nowrap;
  transition: all .2s ease;
}
.fn2-nav-pill:hover { border-color: #0a0a0a; color: #0a0a0a; }
.fn2-nav-pill.active { background: #0a0a0a; color: #fff; border-color: #0a0a0a; }

/* ── CTA ── */
.fn2-cta {
  padding: 160px 0;
  background: #0a0a0a;
  text-align: right;
  position: relative;
  overflow: hidden;
}
.fn2-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(30,64,175,.15) 0%, transparent 70%);
  pointer-events: none;
}
.fn2-cta-inner { position: relative; z-index: 2; }
.fn2-cta-mosaic { display: none; }
.fn2-cta-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 24px;
}
.fn2-cta-h2 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.05;
  max-width: 700px;
  margin: 0 0 24px auto;
}
.fn2-cta-h2 em { font-style: normal; color: #FACC15; }
.fn2-cta-sub {
  font-size: 16px; color: rgba(255,255,255,.5);
  max-width: 480px; margin: 0 0 48px auto;
  line-height: 1.7;
}
.fn2-cta-btns {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 12px; flex-wrap: wrap; margin-bottom: 40px;
}
.fn2-btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px;
  background: #fff; color: #0a0a0a;
  border-radius: 100px;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  transition: all .2s ease;
  border: 1.5px solid #fff;
}
.fn2-btn-white:hover { background: #f0f0f0; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,255,255,.12); }
.fn2-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px;
  background: transparent; color: rgba(255,255,255,.8);
  border-radius: 100px;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  transition: all .2s ease;
  border: 1.5px solid rgba(255,255,255,.2);
}
.fn2-btn-ghost:hover { border-color: rgba(255,255,255,.6); color: #fff; transform: translateY(-2px); }
.fn2-cta-note { font-size: 13px; color: rgba(255,255,255,.3); }
.fn2-cta-contact-row {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,.4);
}
.fn2-cta-dot { color: rgba(255,255,255,.2); }

/* ── Work grid ── */
.fn2-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fn2-work-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.fn2-work-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.07); border-color: #d0d0d0; }
.fn2-work-img-wrap { aspect-ratio: 16/9; overflow: hidden; background: #f4f4f4; }
.fn2-work-img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; display: block; }
.fn2-work-card:hover .fn2-work-img { transform: scale(1.04); }
.fn2-work-body { padding: 24px 28px 28px; }
.fn2-work-cat {
  display: block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #aaa; margin-bottom: 8px;
}
.fn2-work-title {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 17px; font-weight: 700; color: #0a0a0a;
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.fn2-work-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.fn2-work-tag {
  display: inline-block;
  padding: 4px 10px;
  background: #f4f4f4; color: #555;
  border-radius: 100px; font-size: 11px; font-weight: 600;
}

/* ── Work / Portfolio ── */
.mm-work {
  padding: 120px 0;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
}
.mm-work-header {
  max-width: 680px;
  margin-bottom: 60px;
}
.mm-work-heading {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0a0a0a;
  line-height: 1.1;
  margin: 10px 0 16px;
}
.mm-work-intro {
  font-size: 15px;
  color: #666;
  line-height: 1.75;
}
.mm-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mm-work-card--wide { grid-column: span 2; }
.mm-work-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.mm-work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.09);
  border-color: #d0d4dc;
}
.mm-work-browser {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #1a1a1a;
}
.mm-work-browser span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mm-work-browser span:nth-child(1) { background: #ff5f57; }
.mm-work-browser span:nth-child(2) { background: #febc2e; }
.mm-work-browser span:nth-child(3) { background: #28c840; }
.mm-work-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f0f0f0;
}
.mm-work-card--wide .mm-work-img-wrap { aspect-ratio: 16/7; }
.mm-work-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform .5s ease;
}
.mm-work-card:hover .mm-work-img { transform: scale(1.03); }
.mm-work-body {
  padding: 20px 22px 22px;
}
.mm-work-cat {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 6px;
}
.mm-work-title {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.mm-work-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 12px;
  margin-top: -2px;
}
.mm-work-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.mm-work-tag {
  display: inline-block;
  padding: 3px 10px;
  background: #f2f2f2;
  color: #666;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}
.mm-work-tag--blue {
  background: #eff6ff;
  color: #2563eb;
}
.mm-work-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.mm-work-tag--cta {
  background: #eff6ff;
  color: #2563eb;
}
.mm-work-credibility {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid #eee;
  text-align: center;
}
.mm-work-cred-line {
  font-size: .9375rem;
  color: #555;
  margin: 0 0 20px;
  font-style: italic;
}
.mm-work-cred-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.mm-work-cred-tag {
  display: inline-block;
  padding: 6px 14px;
  background: #f5f5f7;
  color: #444;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .02em;
}

/* ── About / Founder (new) ── */
.mm-about {
  padding: 120px 0;
  background: #fff;
}
.mm-about-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 100px;
  align-items: center;
}
.mm-about-photo-wrap {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #f0f0f0;
}
.mm-about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.mm-about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.mm-about-chip {
  padding: 6px 14px;
  background: #f4f4f4;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: #555;
}
.mm-about-heading {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0a0a0a;
  line-height: 1.1;
  margin: 12px 0 28px;
}
.mm-about-text {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}
.mm-about-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid #f0f0f0;
}
.mm-about-edu-line {
  font-size: 13px;
  color: #999;
  margin-top: 16px;
}

@media (max-width: 1024px) {
  .mm-work-grid { grid-template-columns: repeat(2, 1fr); }
  .mm-work-card--wide { grid-column: span 2; }
  .mm-about-inner { grid-template-columns: 1fr; gap: 48px; }
  .mm-about-photo-wrap { aspect-ratio: 3/2; max-width: 480px; }
}
@media (max-width: 640px) {
  .mm-work { padding: 80px 0; }
  .mm-work-grid { grid-template-columns: 1fr; }
  .mm-work-card--wide { grid-column: span 1; }
  .mm-work-card--wide .mm-work-img-wrap { aspect-ratio: 16/9; }
  .mm-about { padding: 80px 0; }
  .mm-about-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ── About / Founder ── */
.fn2-about-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 64px;
}
.fn2-founder-card {
  background: #0a0a0a;
  border-radius: 20px;
  padding: 40px 36px;
  color: #fff;
}
.fn2-founder-initials {
  width: 60px; height: 60px;
  background: #1e40af;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 16px; font-weight: 800; color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.fn2-founder-name {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 18px; font-weight: 700; color: #fff;
  margin-bottom: 4px;
}
.fn2-founder-role { font-size: 13px; color: rgba(255,255,255,.62); margin-bottom: 4px; }
.fn2-founder-loc  { font-size: 13px; color: rgba(255,255,255,.52); margin-bottom: 28px; }
.fn2-founder-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.fn2-founder-chip {
  padding: 5px 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,.6);
}
.fn2-about-text {
  font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 16px;
}
.fn2-about-edu {
  margin-top: 32px; padding-top: 28px; border-top: 1px solid #f0f0f0;
}
.fn2-about-edu-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #aaa; margin-bottom: 12px;
}
.fn2-about-edu-list { list-style: none; padding: 0; }
.fn2-about-edu-list li {
  font-size: 14px; color: #555; line-height: 1.6;
  padding: 10px 0; border-bottom: 1px solid #f0f0f0;
}
.fn2-about-edu-list li:last-child { border-bottom: none; }

/* ── Footer ── */
.fn2-footer {
  background: #0a0a0a;
  padding: 80px 0 0;
}
.fn2-footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.fn2-footer-logo { display: block; margin-bottom: 16px; filter: brightness(0) invert(1); height: 32px; width: auto; }
.fn2-footer-tagline {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,.52); margin-bottom: 16px;
}
.fn2-footer-desc { font-size: 13px; color: rgba(255,255,255,.62); line-height: 1.7; }
.fn2-footer-col-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,.52); margin-bottom: 20px;
}
.fn2-footer-nav { display: flex; flex-direction: column; gap: 12px; }
.fn2-footer-nav a {
  font-size: 14px; color: rgba(255,255,255,.62);
  text-decoration: none; transition: color .2s ease;
}
.fn2-footer-nav a:hover { color: rgba(255,255,255,.9); }
.fn2-footer-loc { font-size: 13px; color: rgba(255,255,255,.58); margin-top: 4px; }
.fn2-footer-bottom {
  padding: 24px 0;
}
.fn2-footer-bottom p { font-size: 12px; color: rgba(255,255,255,.45); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .fn2-features-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .fn2-stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .fn2-process-grid { grid-template-columns: 1fr; }
  .fn2-process-sticky { position: static; margin-bottom: 48px; }
  .fn2-faq-inner { grid-template-columns: 1fr; }
  .fn2-faq-left { position: static; margin-bottom: 40px; }
  .fn2-work-grid { grid-template-columns: repeat(2, 1fr); }
  .fn2-about-inner { grid-template-columns: 1fr; gap: 40px; }
  .fn2-footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .fn2-testi-grid { grid-template-columns: repeat(2, 1fr); }
  .fn2-rw-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .fn2-hero { padding: 120px 0 80px; min-height: auto; }
  .fn2-hero-content { padding: 0 24px; }
  .fn2-hero-h1-solid, .fn2-hero-h1-outline { font-size: clamp(48px, 14vw, 80px); }
  .fn2-hero-orb { width: 300px; height: 300px; right: -80px; }
  .fn2-hero-bottom { flex-direction: column; align-items: flex-start; gap: 24px; }
  .fn2-hero-btns { flex-direction: column; align-items: flex-start; }
  .fn2-features-grid { grid-template-columns: 1fr !important; }
  .fn2-stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .fn2-stat-item { padding: 36px 28px; }
  .fn2-work-grid { grid-template-columns: 1fr; }
  .fn2-footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .fn2-cta-contact-row { flex-direction: column; gap: 6px; }
  .fn2-cta-btns { flex-direction: column; align-items: center; }
  .fn2-features { padding: 80px 0; }
  .fn2-process { padding: 80px 0; }
  .fn2-stats { padding: 0; }
  .fn2-cta { padding: 100px 0; }
  .fn2-testi-grid { grid-template-columns: 1fr; }
  .fn2-rw-grid { grid-template-columns: 1fr; }
}

/* ── Service card link ── */
.fn2-card-link {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  color: #1e40af;
  transition: color .2s ease;
}
.fn2-feature-card:hover .fn2-card-link { color: #1e3a8a; }

/* ── Inline text links ── */
.fn2-inline-link {
  color: #1e40af;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color .2s ease;
}
.fn2-inline-link:hover { color: #1e3a8a; }

/* ── Services Section (mm-services) ── */
.mm-services {
  padding: 120px 0;
  background: #fff;
}
.mm-svc-header {
  max-width: 760px;
  margin-bottom: 72px;
}
.mm-svc-heading {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #0a0a0a;
  margin: 12px 0 20px;
}
.mm-svc-intro {
  font-size: 16px;
  color: #555;
  line-height: 1.75;
  max-width: 640px;
}
.mm-svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.mm-svc-card {
  background: #fff;
  border: 1.5px solid #e8ecf0;
  border-radius: 16px;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.mm-svc-card:hover {
  border-color: #bfdbfe;
  box-shadow: 0 8px 32px rgba(30,64,175,.08);
  transform: translateY(-3px);
}
.mm-svc-card--featured {
  border-color: #dbeafe;
  background: #f8fbff;
}
.mm-svc-card--featured:hover {
  border-color: #93c5fd;
  box-shadow: 0 12px 40px rgba(30,64,175,.12);
}
.mm-svc-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 36px 36px 32px;
}
.mm-svc-card-top {
  flex: 1;
  margin-bottom: 28px;
}
.mm-svc-num {
  display: block;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #2563eb;
  margin-bottom: 14px;
}
.mm-svc-card--featured .mm-svc-num { color: #1e40af; }
.mm-svc-title {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0a0a0a;
  line-height: 1.3;
  margin-bottom: 12px;
}
.mm-svc-desc {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 10px;
}
.mm-svc-outcome {
  font-size: 12.5px;
  color: #888;
  line-height: 1.6;
}
.mm-svc-includes {
  list-style: none;
  border-top: 1px solid #eff2f5;
  padding-top: 20px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.mm-svc-includes li {
  font-size: 12.5px;
  color: #555;
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.mm-svc-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2563eb;
  opacity: .5;
}
.mm-svc-card--featured .mm-svc-includes li::before { background: #1e40af; opacity: .6; }
.mm-svc-footer {
  border-top: 1px solid #eff2f5;
  padding-top: 20px;
}
.mm-svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
  letter-spacing: .01em;
  transition: gap .2s ease, color .2s ease;
}
.mm-svc-link:hover { color: #1e40af; gap: 10px; }
.mm-svc-card--featured .mm-svc-link { color: #1e40af; }
.mm-svc-arrow { display: inline-block; transition: transform .2s ease; }
.mm-svc-link:hover .mm-svc-arrow { transform: translateX(3px); }
.mm-svc-cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: #0a0a0a;
  border-radius: 16px;
  padding: 48px 56px;
  margin-top: 16px;
}
.mm-svc-cta-h {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.mm-svc-cta-p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  max-width: 460px;
}
.mm-svc-cta-right { flex-shrink: 0; }
.mm-svc-cta-btn {
  background: #FACC15 !important;
  color: #0a0a0a !important;
  border-color: #FACC15 !important;
  white-space: nowrap;
}
.mm-svc-cta-btn:hover {
  background: #eab308 !important;
  border-color: #eab308 !important;
}
@media (max-width: 960px) {
  .mm-svc-grid { grid-template-columns: 1fr; }
  .mm-svc-cta-block { flex-direction: column; align-items: flex-start; gap: 24px; padding: 40px; }
}
@media (max-width: 640px) {
  .mm-services { padding: 80px 0; }
  .mm-svc-header { margin-bottom: 48px; }
  .mm-svc-card-inner { padding: 28px 24px 24px; }
  .mm-svc-includes { grid-template-columns: 1fr; }
  .mm-svc-cta-block { padding: 32px 28px; border-radius: 12px; }
  .mm-svc-cta-right { width: 100%; }
  .mm-svc-cta-btn { display: block; text-align: center; }
}

/* ── Website Review CTA card ── */
.fn2-review-card {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: #f8faff;
  border: 1.5px solid #dbeafe;
  border-radius: 16px;
  padding: 40px 48px;
}
.fn2-review-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1e40af;
  background: #dbeafe;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.fn2-review-card-h {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #0a0a0a;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.25;
}
.fn2-review-card-p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  max-width: 520px;
}
.fn2-review-card-right { flex-shrink: 0; }

/* ── Digital Credibility pillars ── */
.fn2-credibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 40px;
}
.fn2-credibility-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.fn2-credibility-card:hover {
  border-color: #c7d2fe;
  box-shadow: 0 4px 20px rgba(30,64,175,.06);
}
.fn2-credibility-num {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #e0e7ff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}
.fn2-credibility-title {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.fn2-credibility-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.65;
}
.fn2-credibility-cta-text {
  font-size: 15px;
  color: #555;
}

/* ── Responsive additions ── */
@media (max-width: 1024px) {
  .fn2-credibility-grid { grid-template-columns: repeat(2, 1fr); }
  .fn2-review-card { flex-direction: column; align-items: flex-start; gap: 24px; padding: 32px; }
}
@media (max-width: 640px) {
  .fn2-credibility-grid { grid-template-columns: 1fr; }
  .fn2-review-card { padding: 28px 24px; }
  .fn2-review-card-h { font-size: 18px; }
}
