/* =============================================================
   ARC FINANCIAL SERVICES — 3-Style Design System
   Style 1 "PRECISION"  : Space Grotesk · Sharp Navy · Electric Gold
   Style 2 "LUMINARY"   : Outfit · Deep Blue · Vivid Teal
   Style 3 "EDITORIAL"  : Cormorant Garamond · True Black · Champagne
   ============================================================= */

/* ─── STYLE 1: PRECISION (default) ─────────────────────────── */
:root,
[data-style="1"] {
  --bg:   #04091A;
  --bg2:  #071228;
  --card: #0B1C34;
  --bdr:  #172E50;
  --acc:  #F2CB45;
  --acc2: #FFE07A;
  --acc3: #B8941C;
  --txt:  #FFFFFF;
  --body: #A8C0DC;
  --mut:  #527294;
  --nav:  rgba(4,9,26,0.96);
  --foot: #020610;
  --fh:   'Space Grotesk', 'Inter', sans-serif;
  --fb:   'Inter', sans-serif;
  --r:    4px;
  --rl:   8px;
  --sh:   0 8px 32px rgba(0,0,0,.45);
  --sha:  0 0 28px rgba(242,203,69,.22);
  --tr:   .3s cubic-bezier(.4,0,.2,1);
  --pad:  100px 0;
}

/* ─── STYLE 2: MIDNIGHT GREEN (Ivory + Green) ───────────────── */
[data-style="2"] {
  --bg:   #FDFAF4;
  --bg2:  #EFF7F2;
  --card: #FFFFFF;
  --bdr:  rgba(0,160,60,.18);
  --acc:  #00A846;
  --acc2: #00C853;
  --acc3: #007A30;
  --txt:  #060606;
  --body: #2A4030;
  --mut:  #4A7A58;
  --nav:  rgba(253,250,244,.97);
  --foot: #060606;
  --fh:   'DM Serif Display', Georgia, serif;
  --fb:   'Outfit', sans-serif;
  --r:    18px;
  --rl:   28px;
  --sh:   0 4px 24px rgba(0,0,0,.08);
  --sha:  0 0 32px rgba(0,160,60,.18);
  --tr:   .35s cubic-bezier(.4,0,.2,1);
  --pad:  100px 0;
}

/* ─── STYLE 4: NIGHT GREEN (Sharp Black + Green) ─────────────── */
[data-style="4"] {
  --bg:   #060606;
  --bg2:  #0A0A0A;
  --card: rgba(0,200,80,.03);
  --bdr:  rgba(0,200,80,.12);
  --acc:  #00C853;
  --acc2: #69F0AE;
  --acc3: #00953D;
  --txt:  #FFFFFF;
  --body: #A8C8B0;
  --mut:  #4A7A58;
  --nav:  rgba(6,6,6,.97);
  --foot: #020202;
  --fh:   'Space Grotesk','Inter',sans-serif;
  --fb:   'Inter',sans-serif;
  --r:    4px;
  --rl:   8px;
  --sh:   0 8px 32px rgba(0,0,0,.55);
  --sha:  0 0 32px rgba(0,200,80,.2);
  --tr:   .3s cubic-bezier(.4,0,.2,1);
  --pad:  100px 0;
}

/* ─── STYLE 3: EDITORIAL ────────────────────────────────────── */
[data-style="3"] {
  --bg:   #060606;
  --bg2:  #0E0E0E;
  --card: #111111;
  --bdr:  #282828;
  --acc:  #E8C050;
  --acc2: #F8D870;
  --acc3: #AE8C28;
  --txt:  #F5F0E8;
  --body: #C0B8A8;
  --mut:  #706858;
  --nav:  rgba(6,6,6,.97);
  --foot: #020202;
  --fh:   'Cormorant Garamond', Georgia, serif;
  --fb:   'Source Sans 3', sans-serif;
  --r:    1px;
  --rl:   2px;
  --sh:   0 8px 32px rgba(0,0,0,.65);
  --sha:  0 0 24px rgba(232,192,80,.18);
  --tr:   .3s cubic-bezier(.4,0,.2,1);
  --pad:  100px 0;
}

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 18px; }
body  {
  background: var(--bg);
  color: var(--body);
  font-family: var(--fb);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background .4s, color .4s;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }
img { max-width: 100%; display: block; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--acc3); border-radius: 3px; }

/* ─── LAYOUT ────────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ─── HELPERS ───────────────────────────────────────────────── */
.gold   { color: var(--acc); }
.center { text-align: center; }

