/* ═══════════════════════════════════════════════════
   IFEAIKI.DEV — COMPLETE DESIGN SYSTEM
   Consolidated & conflict-free version.
   All layout classes use explicit declarations.
   No theme dependency required.
═══════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────── */
:root {
  --black:        #080808;
  --surface:      #111111;
  --surface2:     #181818;
  --surface3:     #222222;
  --border:       rgba(255,255,255,0.07);
  --border2:      rgba(255,255,255,0.13);
  --white:        #f4f1ec;
  --white-dim:    rgba(244,241,236,0.58);
  --white-faint:  rgba(244,241,236,0.28);
  --lime:         #d4f53c;
  --lime-bg:      rgba(212,245,60,0.08);
  --lime-border:  rgba(212,245,60,0.22);
  --teal:         #3cffd4;
  --teal-bg:      rgba(60,255,212,0.07);
  --font-d:       'Bebas Neue', sans-serif;
  --font-b:       'DM Sans', sans-serif;
  --font-m:       'JetBrains Mono', monospace;
  --r:            10px;
  --r-lg:         18px;
  --ease:         cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black) !important;
  color: var(--white);
  font-family: var(--font-b);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* Grain overlay */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 180px; opacity: 0.5;
}

/* ── LAYOUT ─────────────────────────────────────── */
.wrap    { max-width: 1140px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }
.wrap-sm { max-width: 760px;  margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }
section  { position: relative; z-index: 1; }

/* ── TYPOGRAPHY ─────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-d); letter-spacing: 0.02em; line-height: 1.05; }
h1 { font-size: clamp(3rem, 7.5vw, 6.8rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); }
h4 { font-size: 1.2rem; }
p  { line-height: 1.78; }

.label {
  font-family: var(--font-m); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--lime);
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-bottom: 0.9rem;
}
.label::before { content: ''; width: 16px; height: 1px; background: var(--lime); }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-b); font-size: 0.88rem; font-weight: 600;
  padding: 0.85rem 1.9rem; border-radius: 100px;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.2s var(--ease), opacity 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-lime  { background: var(--lime); color: var(--black); }
.btn-lime:hover { box-shadow: 0 8px 28px rgba(212,245,60,0.22); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid var(--border2); }
.btn-outline:hover { border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.04); }
.btn .arr { transition: transform 0.2s; }
.btn:hover .arr { transform: translateX(3px); }

/* ── NAV ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1rem 2rem;
  display: flex !important; align-items: center; justify-content: space-between; gap: 2rem;
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}
.nav.scrolled { border-color: rgba(212,245,60,0.1); }
.nav-brand {
  font-family: var(--font-d); font-size: 1.35rem; letter-spacing: 0.06em;
  color: var(--white); text-decoration: none; flex-shrink: 0;
}
.nav-brand em { color: var(--lime); font-style: normal; }
.nav-links {
  display: flex !important; align-items: center; gap: 2rem;
  list-style: none; margin: 0 auto;
}
.nav-links a {
  color: var(--white-dim); text-decoration: none; font-size: 0.85rem; font-weight: 500;
  transition: color 0.2s; padding: 0.2rem 0; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--lime); transform: scaleX(0);
  transition: transform 0.2s var(--ease);
}
.nav-links a:hover        { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active        { color: var(--white); }
.nav-right { display: flex !important; align-items: center; gap: 1.2rem; flex-shrink: 0; }
.nav-avail {
  display: flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-m); font-size: 0.68rem; color: var(--lime);
}
.nav-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--lime);
  animation: pulse 2.4s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.5)} }
.nav-btn { padding: 0.55rem 1.25rem; font-size: 0.8rem; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 5px; background: none; border: none;
}
.hamburger span { width: 22px; height: 1.5px; background: var(--white); border-radius: 2px; transition: 0.25s; }

/* ── FOOTER ──────────────────────────────────────── */
.footer { border-top: 1px solid var(--border); padding: 3rem 2rem 2rem; position: relative; z-index: 1; }
.footer-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid !important; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border);
}
.footer-brand { font-family: var(--font-d); font-size: 1.5rem; color: var(--white); text-decoration: none; display: block; margin-bottom: 0.8rem; }
.footer-brand em { color: var(--lime); font-style: normal; }
.footer-tagline { font-size: 0.85rem; color: var(--white-dim); line-height: 1.7; margin-bottom: 1.2rem; }
.footer-socials { display: flex; gap: 0.8rem; }
.social-link {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-family: var(--font-m); color: var(--white-dim); text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: var(--lime); color: var(--lime); }
.footer-col h5 {
  font-family: var(--font-m); font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--lime); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.85rem; color: var(--white-dim); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1140px; margin: 1.5rem auto 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.78rem; color: var(--white-faint); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.78rem; color: var(--white-faint); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }

/* ── PAGE HERO (shared) ──────────────────────────── */
.page-hero {
  padding: 9rem 2rem 5rem;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(212,245,60,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .label { justify-content: center; }
.page-hero h1 { margin-bottom: 1.2rem; }
.page-hero .hero-sub {
  font-size: 1.05rem; color: var(--white-dim);
  max-width: 560px; margin: 0 auto 2.4rem; line-height: 1.8;
}

/* ── SECTION SPACING ─────────────────────────────── */
.sec { padding: 6rem 2rem; }
.sec-dark { background: var(--surface); }
.sec-header { margin-bottom: 3.5rem; }
.sec-header h2 { margin-top: 0.5rem; }
.sec-header p { color: var(--white-dim); max-width: 520px; margin-top: 0.8rem; font-size: 1rem; }
.sec-header.center { text-align: center; }
.sec-header.center p { margin-left: auto; margin-right: auto; }

/* ── CARDS ───────────────────────────────────────── */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2.4rem;
  transition: border-color 0.25s, transform 0.25s;
}
.card:hover { border-color: var(--border2); transform: translateY(-3px); }
.card.lime-top::before {
  content: ''; display: block; height: 2px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  margin: -2.4rem -2.4rem 2rem;
}
.card.featured { border-color: var(--lime-border); background: var(--surface2); }

/* ── GRID UTILITIES ──────────────────────────────── */
.grid-2   { display: grid !important; grid-template-columns: 1fr 1fr;           gap: 1.5rem; }
.grid-3   { display: grid !important; grid-template-columns: repeat(3,1fr);     gap: 1.5rem; }
.grid-4   { display: grid !important; grid-template-columns: repeat(4,1fr);     gap: 1.5rem; }
.grid-2-1 { display: grid !important; grid-template-columns: 1fr 1fr;           gap: 5rem; align-items: center; }

/* ── HERO — HOMEPAGE ─────────────────────────────── */
.hero-inner {
  display: grid !important;
  grid-template-columns: 1fr 480px;
  gap: 4rem;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-ctas {
  display: flex !important;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-proof {
  display: flex !important;
  flex-direction: row !important;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-proof > div { display: block; min-width: 80px; }
.hero-sub {
  font-size: 1rem; color: var(--white-dim);
  max-width: 500px; line-height: 1.8; margin-bottom: 2rem;
}

/* Hero inner — service pages */
.hero-inner-svc {
  display: grid !important;
  grid-template-columns: 1fr 460px;
  gap: 4rem; align-items: center;
  max-width: 1140px; margin: 0 auto; padding: 0 2rem; width: 100%;
}
.hero-country-inner,
.hero-csvc-inner {
  display: grid !important;
  grid-template-columns: 1fr 380px;
  gap: 4rem; align-items: center;
  max-width: 1140px; margin: 0 auto; padding: 0 2rem; width: 100%;
}
.hero-ind-inner {
  display: grid !important;
  grid-template-columns: 1fr 400px;
  gap: 4rem; align-items: center;
  max-width: 1140px; margin: 0 auto; padding: 0 2rem; width: 100%;
}

/* ── RANK CARD (homepage hero) ───────────────────── */
.rank-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}
.rc-head {
  background: var(--surface2); padding: 0.9rem 1.1rem;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-m); font-size: 0.64rem; color: var(--white-faint);
  display: flex; justify-content: space-between; align-items: center;
}
.rc-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); animation: pulse 2s infinite; }
.rrow {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.6rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.rrow.you { background: rgba(212,245,60,0.07); border: 1px solid rgba(212,245,60,0.18); margin: 0.3rem 0.5rem; border-radius: 7px; }
.rp { font-family: var(--font-m); font-size: 0.7rem; color: var(--white-faint); width: 1.1rem; }
.rp.top { color: var(--lime); }
.ri { flex: 1; }
.ri-name { font-size: 0.78rem; font-weight: 500; color: var(--white); }
.ri-name.you { color: var(--lime); }
.ri-kw { font-size: 0.65rem; color: var(--white-faint); }
.rbar-w { width: 80px; height: 4px; background: var(--surface3); border-radius: 2px; overflow: hidden; }
.rbar { height: 100%; background: var(--surface3); border-radius: 2px; transition: width 0.6s; }
.rbar.l { background: var(--lime); }
.rc-arrow { text-align: center; font-family: var(--font-m); font-size: 0.62rem; color: var(--lime); padding: 0.5rem; }
.rc-stat {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.5rem 1rem; border-top: 1px solid rgba(255,255,255,0.04);
  font-family: var(--font-m); font-size: 0.65rem; color: var(--white-faint);
}
.rc-stat span:last-child { color: var(--lime); }
hr.lime { border: none; height: 1px; margin: 0.5rem 1rem; background: rgba(212,245,60,0.15); }

/* ── TICKER ──────────────────────────────────────── */
.ticker {
  background: var(--surface2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 0.85rem 0; overflow: hidden;
}
.ticker-track { display: flex; width: max-content; animation: ticker 30s linear infinite; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-item {
  display: flex; align-items: center; gap: 0.5rem; padding: 0 2.2rem;
  font-family: var(--font-m); font-size: 0.7rem; color: var(--white-faint); white-space: nowrap;
}
.ticker-item .dot { color: var(--lime); font-size: 0.5rem; }

/* ── SERVICES STRIP (homepage) ───────────────────── */
.svc-strip {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border-radius: var(--r-lg); overflow: hidden; margin-top: 2rem;
}
.svc-cell { background: var(--surface); padding: 2rem 1.8rem; transition: background 0.2s; }
.svc-cell:hover { background: var(--surface2); }
.svc-icon  { font-size: 1.8rem; display: block; margin-bottom: 1rem; }
.svc-name  { font-family: var(--font-d); font-size: 1.3rem; margin-bottom: 0.5rem; }
.svc-desc  { font-size: 0.84rem; color: var(--white-dim); line-height: 1.7; margin-bottom: 1rem; }
.svc-link  { font-family: var(--font-m); font-size: 0.72rem; color: var(--lime); text-decoration: none; }
.svc-link:hover { text-decoration: underline; }

/* ── SERVICES DETAIL (services overview page) ────── */
.svc-detail {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
  padding: 3.5rem 0; border-bottom: 1px solid var(--border);
}
.svc-detail:last-child { border-bottom: none; }
.svc-detail.flip > div:first-child { order: 2; }
.svc-detail.flip > div:last-child  { order: 1; }
.svc-num { font-family: var(--font-m); font-size: 0.65rem; color: var(--white-faint); letter-spacing: 0.1em; margin-bottom: 0.8rem; }
.svc-icon-lg { font-size: 2.5rem; display: block; margin-bottom: 1rem; }

/* ── PRICING PILL ────────────────────────────────── */
.pricing-pill {
  display: flex !important; align-items: center; gap: 1.2rem; flex-wrap: wrap;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.2rem 1.6rem; margin-top: 1.5rem;
}
.pp-setup   { font-family: var(--font-d); font-size: 1.8rem; color: var(--lime); line-height: 1; }
.pp-monthly { font-family: var(--font-d); font-size: 1.4rem; color: var(--white); line-height: 1; }
.pp-label   { font-size: 0.72rem; color: var(--white-faint); margin-top: 0.2rem; }
.pp-div     { font-size: 1.2rem; color: var(--white-faint); }

/* ── PRICING COLUMNS ─────────────────────────────── */
.pricing-cols {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border-radius: var(--r-lg); overflow: hidden;
}
.pc { background: var(--surface); padding: 2rem; position: relative; }
.pc.pop { background: var(--surface2); border-top: 2px solid var(--lime); }
.pop-b {
  position: absolute; top: 0.8rem; right: 0.8rem;
  background: var(--lime); color: var(--black);
  font-family: var(--font-m); font-size: 0.58rem; font-weight: 700;
  padding: 0.2rem 0.5rem; border-radius: 100px;
}
.pc-name  { font-family: var(--font-d); font-size: 1.3rem; margin-bottom: 0.4rem; }
.pc-price { font-family: var(--font-d); font-size: 2.2rem; color: var(--lime); line-height: 1; }
.pc-price span { font-size: 0.85rem; color: var(--white-dim); }
.pc-mo { font-size: 0.8rem; color: var(--white-dim); margin-bottom: 1.4rem; }

/* ── TAG / BADGE ─────────────────────────────────── */
.tag {
  font-family: var(--font-m); font-size: 0.67rem; letter-spacing: 0.05em;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  padding: 0.22rem 0.6rem; border-radius: 4px; color: var(--white-faint); display: inline-block;
}
.badge-lime {
  font-family: var(--font-m); font-size: 0.65rem; font-weight: 600;
  background: var(--lime-bg); border: 1px solid var(--lime-border);
  color: var(--lime); padding: 0.25rem 0.65rem; border-radius: 100px; letter-spacing: 0.08em;
}

/* ── STAT BLOCK ──────────────────────────────────── */
.stat-num { font-family: var(--font-d); font-size: 2.8rem; line-height: 1; }
.stat-num em { color: var(--lime); font-style: normal; }
.stat-label { font-size: 0.8rem; color: var(--white-faint); margin-top: 0.2rem; }

/* ── STATS BANNER ────────────────────────────────── */
.stats-banner {
  display: flex !important; gap: 3rem; flex-wrap: wrap;
  justify-content: center; padding: 2rem 0;
}

/* ── DIVIDER ─────────────────────────────────────── */
hr.lime {
  border: none; height: 1px; margin: 2rem 0;
  background: linear-gradient(90deg, transparent, var(--lime-border), transparent);
}

/* ── CHECKLIST ───────────────────────────────────── */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.checklist li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: var(--white-dim); }
.checklist li::before { content: '✓'; color: var(--lime); font-size: 0.78rem; margin-top: 3px; flex-shrink: 0; }

/* ── TESTIMONIALS ────────────────────────────────── */
.testi {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2.4rem; position: relative;
}
.testi::before {
  content: '\201C'; font-family: var(--font-d); font-size: 7rem; line-height: 0.6;
  color: var(--lime); opacity: 0.12; position: absolute; top: 1.2rem; left: 1.8rem;
}
.testi-text { font-size: 1rem; line-height: 1.8; font-style: italic; color: rgba(244,241,236,0.82); margin-bottom: 1.6rem; }
.testi-author { display: flex; align-items: center; gap: 0.9rem; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 1.2rem; color: var(--black);
}
.av-lime  { background: linear-gradient(135deg,var(--lime),#a8c820); }
.av-teal  { background: linear-gradient(135deg,var(--teal),#20c8a0); }
.av-coral { background: linear-gradient(135deg,#ff9a6c,#ff6b6b); }
.testi-name { font-weight: 600; font-size: 0.9rem; }
.testi-co   { font-size: 0.78rem; color: var(--white-faint); margin-top: 1px; }

/* ── STEP LIST ───────────────────────────────────── */
.steps { display: flex; flex-direction: column; }
.step  { display: flex; gap: 1.4rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-n {
  font-family: var(--font-d); font-size: 2rem; color: var(--lime);
  opacity: 0.35; line-height: 1; width: 2rem; flex-shrink: 0; transition: opacity 0.2s;
}
.step:hover .step-n { opacity: 1; }
.step-body h4 { font-family: var(--font-b); font-weight: 600; font-size: 0.95rem; margin-bottom: 0.3rem; }
.step-body p  { font-size: 0.85rem; color: var(--white-dim); line-height: 1.7; }

/* ── FAQ ─────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.4rem 0; text-align: left;
  color: var(--white); font-family: var(--font-b); font-size: 0.95rem; font-weight: 600;
  transition: color 0.2s;
}
.faq-btn:hover { color: var(--lime); }
.faq-icon {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid var(--border2); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--lime); font-size: 1rem; transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--lime-bg); }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1); }
.faq-ans-inner { padding: 0 0 1.4rem; font-size: 0.88rem; color: var(--white-dim); line-height: 1.8; }
.faq-item.open .faq-ans { max-height: 360px; }

/* ── BLOG CARDS ──────────────────────────────────── */
.blog-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
  text-decoration: none; color: var(--white); display: block;
}
.blog-card:hover { border-color: var(--border2); transform: translateY(-3px); }
.bc-img { overflow: hidden; }
.blog-card-body { padding: 1.6rem 1.8rem; }
.blog-card-cat { font-family: var(--font-m); font-size: 0.66rem; letter-spacing: 0.1em; color: var(--lime); margin-bottom: 0.6rem; text-transform: uppercase; }
.blog-card-title { font-family: var(--font-d); font-size: 1.3rem; line-height: 1.2; margin-bottom: 0.6rem; }
.blog-card-excerpt { font-size: 0.84rem; color: var(--white-dim); line-height: 1.7; margin-bottom: 1.2rem; }
.blog-card-meta { font-family: var(--font-m); font-size: 0.68rem; color: var(--white-faint); display: flex; gap: 1rem; }
.blog-feat { display: grid !important; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.blog-grid { display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ── CASE STUDY CARDS ────────────────────────────── */
.case-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
}
.case-header {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.6rem 1.8rem; border-bottom: 1px solid var(--border);
  background: var(--surface2);
}
.case-icon     { font-size: 1.8rem; }
.case-industry { font-family: var(--font-m); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lime); }
.case-title    { font-family: var(--font-d); font-size: 1.3rem; margin-top: 0.2rem; }
.case-location { font-size: 0.78rem; color: var(--white-faint); }
.case-body     { padding: 1.8rem; }
.case-challenge { font-size: 0.88rem; color: var(--white-dim); line-height: 1.7; margin-bottom: 1.4rem; }
.before-after {
  display: grid !important; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
  border-radius: var(--r); overflow: hidden; margin-bottom: 1.4rem;
}
.ba-side { background: var(--surface2); padding: 1rem; }
.ba-label {
  font-family: var(--font-m); font-size: 0.62rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 0.7rem; padding: 0.2rem 0.5rem;
  border-radius: 4px; display: inline-block;
}
.ba-label.before { background: rgba(255,100,100,0.1); color: rgba(255,130,130,0.9); }
.ba-label.after  { background: var(--lime-bg); color: var(--lime); }
.ba-item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.8rem; color: var(--white-dim); padding: 0.3rem 0; }
.case-results {
  display: flex !important; gap: 1.5rem; flex-wrap: wrap;
  padding: 1rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 1.2rem;
}
.cr-item { text-align: center; }
.cr-num  { font-family: var(--font-d); font-size: 1.8rem; color: var(--lime); line-height: 1; }
.cr-label { font-size: 0.72rem; color: var(--white-faint); margin-top: 0.2rem; max-width: 100px; }
.case-quote { background: var(--surface2); border-radius: var(--r); padding: 1.2rem; }
.cq-text    { font-size: 0.85rem; color: var(--white-dim); line-height: 1.75; font-style: italic; margin-bottom: 0.6rem; }
.cq-author  { font-family: var(--font-m); font-size: 0.68rem; color: var(--lime); }

/* ── ABOUT PAGE ──────────────────────────────────── */
.about-split {
  display: grid !important;
  grid-template-columns: 380px 1fr;
  gap: 5rem; align-items: start;
}
.photo-frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border);
}
.photo-frame img { width: 100%; display: block; }
.photo-badge {
  position: absolute; bottom: 1.2rem; left: 1.2rem; right: 1.2rem;
  background: rgba(8,8,8,0.85); backdrop-filter: blur(10px);
  border: 1px solid var(--border2); border-radius: var(--r);
  padding: 0.8rem 1rem; display: flex; align-items: center; gap: 0.8rem;
}
.pb-dot  { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); flex-shrink: 0; animation: pulse 2s infinite; }
.pb-name { font-family: var(--font-b); font-weight: 600; font-size: 0.88rem; }
.pb-role { font-size: 0.72rem; color: var(--white-faint); margin-top: 1px; }
.skills-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem; margin-top: 1.8rem;
}
.skill-item {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 0.55rem 0.85rem;
  font-family: var(--font-m); font-size: 0.72rem; color: var(--white-dim);
}
.timeline { display: flex; flex-direction: column; gap: 0; margin-top: 1.5rem; }
.tl-item  { display: flex; gap: 1.4rem; padding: 1.2rem 0; border-bottom: 1px solid var(--border); }
.tl-item:last-child { border-bottom: none; }
.tl-year { font-family: var(--font-d); font-size: 1.6rem; color: var(--lime); opacity: 0.5; width: 3.5rem; flex-shrink: 0; line-height: 1.2; }
.tl-body h4 { font-family: var(--font-b); font-weight: 600; font-size: 0.95rem; margin-bottom: 0.25rem; }
.tl-body p  { font-size: 0.82rem; color: var(--white-dim); line-height: 1.65; }
.values-grid { display: grid !important; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.val-card { background: var(--surface2); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.4rem; }
.val-icon  { font-size: 1.4rem; margin-bottom: 0.7rem; }
.val-title { font-family: var(--font-b); font-weight: 600; font-size: 0.95rem; margin-bottom: 0.4rem; }
.val-desc  { font-size: 0.82rem; color: var(--white-dim); line-height: 1.65; }

/* ── CONTACT PAGE ────────────────────────────────── */
.contact-layout { display: grid !important; grid-template-columns: 1fr 400px; gap: 5rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 1.5rem; }
.ci-item {
  display: flex; align-items: center; gap: 1rem;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 1rem 1.2rem;
  text-decoration: none; color: var(--white); transition: border-color 0.2s;
}
.ci-item:hover { border-color: var(--border2); }
.ci-icon  { font-size: 1.2rem; }
.ci-label { font-family: var(--font-m); font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white-faint); }
.ci-val   { font-size: 0.88rem; font-weight: 500; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: block; font-family: var(--font-m); font-size: 0.68rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--white-dim); margin-bottom: 0.5rem;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%; background: var(--surface2); border: 1px solid var(--border2);
  border-radius: var(--r); padding: 0.8rem 1rem; color: var(--white);
  font-family: var(--font-b); font-size: 0.88rem; outline: none; transition: border-color 0.2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--lime-border); }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--white-faint); }
