/*
Theme Name: Nassika Business
Theme URI: https://nassika-business.com
Author: Nassika Business
Author URI: https://nassika-business.com
Description: Thème WordPress professionnel pour Nassika Business — Cabinet de gestion de projet basé à Abomey-Calavi, Bénin.
Version: 1.0.0
License: Proprietary
License URI: https://nassika-business.com/licence
Text Domain: nassika
Tags: dark, one-page, portfolio, business, project-management
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
*/

/* ============ DESIGN TOKENS ============ */
:root {
  --teal: #48CFCB;
  --teal-deep: #229799;
  --ink: #424242;
  --paper: #F5F5F5;
  --bg: #06100f;
  --bg-2: #0a1817;
  --surface: #0e1f1e;
  --surface-2: #122827;
  --line: rgba(72, 207, 203, 0.12);
  --line-strong: rgba(72, 207, 203, 0.28);
  --text: #F5F5F5;
  --text-2: rgba(245, 245, 245, 0.72);
  --text-3: rgba(245, 245, 245, 0.45);
  --glow: 0 0 40px rgba(72, 207, 203, 0.35);
  --glow-soft: 0 0 80px rgba(72, 207, 203, 0.18);
  --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; margin: 0; padding: 0; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
section { position: relative; }

/* ============ TYPOGRAPHY ============ */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px var(--teal);
  animation: pulseDot 2.4s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.85); }
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.04;
}
h1 { font-size: clamp(40px, 6vw, 84px); font-weight: 500; }
h2 { font-size: clamp(32px, 4.4vw, 56px); font-weight: 500; }
h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 600; }
p { margin: 0; color: var(--text-2); line-height: 1.55; }

.text-teal { color: var(--teal); }
.text-grad {
  background: linear-gradient(90deg, #fff 0%, var(--teal) 60%, var(--teal-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============ BUTTONS ============ */
.btn {
  --btn-bg: var(--teal);
  --btn-fg: #042322;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: .01em;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  box-shadow: 0 10px 30px -12px rgba(72,207,203,.6), inset 0 0 0 1px rgba(255,255,255,.08);
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px -12px rgba(72,207,203,.7), inset 0 0 0 1px rgba(255,255,255,.16);
}
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-ghost {
  background: rgba(255,255,255,.03);
  color: var(--text);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  box-shadow: none;
}
.btn-ghost:hover {
  background: rgba(72,207,203,.06);
  border-color: var(--line-strong);
  box-shadow: 0 0 0 4px rgba(72,207,203,.06);
}

/* ============ CARDS ============ */
.card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,.008));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  overflow: hidden;
  transition: border-color .3s ease, transform .3s ease, background .3s ease;
}
.card::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: inherit;
  background: radial-gradient(600px circle at var(--mx,50%) var(--my,0%), rgba(72,207,203,.18), transparent 40%);
  opacity: 0; transition: opacity .35s ease;
  pointer-events: none;
}
.card:hover { border-color: var(--line-strong); }
.card:hover::before { opacity: 1; }

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
.reveal.delay-4 { transition-delay: .32s; }

/* ============ GRID & SPACING ============ */
.grid { display: grid; gap: 20px; }
.section-pad { padding: 120px 0; }
@media (max-width: 720px) { .section-pad { padding: 80px 0; } }

/* Decorative grid background */
.grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(72,207,203,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(72,207,203,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 70%);
}

/* Noise overlay */
.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Image placeholder */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(45deg, rgba(72,207,203,.06) 0 12px, transparent 12px 24px),
    linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3); font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .15em; text-transform: uppercase;
  overflow: hidden;
}
.ph::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(72,207,203,.15), transparent 50%);
  pointer-events: none;
}

/* Tag chips */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(72,207,203,.06); color: var(--teal);
  border: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(72,207,203,.18); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: rgba(72,207,203,.32); }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 8px; }