.section__eyebrow {
  font-family: var(--fb);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 12px;
  display: block;
}
.section__title {
  font-family: var(--fh);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--txt);
  line-height: 1.18;
  margin-bottom: 20px;
}
.section__subtitle {
  font-size: 1.02rem;
  color: var(--mut);
  max-width: 620px;
  margin-bottom: 48px;
  line-height: 1.8;
}
.section__subtitle.center { margin-left: auto; margin-right: auto; }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r);
  font-family: var(--fb);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: var(--tr);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--acc);
  color: #060606;
}
.btn--primary:hover {
  background: var(--acc2);
  transform: translateY(-2px);
  box-shadow: var(--sha);
}
.btn--outline {
  border: 2px solid var(--acc);
  color: var(--acc);
}
.btn--outline:hover {
  background: rgba(255,255,255,.06);
  transform: translateY(-2px);
}
.btn--full { width: 100%; }

/* ─── BADGE ─────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--bdr);
  color: var(--acc2);
  border-radius: var(--r);
  padding: 4px 14px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ─── SECTIONS ──────────────────────────────────────────────── */
.section { padding: var(--pad); }
.section--alt { background: var(--bg2); }

/* ─── REVEAL ────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
.revealed { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--tr);
}
.navbar--scrolled {
  background: var(--nav);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 48px;
  box-shadow: 0 2px 24px rgba(0,0,0,.4);
}
.navbar__logo {
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
}
.navbar__logo-img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
}
[data-style="1"] .navbar__logo-img,
[data-style="3"] .navbar__logo-img,
[data-style="4"] .navbar__logo-img {
  filter: brightness(0) invert(1) drop-shadow(0 1px 3px rgba(0,0,0,.3));
}
[data-style="2"] .navbar__logo-img {
  filter: none;
}
.navbar__logo span { color: var(--acc); }
.navbar__links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.navbar__links li button {
  color: var(--txt);
  font-size: .93rem;
  font-weight: 500;
  font-family: var(--fb);
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s;
  position: relative;
  padding-bottom: 4px;
}
.navbar__links li button::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--acc);
  transition: width .3s;
}
.navbar__links li button:hover { color: var(--acc); }
.navbar__links li button:hover::after { width: 100%; }

.navbar__hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.navbar__hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--tr);
}

/* ═══════════════════════════════════════════════════════════════
   HERO  (pinned dark — cinematic regardless of style)
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #04091A;
  color: #A8C0DC;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__cinematic {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=70&fit=crop') center/cover no-repeat;
  opacity: .08;
  filter: grayscale(.3);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242,203,69,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,203,69,.04) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero__grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
}
.hero__bg::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,203,69,.07) 0%, transparent 70%);
  top: -80px; right: -80px;
  animation: orb 7s ease-in-out infinite;
}
.hero__bg::after {
  content: '';
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,203,69,.05) 0%, transparent 70%);
  bottom: 40px; left: -60px;
  animation: orb 9s ease-in-out infinite 2s;
}
.hero__particles { position: absolute; inset: 0; pointer-events: none; }
.hero__particle {
  position: absolute;
  width: 3px; height: 3px;
  background: #F2CB45;
  border-radius: 50%;
  opacity: .35;
  animation: floatP linear infinite;
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 130px 24px 90px;
  max-width: 880px;
}
.hero__eyebrow {
  font-family: var(--fb);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #F2CB45;
  margin-bottom: 24px;
  animation: fadeUp .8s ease both;
}
.hero__title {
  font-family: 'Space Grotesk', Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 800;
  line-height: 1.06;
  color: #FFFFFF;
  margin-bottom: 24px;
  animation: fadeUp .9s ease .2s both;
}
.hero__title--acc { color: #F2CB45; display: block; }
.hero__tagline {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 24px;
  animation: fadeUp .9s ease .35s both;
}
.hero__subtitle {
  font-size: 1.08rem;
  color: rgba(200,220,240,.85);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.82;
  animation: fadeUp .9s ease .45s both;
}
.hero__cta {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp .9s ease .55s both;
}
/* hero buttons always use fixed colors (hero is always dark) */
.hero .btn--primary { background: #F2CB45; color: #04091A; }
.hero .btn--primary:hover { background: #FFE07A; }
.hero .btn--outline { border-color: #F2CB45; color: #F2CB45; }

.hero__offices {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp .9s ease .65s both;
}
.hero__offices span { font-size: .78rem; color: rgba(200,220,240,.55); letter-spacing: .05em; }
.hero__office-dot  { color: #F2CB45; opacity: .4; }

.hero__scroll-down {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: bounce 2.2s ease infinite 2s;
}
.hero__scroll-arrow {
  width: 22px; height: 22px;
  border-right: 2px solid #F2CB45;
  border-bottom: 2px solid #F2CB45;
  transform: rotate(45deg);
  opacity: .65;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT  (with corporate image)
   ═══════════════════════════════════════════════════════════════ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.about__body { color: var(--body); margin-bottom: 16px; font-size: 1rem; line-height: 1.82; }
.about__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

/* Corporate image above stats */
.about__visual {
  border-radius: var(--rl);
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}
.about__visual-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: brightness(.85) saturate(.9);
  transition: transform .6s ease, filter .6s ease;
}
.about__visual:hover .about__visual-img { transform: scale(1.04); filter: brightness(.92) saturate(1); }
.about__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(4,9,26,.6) 100%);
  pointer-events: none;
}

/* Stats */
.about__stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 28px 20px;
  text-align: center;
  transition: var(--tr);
}
.stat-card:hover { border-color: var(--acc3); transform: translateY(-3px); box-shadow: var(--sha); }
.stat-card--acc {
  background: linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border-color: rgba(255,255,255,.15);
}
.stat-card__number {
  font-family: var(--fh);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--acc);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card__number span { font-size: 1.6rem; }
.stat-card__label {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mut);
}

/* ═══════════════════════════════════════════════════════════════
   WHY ARC-FS  (with per-card images)
   ═══════════════════════════════════════════════════════════════ */
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 48px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: var(--rl);
  overflow: hidden;
  transition: var(--tr);
  position: relative;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--acc), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover { border-color: var(--acc3); transform: translateY(-6px); box-shadow: var(--sha); }

/* Image at top of card */
.feature-card__img-wrap {
  height: 175px;
  overflow: hidden;
  position: relative;
}
.feature-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.72) saturate(.8);
  transition: transform .6s ease, filter .6s ease;
}
.feature-card:hover .feature-card__img { transform: scale(1.06); filter: brightness(.85) saturate(.95); }
.feature-card__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(4,9,26,.75) 100%);
}

/* Text content */
.feature-card__content { padding: 28px; }
.feature-card__icon { font-size: 1.8rem; margin-bottom: 14px; }
.feature-card__title {
  font-family: var(--fh);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 10px;
}
.feature-card__body { font-size: .88rem; color: var(--mut); line-height: 1.78; }

/* ═══════════════════════════════════════════════════════════════
   WHO WE SERVE
   ═══════════════════════════════════════════════════════════════ */
.clients__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
  margin-top: 48px;
}
.client-card {
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--tr);
  font-size: .85rem;
  font-weight: 500;
  color: var(--body);
}
.client-card:hover { border-color: var(--acc); color: var(--acc2); transform: translateX(4px); }
.client-card__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--acc);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES  (with per-card images)
   ═══════════════════════════════════════════════════════════════ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
  margin-top: 48px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  overflow: hidden;
  transition: var(--tr);
}
.service-card:hover { border-color: var(--acc); transform: translateY(-5px); box-shadow: var(--sha), var(--sh); }

/* Image header */
.service-card__img-wrap {
  height: 130px;
  overflow: hidden;
  position: relative;
}
.service-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.65) saturate(.75);
  transition: transform .55s ease, filter .55s ease;
}
.service-card:hover .service-card__img { transform: scale(1.08); filter: brightness(.8) saturate(.95); }
.service-card__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(4,9,26,.8) 100%);
}

/* Text */
.service-card__body-wrap { padding: 20px; }
.service-card__icon { font-size: 1.5rem; margin-bottom: 10px; }
.service-card__title {
  font-family: var(--fh);
  font-size: .98rem;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 8px;
}
.service-card__body { font-size: .82rem; color: var(--mut); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════════
   FOUNDERS
   ═══════════════════════════════════════════════════════════════ */
.founders__quote {
  max-width: 780px;
  margin: 0 auto 60px;
  padding: 36px 44px;
  background: var(--card);
  border: 1px solid var(--bdr);
  border-left: 4px solid var(--acc);
  border-radius: var(--r);
}
.founders__quote-mark {
  font-family: var(--fh);
  font-size: 5rem;
  color: var(--acc);
  line-height: .5;
  margin-bottom: 16px;
  opacity: .5;
}
.founders__quote p { font-size: 1.02rem; color: var(--body); line-height: 1.88; font-style: italic; }
.founders__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}
.founder-card {
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: var(--rl);
  padding: 34px 28px;
  text-align: center;
  transition: var(--tr);
}
.founder-card:hover { border-color: var(--acc3); box-shadow: var(--sha); }
.founder-card__photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  display: block;
  margin: 0 auto 24px;
  border: 3px solid var(--bdr);
  box-shadow: 0 6px 28px rgba(0,0,0,.35);
}
.founder-card__name {
  font-family: var(--fh);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 4px;
}
.founder-card__role {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 14px;
}
.founder-card__bio { font-size: .86rem; color: var(--mut); line-height: 1.76; }

/* ═══════════════════════════════════════════════════════════════
   INDUSTRIES
   ═══════════════════════════════════════════════════════════════ */
.industries__tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 40px; }
.industry-tag {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--bdr);
  color: var(--body);
  border-radius: 30px;
  padding: 8px 22px;
  font-size: .83rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: var(--tr);
  cursor: default;
}
.industry-tag:hover { background: rgba(255,255,255,.08); border-color: var(--acc); color: var(--acc2); transform: scale(1.04); }

/* ═══════════════════════════════════════════════════════════════
   ENGAGEMENT MODELS
   ═══════════════════════════════════════════════════════════════ */
.engagement__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 48px; }
.engagement-card {
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: var(--rl);
  padding: 36px 28px;
  transition: var(--tr);
}
.engagement-card--featured {
  border-color: var(--acc);
  background: linear-gradient(160deg, rgba(255,255,255,.05), var(--card));
  position: relative;
}
.engagement-card--featured::after {
  content: 'POPULAR';
  position: absolute;
  top: -1px; right: 22px;
  background: var(--acc);
  color: #04091A;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .14em;
  padding: 4px 12px;
  border-radius: 0 0 5px 5px;
}
.engagement-card:hover { transform: translateY(-6px); box-shadow: var(--sha), var(--sh); }
.engagement-card__icon { font-size: 1.9rem; margin-bottom: 16px; }
.engagement-card__title {
  font-family: var(--fh);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 12px;
}
.engagement-card__body { font-size: .86rem; color: var(--mut); line-height: 1.76; margin-bottom: 22px; }
.engagement-card__benefits { display: flex; flex-direction: column; gap: 8px; }
.engagement-card__benefits li { font-size: .82rem; color: var(--body); display: flex; align-items: center; gap: 10px; }
.check { color: var(--acc); font-weight: 800; }

/* ═══════════════════════════════════════════════════════════════
   TWSS
   ═══════════════════════════════════════════════════════════════ */
.twss__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: var(--rl);
  padding: 60px 52px;
  position: relative;
  overflow: hidden;
}
.twss__inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--acc), transparent);
}
.twss__body { color: var(--body); font-size: .94rem; line-height: 1.82; margin-bottom: 14px; }
.twss__tagline {
  font-family: var(--fh);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--acc2);
  margin-bottom: 28px;
  padding-left: 16px;
  border-left: 2px solid var(--acc);
}
.twss__badge-inner {
  width: 172px; height: 172px;
  border-radius: 50%;
  border: 2px solid var(--acc);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  background: rgba(255,255,255,.03);
  padding: 20px;
}
.twss__badge-logo {
  font-family: var(--fh);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--acc);
  line-height: 1;
}
.twss__badge-text {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mut);
  margin: 8px 0 4px;
  line-height: 1.4;
}
.twss__badge-year { font-size: .68rem; color: var(--acc); font-weight: 700; }

/* ═══════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════ */
.contact__grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; align-items: start; margin-top: 48px; }
.contact__info-heading { font-family: var(--fh); font-size: 1.35rem; color: var(--txt); margin-bottom: 30px; }
.contact__items { display: flex; flex-direction: column; gap: 26px; }
.contact__item { display: flex; align-items: flex-start; gap: 16px; }
.contact__item-icon { font-size: 1.3rem; margin-top: 2px; flex-shrink: 0; }
.contact__item-label {
  font-size: .69rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--acc); margin-bottom: 3px;
}
.contact__item-value { font-size: .94rem; color: var(--body); transition: color .2s; }
a.contact__item-value:hover { color: var(--acc2); }
.contact__form-wrap {
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: var(--rl);
  padding: 38px 32px;
}
.contact__form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--mut);
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 12px 16px;
  color: var(--txt);
  font-family: var(--fb);
  font-size: .92rem;
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--acc); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--mut); }
.form-group textarea { resize: vertical; }
.contact__error { color: #e53e3e; font-size: .85rem; margin-bottom: 10px; }
.contact__success { text-align: center; padding: 40px 20px; }
.contact__success-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  border: 2px solid var(--acc);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--acc);
  margin: 0 auto 18px;
}
.contact__success h3 { font-family: var(--fh); font-size: 1.35rem; color: var(--txt); margin-bottom: 8px; }
.contact__success p { color: var(--mut); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer { background: var(--foot); border-top: 1px solid var(--bdr); padding: 60px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 48px; margin-bottom: 44px; }
.footer__logo { font-family: var(--fh); font-size: 1.75rem; font-weight: 900; color: var(--txt); margin-bottom: 10px; }
.footer__logo span { color: var(--acc); }
.footer__logo-img {
  height: 116px;
  width: auto;
  display: block;
  margin: 0 0 16px;
  filter: brightness(0) invert(1);
  opacity: .92;
}
.footer__tagline { font-size: .90rem; letter-spacing: .16em; text-transform: uppercase; color: var(--mut); margin-bottom: 6px; }
.footer__address { font-size: .96rem; color: var(--mut); }
.footer__links h4,
.footer__contact h4 {
  font-size: .78rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--acc); margin-bottom: 18px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 9px; }
.footer__links ul li button { color: var(--mut); font-size: .98rem; transition: color .2s; }
.footer__links ul li button:hover { color: var(--acc2); }
.footer__contact p { font-size: .99rem; margin-bottom: 7px; }
.footer__contact a { color: var(--mut); transition: color .2s; }
.footer__contact a:hover { color: var(--acc2); }
.footer__twss { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--bdr); }
.footer__twss a { font-size: .83rem; color: var(--acc); font-weight: 700; }
.footer__twss a:hover { color: var(--acc2); }
.footer__bottom { border-top: 1px solid var(--bdr); padding-top: 22px; text-align: center; }
.footer__bottom p { font-size: .89rem; color: var(--mut); }

/* ═══════════════════════════════════════════════════════════════
   EXPERTISE GRID  (2×2 visual collage)
   ═══════════════════════════════════════════════════════════════ */