.form-select option { background: var(--surface2); color: var(--white); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-note { font-family: var(--font-m); font-size: 0.68rem; color: var(--white-faint); line-height: 1.8; margin-bottom: 1.2rem; }

/* ── INDUSTRY PAGE ───────────────────────────────── */
.ind-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem; margin-top: 1.8rem;
}
.ind-card { background: var(--surface2); border: 1px solid var(--border); border-radius: var(--r); padding: 1rem; }
.ind-icon { font-size: 1.4rem; margin-bottom: 0.4rem; }
.ind-n    { font-family: var(--font-b); font-weight: 600; font-size: 0.88rem; }
.ind-d    { font-size: 0.75rem; color: var(--white-faint); margin-top: 0.2rem; }

/* ── COUNTRY / LOCATION PAGES ────────────────────── */
.geo-strip { display: flex !important; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.8rem; }
.geo {
  font-family: var(--font-m); font-size: 0.68rem;
  background: var(--surface2); border: 1px solid var(--border);
  padding: 0.3rem 0.8rem; border-radius: 100px; color: var(--white-dim);
}

/* ── ANIMATIONS ──────────────────────────────────── */
@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.a1{animation:fadeUp 0.65s 0.05s both}
.a2{animation:fadeUp 0.65s 0.14s both}
.a3{animation:fadeUp 0.65s 0.23s both}
.a4{animation:fadeUp 0.65s 0.32s both}
.a5{animation:fadeUp 0.65s 0.41s both}