::selection { background: rgba(72,207,203,.3); color: #fff; }

/* Brand logo */
.brand-logo {
  height: 38px; width: auto;
  filter: brightness(0) invert(1);
  opacity: .92;
  transition: opacity .2s ease;
}
.brand:hover .brand-logo { opacity: 1; }

/* Marquee */
.marquee {
  display: flex; gap: 64px; padding: 16px 0;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .35s ease, border-color .35s ease, padding .35s ease;
  border-bottom: 1px solid transparent;
}
.nav-scrolled {
  background: rgba(6,16,15,.7);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.nav-links { display: flex; gap: 4px; flex: 1; justify-content: center; }
.nav-links a {
  padding: 10px 16px; border-radius: 999px;
  font-size: 13px; color: var(--text-2);
  transition: color .2s ease, background .2s ease;
}
.nav-links a:hover,
.nav-links a.current-menu-item > a,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a {
  color: var(--text); background: rgba(255,255,255,.04);
}
.nav-burger { display: none; background: none; border: none; padding: 8px; cursor: pointer; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 4px 0; transition: transform .25s ease; }

@media (max-width: 880px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(6,16,15,.96);
    border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav-links.open { max-height: 400px; padding: 12px 28px 24px; }
  .nav-links a { padding: 14px 0; border-radius: 0; }
  .nav-burger { display: block; }
  .nav-cta { display: none; }
}

/* WordPress menu compatibility */
.nav-links ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links li a {
  padding: 10px 16px; border-radius: 999px;
  font-size: 13px; color: var(--text-2);
  transition: color .2s ease, background .2s ease;
}
.nav-links li a:hover { color: var(--text); background: rgba(255,255,255,.04); }
.nav-links .sub-menu {
  display: none;
  position: absolute; top: 100%; left: 0;
  background: rgba(6,16,15,.95);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 8px 0;
  min-width: 220px;
  backdrop-filter: blur(14px);
  flex-direction: column;
}
.nav-links li:hover > .sub-menu { display: flex; }
.nav-links .sub-menu li a {
  padding: 10px 20px; border-radius: 0;
  font-size: 13px; display: block;
}
@media (max-width: 880px) {
  .nav-links ul { flex-direction: column; gap: 0; }
  .nav-links .sub-menu { position: static; display: flex; padding-left: 20px; border: none; background: none; }
}

/* ============ HERO ============ */
.hero { position: relative; min-height: 100vh; overflow: hidden; isolation: isolate; }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(120% 60% at 50% 0%, transparent 30%, rgba(6,16,15,.6) 80%),
    linear-gradient(180deg, transparent 60%, rgba(6,16,15,.95) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding-top: 180px; padding-bottom: 120px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--text-2);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px var(--teal);
  animation: pulseDot 2s infinite;
}
.hero-title { max-width: 1100px; margin-bottom: 28px; }
.hero-sub {
  max-width: 720px;
  font-size: clamp(16px, 1.4vw, 19px);
  margin-bottom: 40px;
  color: var(--text-2);
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 80px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px; max-width: 720px; width: 100%;
  padding: 22px 28px;
  background: rgba(14, 31, 30, .6);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  border-radius: var(--r-lg);
}
.hero-stat-v {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}
.hero-stat-l {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .22em;
  color: var(--text-3);
  text-transform: uppercase;
  margin-top: 6px;
}
@media (max-width:640px) {
  .hero-stats { grid-template-columns: 1fr; }
}
.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .3em; color: var(--text-3);
  z-index: 2;
}
.scroll-line { width: 1px; height: 56px; background: var(--line); position: relative; overflow: hidden; }
.scroll-line > div {
  position: absolute; left: 0; right: 0; height: 30%;
  background: var(--teal);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -30%; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 110%; opacity: 0; }
}

/* ============ PARTNERS ============ */
.partners-sec {
  position: relative;
  padding: 50px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,.2);
}
.partners-head { display: flex; justify-content: center; padding-bottom: 24px; }
.marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.partner-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 16px; color: var(--text-2);
  flex-shrink: 0; letter-spacing: -0.01em;
}
.partner-item:not(:last-child)::after {
  content: ""; width: 4px; height: 4px; border-radius: 50%;
  background: var(--line-strong);
  margin-left: 64px;
}

/* ============ SECTION HEADS ============ */
.sec-head { max-width: 760px; margin-bottom: 60px; }
.sec-head h2 { margin-top: 16px; }
.sec-sub { margin-top: 18px; font-size: 17px; color: var(--text-2); max-width: 640px; }
.sec-head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  max-width: none; gap: 24px; flex-wrap: wrap;
}

/* ============ SERVICES ============ */
.services-sec { position: relative; }
.services-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width:980px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:640px) { .services-grid { grid-template-columns: 1fr; } }
.service-card { display: flex; flex-direction: column; min-height: 280px; }
.service-num {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--teal); letter-spacing: .2em;
  margin-bottom: 24px;
}
.service-icon {
  width: 44px; height: 44px; color: var(--teal);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 22px;
  background: rgba(72,207,203,.04);
  box-shadow: inset 0 0 20px rgba(72,207,203,.06);
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 { margin-bottom: 10px; color: var(--text); }
.service-card p { flex: 1; font-size: 14.5px; }
.service-link {
  margin-top: 22px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--teal); padding-top: 16px; border-top: 1px solid var(--line);
  transition: gap .25s ease;
}
.service-link:hover { gap: 14px; }

/* ============ METHOD ============ */
.method-rail {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
  position: relative;
}
.method-line {
  position: absolute; left: 6%; right: 6%; top: 36px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}
.method-line span {
  position: absolute; left: 0; top: -3px; width: 6px; height: 6px;
  background: var(--teal); border-radius: 50%;
  box-shadow: 0 0 12px var(--teal);
  animation: methodTravel 6s ease-in-out infinite;
}
@keyframes methodTravel {
  0%, 100% { left: 0; }
  50% { left: calc(100% - 6px); }
}
.method-step { text-align: center; }
.method-bubble {
  width: 72px; height: 72px; margin: 0 auto 22px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  display: grid; place-items: center; position: relative;
  box-shadow: 0 0 0 8px var(--bg), inset 0 0 22px rgba(72,207,203,.08);
}
.method-bubble-inner {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(72,207,203,.15), rgba(34,151,153,.05));
  display: grid; place-items: center;
  font-family: var(--font-mono); color: var(--teal); font-size: 14px; letter-spacing: .1em;
}
.method-step h3 { margin-bottom: 8px; font-size: 17px; }
.method-step p { font-size: 14px; }
@media (max-width:880px) {
  .method-rail { grid-template-columns: 1fr; gap: 32px; }
  .method-line { display: none; }
}

/* ============ STATS ============ */
.stats-sec {
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(72,207,203,.06), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 80px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; text-align: center; }
@media (max-width:780px) { .stats-grid { grid-template-columns: repeat(2,1fr); gap: 40px; } }
.stat-v {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 500; letter-spacing: -0.02em; color: var(--text);
}
.stat-v span {
  background: linear-gradient(180deg, #fff 0%, var(--teal) 120%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-l {
  font-family: var(--font-mono); font-size: 11px; color: var(--text-3);
  letter-spacing: .22em; text-transform: uppercase; margin-top: 10px;
}

/* ============ CASES ============ */
.cases-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
@media (max-width:780px) { .cases-grid { grid-template-columns: 1fr; } }
.case-card {
  position: relative;
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.005));
  transition: border-color .3s ease, transform .3s ease;
  overflow: hidden;
}
.case-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.case-img { width: 100%; height: 220px; margin-bottom: 18px; }
.case-img img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-md); }
.case-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.case-num { font-family: var(--font-mono); font-size: 13px; color: var(--teal); letter-spacing: .08em; }
.case-card h3 { margin-bottom: 8px; }
.case-card p { font-size: 14.5px; }
.case-arrow {
  position: absolute; top: 22px; right: 22px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(72,207,203,.06);
  border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--teal);
  transition: transform .25s ease;
}
.case-card:hover .case-arrow { transform: rotate(-30deg) translate(2px,-2px); }

/* ============ TESTIMONIALS ============ */
.testi-sec { background: linear-gradient(180deg, var(--bg), #050d0c); }
.testi-stage { position: relative; max-width: 880px; margin: 0 auto; min-height: 320px; padding: 50px 20px 80px; text-align: center; }
.testi-quote { position: absolute; left: 50%; top: 0; transform: translateX(-50%); color: rgba(72,207,203,.18); }
.testi-card {
  position: absolute; inset: 50px 20px auto 20px;
  opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease;
  pointer-events: none;
}
.testi-card.on { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.testi-q {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.4; color: var(--text); font-weight: 400;
}
.testi-author { display: flex; align-items: center; gap: 14px; justify-content: center; margin-top: 32px; }
.testi-avatar { width: 52px; height: 52px; border-radius: 50%; font-size: 14px; font-family: var(--font-mono); color: var(--teal); }
.testi-name { font-weight: 600; color: var(--text); text-align: left; }
.testi-role { font-size: 12px; color: var(--text-3); text-align: left; font-family: var(--font-mono); letter-spacing: .06em; }
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 40px; }
.testi-controls > button {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.02); border: 1px solid var(--line); color: var(--text);
  display: grid; place-items: center; transition: border-color .2s, background .2s, color .2s;
}
.testi-controls > button:hover { border-color: var(--teal); color: var(--teal); background: rgba(72,207,203,.06); }
.testi-dots { display: flex; gap: 6px; }
.testi-dots .dot-btn {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: rgba(72,207,203,.2); padding: 0; transition: background .2s, transform .2s;
  cursor: pointer;
}
.testi-dots .dot-btn.on { background: var(--teal); transform: scale(1.3); box-shadow: 0 0 10px var(--teal); }

/* ============ TEAM ============ */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
@media (max-width:980px) { .team-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:540px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.005));
  transition: border-color .3s ease, transform .3s ease;
}
.team-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.team-photo { width: 100%; aspect-ratio: 1/1; margin-bottom: 18px; border-radius: 14px; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 18px; margin-bottom: 4px; }
.team-role {
  font-family: var(--font-mono); font-size: 11px; color: var(--teal);
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px;
}
.team-card p { font-size: 13.5px; }
.team-socials { display: flex; gap: 10px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.team-socials a {
  width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--text-2); transition: color .2s, border-color .2s;
}
.team-socials a:hover { color: var(--teal); border-color: var(--line-strong); }

/* ============ BLOG ============ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
@media (max-width:880px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.005));
  transition: border-color .3s ease, transform .3s ease;
}
.blog-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.blog-img { width: 100%; height: 200px; margin-bottom: 16px; overflow: hidden; border-radius: var(--r-md); }
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.blog-date { font-family: var(--font-mono); font-size: 11px; color: var(--text-3); letter-spacing: .06em; }
.blog-card h3 { font-size: 18px; line-height: 1.3; margin-bottom: 16px; text-wrap: balance; }
.blog-read {
  display: inline-flex; gap: 8px; align-items: center;
  color: var(--teal); font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .15em; text-transform: uppercase;
  transition: gap .25s ease;
}
.blog-card:hover .blog-read { gap: 14px; }

/* ============ FAQ ============ */
.faq-sec { background: linear-gradient(180deg, #050d0c, var(--bg)); }
.faq-wrap { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(255,255,255,.015);
  overflow: hidden;
  transition: border-color .25s ease, background .25s ease;
}
.faq-item.on { border-color: var(--line-strong); background: rgba(72,207,203,.03); }
.faq-item button {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; background: none; border: none; color: var(--text);
  font-family: var(--font-display); font-size: 17px; font-weight: 500; text-align: left;
  cursor: pointer;
}
.faq-plus { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-plus span {
  position: absolute; left: 0; top: 50%; width: 18px; height: 1.5px;
  background: var(--teal); transform: translateY(-50%); transition: transform .3s ease;
}
.faq-plus span:last-child { transform: translateY(-50%) rotate(90deg); }
.faq-item.on .faq-plus span:last-child { transform: translateY(-50%) rotate(0deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.faq-item.on .faq-answer { grid-template-rows: 1fr; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { padding: 0 24px 22px; font-size: 15px; }

/* ============ CONTACT ============ */
.contact-sec { background: linear-gradient(180deg, var(--bg), #050d0c); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-info { margin-top: 40px; border-top: 1px solid var(--line); }
.contact-row {
  display: grid; grid-template-columns: 110px 1fr; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.contact-row-l {
  font-family: var(--font-mono); font-size: 11px; color: var(--text-3);
  letter-spacing: .18em; text-transform: uppercase;
}
.contact-row-r { color: var(--text); font-size: 14.5px; }
.contact-row-r a { transition: color .2s ease; }
.contact-row-r a:hover { color: var(--teal); }
.contact-form {
  background: rgba(14,31,30,.5);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width:540px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--text-3);
}
.field input, .field select, .field textarea {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14.5px;
  padding: 13px 14px;
  border-radius: 10px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
  resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: rgba(72,207,203,.04);
  box-shadow: 0 0 0 4px rgba(72,207,203,.1);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2348CFCB' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.field select option {
  background: #0e1f1e;
  color: #f1f2f2;
  padding: 8px;
}
.form-note { font-size: 12px; color: var(--text-3); margin-top: 14px; }

/* ============ NEWSLETTER ============ */
.newsletter-sec { padding: 60px 0; }
.newsletter-card {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(120% 80% at 0% 50%, rgba(72,207,203,.18), transparent 60%),
    radial-gradient(120% 80% at 100% 50%, rgba(34,151,153,.18), transparent 60%),
    linear-gradient(180deg, rgba(14,31,30,.9), rgba(10,24,23,.95));
  padding: 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
@media (max-width:780px) { .newsletter-card { grid-template-columns: 1fr; padding: 40px 28px; } }
.newsletter-content h2 { margin: 14px 0 14px; }
.newsletter-deco { position: absolute; inset: 0; pointer-events: none; }
.newsletter-deco span {
  position: absolute; bottom: 0;
  width: 1px; height: 100%;
  background: linear-gradient(to top, transparent, rgba(72,207,203,.5), transparent);
  animation: lineBeam 4s ease-in-out infinite;
  opacity: 0;
}
@keyframes lineBeam {
  0%, 100% { opacity: 0; transform: translateY(80%); }
  50% { opacity: .4; transform: translateY(-20%); }
}
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }
.newsletter-form input {
  flex: 1; min-width: 220px;
  background: rgba(0,0,0,.35);
  border: 1px solid var(--line-strong);
  color: var(--text);
  padding: 14px 18px;
  border-radius: 999px;
  font-size: 14px;
}
.newsletter-form input:focus { outline: none; border-color: var(--teal); }

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--line);
  background: #040b0a;
  padding: 80px 0 30px;
  position: relative;
}
.footer-top { display: grid; grid-template-columns: 1.2fr 2fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid var(--line); }
@media (max-width: 880px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand p { margin-top: 18px; max-width: 360px; font-size: 14px; }
.footer-socials { display: flex; gap: 18px; margin-top: 24px; }
.footer-socials a {
  font-family: var(--font-mono); font-size: 11px; color: var(--text-2);
  letter-spacing: .15em; text-transform: uppercase; transition: color .2s ease;
}
.footer-socials a:hover { color: var(--teal); }
.footer-cols { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
@media (max-width: 720px) { .footer-cols { grid-template-columns: repeat(2,1fr); } }
.footer-cols h4 {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 18px; font-weight: 500;
}
.footer-cols a { display: block; padding: 6px 0; font-size: 14px; color: var(--text-2); transition: color .2s ease; }
.footer-cols a:hover { color: var(--teal); }
.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(60px, 18vw, 240px);
  letter-spacing: -0.04em;
  line-height: 0.9;
  background: linear-gradient(180deg, rgba(72,207,203,.16), rgba(72,207,203,0));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  text-align: center;
  padding: 60px 0 0;
  user-select: none;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 30px; gap: 20px; flex-wrap: wrap;
  font-size: 12px; color: var(--text-3); font-family: var(--font-mono); letter-spacing: .08em;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { transition: color .2s ease; }
.footer-legal a:hover { color: var(--teal); }

/* ============ SINGLE SERVICE PAGE ============ */
.page-hero {
  padding: 180px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero .grid-bg { position: absolute; inset: 0; pointer-events: none; }
.page-hero-inner { position: relative; z-index: 2; max-width: 800px; }
.page-hero-inner .eyebrow { margin-bottom: 20px; }
.page-hero-inner h1 { margin-bottom: 24px; font-size: clamp(32px, 5vw, 64px); }
.page-hero-inner p { font-size: 18px; max-width: 640px; }

/* Single post / page content */
.single-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 0 120px;
}
.single-content h2 { margin: 48px 0 20px; font-size: clamp(24px, 3vw, 36px); }
.single-content h3 { margin: 36px 0 16px; }
.single-content p { margin-bottom: 20px; font-size: 16px; line-height: 1.7; }
.single-content ul, .single-content ol {
  margin: 20px 0; padding-left: 24px;
}
.single-content li {
  list-style: disc;
  margin-bottom: 10px;
  color: var(--text-2);
  line-height: 1.6;
}
.single-content ol li { list-style: decimal; }
.single-content blockquote {
  border-left: 3px solid var(--teal);
  padding: 16px 24px;
  margin: 30px 0;
  background: rgba(72,207,203,.04);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.single-content blockquote p { color: var(--text); font-style: italic; }
.single-content img { border-radius: var(--r-md); margin: 30px 0; }
.single-content a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.single-content a:hover { color: #fff; }

/* Blog archive */
.archive-header { padding: 180px 0 60px; }
.archive-header h1 { margin-top: 16px; }
.blog-pagination {
  display: flex; gap: 8px; justify-content: center; margin-top: 60px;
}
.blog-pagination a, .blog-pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); color: var(--text-2);
  font-family: var(--font-mono); font-size: 13px;
  transition: all .2s ease;
}
.blog-pagination a:hover { border-color: var(--teal); color: var(--teal); }
.blog-pagination .current { background: var(--teal); color: #042322; border-color: var(--teal); }

/* 404 */
.page-404 {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.page-404 h1 {
  font-size: clamp(80px, 15vw, 200px);
  background: linear-gradient(180deg, rgba(72,207,203,.3), rgba(72,207,203,0));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.page-404 p { margin: 20px 0 40px; }

/* WordPress admin bar fix */
body.admin-bar .nav { top: 32px; }
@media (max-width: 782px) { body.admin-bar .nav { top: 46px; } }