.expertise__grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 3px;
  margin-top: 48px;
  border-radius: var(--rl);
  overflow: hidden;
  background: var(--bdr);
  box-shadow: var(--sh);
}
.expertise__panel { position: relative; aspect-ratio: 4/3; overflow: hidden; cursor: default; }
.expertise__panel-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .7s ease, filter .7s ease;
  filter: brightness(.45) saturate(.65);
}
.expertise__panel:hover .expertise__panel-img { transform: scale(1.06); filter: brightness(.62) saturate(.85); }
.expertise__panel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(4,9,26,.1) 0%, rgba(4,9,26,.88) 100%);
  padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.expertise__panel::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--acc);
  transition: height .4s ease; z-index: 2;
}
.expertise__panel::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 0; height: 3px; background: var(--acc);
  transition: width .4s ease .1s; z-index: 2;
}
.expertise__panel:hover::before { height: 55px; }
.expertise__panel:hover::after  { width: 55px; }
.expertise__panel-num {
  font-family: var(--fh); font-size: 4rem; font-weight: 900;
  color: rgba(242,203,69,.2); line-height: 1; user-select: none;
  transition: color .4s;
}
.expertise__panel:hover .expertise__panel-num { color: rgba(242,203,69,.5); }
.expertise__panel-title { font-family: var(--fh); font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 5px; }
.expertise__panel-sub { font-size: .66rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #F2CB45; margin-bottom: 10px; }
.expertise__panel-desc {
  font-size: .82rem; color: #A8C0DC; line-height: 1.66; max-width: 290px;
  opacity: 0; transform: translateY(10px);
  transition: opacity .38s ease .05s, transform .38s ease .05s;
}
.expertise__panel:hover .expertise__panel-desc { opacity: 1; transform: translateY(0); }
.expertise__note {
  text-align: center; font-size: .7rem; color: var(--mut);
  margin-top: 16px; font-style: italic; opacity: .55;
}

/* ═══════════════════════════════════════════════════════════════
   STYLE SWITCHER
   ═══════════════════════════════════════════════════════════════ */
.ss {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.ss__toggle {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.2);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.55);
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
  overflow: hidden;
  color: #fff;
}
.ss__toggle:hover { transform: scale(1.1) rotate(18deg); box-shadow: 0 8px 32px rgba(0,0,0,.6); }
.ss__panel {
  background: #0B1C34;
  border: 1px solid #172E50;
  border-radius: 12px;
  padding: 18px 16px;
  width: 256px;
  box-shadow: 0 16px 48px rgba(0,0,0,.6);
  animation: fadeUp .22s ease;
}
.ss__heading {
  font-size: .63rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: #567294;
  margin-bottom: 13px; padding-left: 4px;
}
.ss__list { display: flex; flex-direction: column; gap: 5px; }
.ss__item {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 11px;
  border-radius: 8px; border: 1px solid transparent;
  width: 100%; cursor: pointer;
  transition: background .18s, border-color .18s;
}
.ss__item:hover { background: rgba(255,255,255,.04); border-color: #172E50; }
.ss__item--active { background: rgba(242,203,69,.08); border-color: rgba(242,203,69,.5); }
.ss__swatch {
  width: 34px; height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,.12);
}
.ss__item-info { flex: 1; }
.ss__item-name { display: block; font-size: .8rem; font-weight: 700; color: #FFFFFF; line-height: 1.2; }
.ss__item-tag  {
  display: block; font-size: .58rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; margin-top: 2px; color: #567294;
}
.ss__check { color: #F2CB45; font-size: .88rem; font-weight: 900; }

/* ═══════════════════════════════════════════════════════════════
   STYLE-SPECIFIC OVERRIDES
   ═══════════════════════════════════════════════════════════════ */

/* ── Style 2: MIDNIGHT GREEN  (Ivory bg + Black & Green text) ── */
[data-style="2"] body { background: #FDFAF4; }
[data-style="2"] .section--alt { background: #EFF7F2; }

/* Hero — bright ivory background */
[data-style="2"] .hero { background: #FDFAF4 !important; color: #060606; }
[data-style="2"] .hero__eyebrow  { color: #00A846; border-color: rgba(0,168,70,.3); }
[data-style="2"] .hero__title    { color: #060606; }
[data-style="2"] .hero__title--acc { color: #00A846; }
[data-style="2"] .hero__tagline  { color: rgba(6,6,6,.38); }
[data-style="2"] .hero__subtitle { color: #2A4030; }
[data-style="2"] .hero__offices span { color: rgba(6,6,6,.5); }
[data-style="2"] .hero__office-dot   { color: #00A846; opacity: .7; }
[data-style="2"] .hero__scroll-arrow { border-color: rgba(0,168,70,.35); color: #00A846; }
[data-style="2"] .hero__particle { background: #00A846; opacity: .12; }
[data-style="2"] .hero__grid {
  background-image:
    linear-gradient(rgba(0,168,70,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,168,70,.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
[data-style="2"] .hero__bg::before {
  background: radial-gradient(circle, rgba(0,168,70,.07) 0%, transparent 70%);
}
[data-style="2"] .hero__bg::after {
  background: radial-gradient(circle, rgba(0,168,70,.05) 0%, transparent 70%);
}
[data-style="2"] .hero__cinematic { opacity: .04; filter: grayscale(.5) brightness(1.5); mix-blend-mode: multiply; }

/* Navbar — dark text on light hero */
[data-style="2"] .navbar__links li button       { color: rgba(6,6,6,.65); }
[data-style="2"] .navbar__links li button:hover  { color: #00A846; }
[data-style="2"] .navbar__links li button::after { background: #00A846; }
[data-style="2"] .navbar__logo  { color: #060606; }
[data-style="2"] .navbar__hamburger span { background: #060606; }

/* Buttons */
[data-style="2"] .btn--primary { background: #00A846; color: #FFFFFF; }
[data-style="2"] .btn--primary:hover { background: #00C853; }
[data-style="2"] .hero .btn--primary { background: #00A846; color: #FFFFFF; }
[data-style="2"] .hero .btn--primary:hover { background: #00C853; }
[data-style="2"] .btn--outline { border-color: rgba(0,168,70,.45); color: #00A846; }
[data-style="2"] .btn--outline:hover { background: rgba(0,168,70,.08); }
[data-style="2"] .hero .btn--outline { border-color: rgba(0,168,70,.5); color: #00A846; }
[data-style="2"] .hero .btn--outline:hover { background: rgba(0,168,70,.1); }

/* Cards — white with green borders */
[data-style="2"] .feature-card,
[data-style="2"] .service-card,
[data-style="2"] .stat-card,
[data-style="2"] .founder-card,
[data-style="2"] .engagement-card,
[data-style="2"] .client-card,
[data-style="2"] .twss__inner,
[data-style="2"] .contact__form-wrap,
[data-style="2"] .founders__quote {
  background: #FFFFFF;
  border-color: rgba(0,160,60,.15);
  box-shadow: 0 2px 16px rgba(0,100,40,.06);
}
[data-style="2"] .feature-card:hover,
[data-style="2"] .service-card:hover,
[data-style="2"] .engagement-card:hover {
  border-color: rgba(0,168,70,.35);
  box-shadow: 0 8px 32px rgba(0,168,70,.12);
}

/* Image overlays */
[data-style="2"] .about__visual::after { background: linear-gradient(180deg, transparent 50%, rgba(253,250,244,.55) 100%); }
[data-style="2"] .service-card__img-wrap::after,
[data-style="2"] .feature-card__img-wrap::after { background: linear-gradient(180deg, transparent 28%, rgba(6,6,6,.7) 100%); }
[data-style="2"] .expertise__panel-overlay { background: linear-gradient(160deg, rgba(6,6,6,.04), rgba(6,6,6,.86)); }

/* Fine lines & misc */
[data-style="2"] .industry-tag { border-radius: 30px; }
[data-style="2"] .section__divider { background: rgba(0,168,70,.18); }
[data-style="2"] .nav { border-bottom-color: rgba(0,168,70,.12); }

/* Footer — dark anchor for contrast */
[data-style="2"] .footer               { background: #060606; border-top-color: #162A1C; }
[data-style="2"] .footer__bottom       { border-top-color: #162A1C; }
[data-style="2"] .footer__twss         { border-top-color: #162A1C; }
[data-style="2"] .footer__logo         { color: #FFFFFF; }
[data-style="2"] .footer__logo span,
[data-style="2"] .footer__links h4,
[data-style="2"] .footer__contact h4,
[data-style="2"] .footer__twss a       { color: #00C853; }
[data-style="2"] .footer__tagline,
[data-style="2"] .footer__address,
[data-style="2"] .footer__bottom p,
[data-style="2"] .footer__links ul li button,
[data-style="2"] .footer__contact a    { color: #4A7A58; }
[data-style="2"] .footer__links ul li button:hover,
[data-style="2"] .footer__contact a:hover { color: #69F0AE; }

/* ── Style 3: EDITORIAL  (Serif Bold) ─────────────────────── */
[data-style="3"] .section__title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.08;
}
[data-style="3"] .section__eyebrow { letter-spacing: .32em; }
[data-style="3"] .stat-card__number { font-size: 3.2rem; }
[data-style="3"] .hero__title { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 700; }
[data-style="3"] .feature-card { border-radius: 2px; }
[data-style="3"] .service-card { border-radius: 2px; }
[data-style="3"] .founders__quote { border-left-width: 5px; }
[data-style="3"] .founders__quote p { font-family: 'Cormorant Garamond', serif; font-size: 1.12rem; }
[data-style="3"] .industry-tag { border-radius: 2px; letter-spacing: .06em; }
[data-style="3"] .about__visual { border-radius: 2px; }
[data-style="3"] .about__visual-img { filter: brightness(.82) saturate(.7) contrast(1.1); }
[data-style="3"] .feature-card__img { filter: brightness(.68) saturate(.65) contrast(1.1); }
[data-style="3"] .service-card__img { filter: brightness(.62) saturate(.6) contrast(1.1); }
[data-style="3"] .expertise__panel-overlay {
  background: linear-gradient(160deg, rgba(6,6,6,.1), rgba(6,6,6,.9));
}
[data-style="3"] .about__visual::after { background: linear-gradient(180deg, transparent 50%, rgba(6,6,6,.65) 100%); }
[data-style="3"] .service-card__img-wrap::after { background: linear-gradient(180deg, transparent 30%, rgba(6,6,6,.82) 100%); }
[data-style="3"] .feature-card__img-wrap::after { background: linear-gradient(180deg, transparent 40%, rgba(6,6,6,.78) 100%); }

/* ── Style 4: NIGHT GREEN  (Sharp Black + Green) ────────────── */
[data-style="4"] body { background: #060606; }
[data-style="4"] .section--alt { background: #0A0A0A; }

[data-style="4"] .hero { background: #060606 !important; }
[data-style="4"] .hero__eyebrow { color: #00C853; border-color: rgba(0,200,80,.28); }
[data-style="4"] .hero__title--acc { color: #00C853; }
[data-style="4"] .hero__scroll-arrow { border-color: rgba(0,200,80,.35); color: #00C853; }
[data-style="4"] .hero__particle { background: #00C853; opacity: .18; }
[data-style="4"] .hero__grid {
  background-image:
    linear-gradient(rgba(0,200,80,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,80,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Hero buttons */
[data-style="4"] .btn--primary { background: #00C853; color: #060606; }
[data-style="4"] .btn--primary:hover { background: #69F0AE; }
[data-style="4"] .btn--outline { border-color: rgba(0,200,80,.45); color: #00C853; }
[data-style="4"] .btn--outline:hover { background: rgba(0,200,80,.1); }
[data-style="4"] .hero .btn--outline { border-color: rgba(0,200,80,.55); color: #00C853; }
[data-style="4"] .hero .btn--outline:hover { background: rgba(0,200,80,.12); }

/* Cards */
[data-style="4"] .feature-card:hover,
[data-style="4"] .service-card:hover,
[data-style="4"] .engagement-card:hover {
  background: rgba(0,200,80,.07);
  border-color: rgba(0,200,80,.32);
  box-shadow: 0 0 24px rgba(0,200,80,.15);
}

/* Image overlays */
[data-style="4"] .about__visual::after { background: linear-gradient(180deg, transparent 50%, rgba(6,6,6,.6) 100%); }
[data-style="4"] .service-card__img-wrap::after,
[data-style="4"] .feature-card__img-wrap::after { background: linear-gradient(180deg, transparent 30%, rgba(6,6,6,.8) 100%); }
[data-style="4"] .expertise__panel-overlay { background: linear-gradient(160deg, rgba(6,6,6,.05), rgba(6,6,6,.88)); }

/* Fine lines */
[data-style="4"] .section__divider { background: rgba(0,200,80,.16); }
[data-style="4"] .nav { border-bottom-color: rgba(0,200,80,.1); }

/* ═══════════════════════════════════════════════════════════════
   KEYFRAMES
   ═══════════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
@keyframes orb {
  0%,100% { transform: scale(1); opacity: 1; }
  50%     { transform: scale(1.08); opacity: .7; }
}
@keyframes floatP {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: .5; }
  90%  { opacity: .3; }
  100% { transform: translateY(-100vh) translateX(28px); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services__grid  { grid-template-columns: repeat(2,1fr); }
  .clients__grid   { grid-template-columns: repeat(3,1fr); }
  .about__grid     { grid-template-columns: 1fr; gap: 44px; }
  .about__stats-grid { grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 768px) {
  :root { --pad: 72px 0; }
  .navbar { padding: 14px 20px; }
  .navbar--scrolled { padding: 10px 20px; }
  .navbar__logo-img { height: 54px; }
  .navbar__hamburger { display: flex; }
  .navbar__links {
    position: fixed; top: 0; right: -100%;
    width: 260px; height: 100vh;
    background: #04091A;
    flex-direction: column; justify-content: center;
    align-items: flex-start; padding: 40px; gap: 28px;
    transition: right .3s ease;
    box-shadow: -4px 0 28px rgba(0,0,0,.6);
  }
  .navbar__links--open { right: 0; }
  .navbar__links li button { font-size: 1.1rem; }
  .why-us__grid    { grid-template-columns: 1fr; }
  .clients__grid   { grid-template-columns: repeat(2,1fr); }
  .services__grid  { grid-template-columns: repeat(2,1fr); }
  .founders__grid  { grid-template-columns: 1fr; }
  .engagement__grid { grid-template-columns: 1fr; }
  .about__stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer__grid    { grid-template-columns: 1fr; gap: 32px; }
  .contact__grid   { grid-template-columns: 1fr; }
  .expertise__grid { grid-template-columns: 1fr; }
  .twss__inner { grid-template-columns: 1fr; text-align: center; padding: 38px 26px; }
  .twss__badge { display: flex; justify-content: center; }
  .founders__quote { padding: 26px 22px; }
  .ss { bottom: 20px; right: 20px; }
}
@media (max-width: 480px) {
  .services__grid { grid-template-columns: 1fr; }
  .clients__grid  { grid-template-columns: 1fr; }
  .about__stats-grid { grid-template-columns: repeat(2,1fr); }
  .hero__cta { flex-direction: column; align-items: center; }
}