/* ── SCROLL REVEAL ───────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE — 1024px ─────────────────────────── */
@media (max-width: 1024px) {
  .grid-4       { grid-template-columns: repeat(2,1fr) !important; }
  .footer-inner { grid-template-columns: 1fr 1fr !important; }
  .svc-strip    { grid-template-columns: repeat(2,1fr) !important; }
}

/* ── RESPONSIVE — 900px ──────────────────────────── */
@media (max-width: 900px) {
  .hero-inner,
  .hero-inner-svc,
  .hero-country-inner,
  .hero-csvc-inner,
  .hero-ind-inner   { grid-template-columns: 1fr !important; }
  .about-split      { grid-template-columns: 1fr !important; gap: 2.5rem; }
  .contact-layout   { grid-template-columns: 1fr !important; gap: 3rem; }
  .svc-detail       { grid-template-columns: 1fr !important; gap: 2rem; }
  .svc-detail.flip > div:first-child { order: unset; }
  .svc-detail.flip > div:last-child  { order: unset; }
  .rank-card        { display: none; }
}

/* ── RESPONSIVE — 768px ──────────────────────────── */
@media (max-width: 768px) {
  .nav-links  { display: none !important; }
  .nav-avail  { display: none; }
  .hamburger  { display: flex; }
  h1 { font-size: clamp(2.6rem,9vw,3.8rem); }
  .grid-2, .grid-3, .grid-2-1 { grid-template-columns: 1fr !important; gap: 1.5rem; }
  .footer-inner   { grid-template-columns: 1fr !important; gap: 2rem; }
  .footer-bottom  { flex-direction: column; align-items: flex-start; }
  .sec            { padding: 4rem 1.5rem; }
  .page-hero      { padding: 8rem 1.5rem 4rem; }
  .before-after   { grid-template-columns: 1fr !important; }
  .blog-feat      { grid-template-columns: 1fr !important; }
  .blog-grid      { grid-template-columns: 1fr 1fr !important; }
  .skills-grid    { grid-template-columns: 1fr 1fr !important; }
  .values-grid    { grid-template-columns: 1fr !important; }
  .pricing-cols   { grid-template-columns: 1fr !important; }
  .ind-grid       { grid-template-columns: 1fr 1fr !important; }
  .form-row       { grid-template-columns: 1fr; }
  .hero-proof     { gap: 1.5rem; }
}

/* ── RESPONSIVE — 480px ──────────────────────────── */
@media (max-width: 480px) {
  .grid-4    { grid-template-columns: 1fr !important; }
  .nav       { padding: 1rem 1.2rem; }
  .blog-grid { grid-template-columns: 1fr !important; }
  .ind-grid  { grid-template-columns: 1fr !important; }
  .skills-grid { grid-template-columns: 1fr !important; }
  .svc-strip { grid-template-columns: 1fr !important; }
}

/* ── Mobile nav open state ── */
.nav-links.open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(18px);
  padding: 1.5rem 2rem 2rem;
  border-bottom: 1px solid var(--border);
  gap: 0;
  z-index: 199;
}
.nav-links.open li { border-bottom: 1px solid var(--border); }
.nav-links.open a  { padding: 1rem 0; display: block; font-size: 1rem; }

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }