/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img { max-width: 100%; display: block; }

:root {
  --navy:      #0B1D51;
  --navy-2:    #132268;
  --navy-3:    #1a2d80;
  --red:       #C91B1B;
  --red-2:     #E02020;
  --red-3:     #E8503A;
  --red-glow:  rgba(201,27,27,.28);
  --gold:      #D4A843;
  --off-white: #F4F6FB;
  --white:     #FFFFFF;
  --ink:       #0D1525;
  --muted:     #6B7280;
  --border:    #E4E8F2;
  --shadow-sm: 0 2px 16px rgba(11,29,81,.07);
  --shadow-md: 0 12px 48px rgba(11,29,81,.11);
  --shadow-lg: 0 24px 72px rgba(11,29,81,.15);
  --shadow-red: 0 8px 32px rgba(201,27,27,.22);
  --radius:    8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font: 'Inter', system-ui, sans-serif;
  --trans: all .35s cubic-bezier(.22,.68,0,1.15);
  --trans-fast: all .2s cubic-bezier(.4,0,.2,1);
  --grad-red: linear-gradient(135deg, #C91B1B 0%, #E8503A 100%);
  --grad-navy: linear-gradient(135deg, #0B1D51 0%, #1a2d80 100%);
}

body { font-family: var(--font); font-weight: 400; color: var(--ink); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }

/* ============================================================
   UTILITY
============================================================ */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 112px 0; }
.section--dark  { background: var(--navy); }
.section--gray  { background: var(--off-white); }
.section--white { background: var(--white); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 800; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--red); margin-bottom: 18px;
}
.eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--grad-red); border-radius: 2px; flex-shrink: 0; }
.eyebrow--light { color: rgba(255,150,150,.9); }
.eyebrow--light::before { background: rgba(255,150,150,.7); }

.h-section { font-size: clamp(1.8rem, 2.8vw, 2.5rem); font-weight: 800; line-height: 1.16; letter-spacing: -.03em; color: var(--ink); }
.h-section--light { color: var(--white); }

.divider { width: 40px; height: 2px; background: var(--grad-red); border-radius: 2px; margin: 22px 0 30px; }
.divider--center { margin-left: auto; margin-right: auto; }

.lead { font-size: 1.05rem; font-weight: 300; line-height: 1.9; color: var(--muted); }
.lead--light { color: rgba(255,255,255,.58); }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font); font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 15px 32px; border-radius: 100px;
  text-decoration: none; transition: var(--trans);
  cursor: pointer; border: none; outline: none; white-space: nowrap;
}
.btn i { font-size: .8em; transition: transform .25s cubic-bezier(.22,.68,0,1.4); }
.btn:hover i { transform: translateX(4px); }
.btn-primary { background: var(--grad-red); color: var(--white); box-shadow: var(--shadow-red); }
.btn-primary:hover { color: var(--white); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,27,27,.35); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.25); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }

/* Scroll reveal */
[data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity .7s cubic-bezier(.22,.68,0,1.15), transform .7s cubic-bezier(.22,.68,0,1.15); }
[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }

/* ============================================================
   NAVBAR
============================================================ */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(11,29,81,0.88); backdrop-filter: blur(24px) saturate(200%); border-bottom: 1px solid rgba(255,255,255,.07); transition: background .4s ease, box-shadow .4s ease; }
.navbar.scrolled { background: rgba(11,29,81,0.97); box-shadow: 0 4px 40px rgba(0,0,0,.3); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.navbar__logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.navbar__logo img { height: 64px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.navbar__logo-name { font-size: 16px; font-weight: 900; letter-spacing: 5px; text-transform: uppercase; color: var(--white); line-height: 1; }
.navbar__links { display: flex; align-items: center; gap: 2px; list-style: none; }
.navbar__links a { display: block; padding: 8px 13px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; color: rgba(255,255,255,.6); border-radius: 100px; transition: var(--trans-fast); }
.navbar__links a:hover, .navbar__links a.active { color: var(--white); background: rgba(255,255,255,.09); }
.navbar__links .nav-cta a { background: rgba(201,27,27,.9); color: var(--white); padding: 8px 20px; }
.navbar__links .nav-cta a:hover { background: var(--red-2); }
.navbar__toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.navbar__toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--trans-fast); }
.navbar__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.navbar__mobile { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--ink); z-index: 999; padding: 32px 24px; overflow-y: auto; }
.navbar__mobile.open { display: block; }
.navbar__mobile ul { list-style: none; }
.navbar__mobile ul li { border-bottom: 1px solid rgba(255,255,255,.06); }
.navbar__mobile ul li a { display: block; padding: 18px 0; font-size: 15px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.7); text-decoration: none; transition: var(--trans-fast); }
.navbar__mobile ul li a:hover { color: var(--white); padding-left: 10px; }
.navbar__mobile .mobile-cta { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.navbar__mobile .mobile-cta .btn { justify-content: center; }

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh; background: var(--ink);
  position: relative; overflow: hidden; display: flex; align-items: center;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(201,27,27,.13) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 0% 100%, rgba(26,45,128,.45) 0%, transparent 55%),
    radial-gradient(ellipse 100% 80% at 50% 50%, rgba(11,29,81,.6) 0%, transparent 70%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
}
/* Big decorative background word */
.hero__wordmark {
  position: absolute; bottom: -40px; right: -40px; z-index: 0;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 400; line-height: 1;
  color: rgba(255,255,255,.025);
  letter-spacing: -.05em;
  pointer-events: none; user-select: none;
  white-space: nowrap;
}
.hero__content { position: relative; z-index: 2; padding: 120px 0 80px; width: 100%; }

.hero__layout { display: flex; flex-direction: column; gap: 48px; }

/* Top bar */
.hero__topbar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.hero__pill { display: inline-flex; align-items: center; gap: 10px; background: rgba(201,27,27,.12); border: 1px solid rgba(201,27,27,.25); padding: 8px 18px; border-radius: 100px; font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,160,160,.9); backdrop-filter: blur(8px); }
.hero__pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red-2); animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); box-shadow:0 0 0 0 rgba(224,32,32,.4); } 50% { opacity:.8; transform:scale(1.3); box-shadow:0 0 0 5px rgba(224,32,32,0); } }
.hero__topbar-right { display: flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,.35); letter-spacing: 1px; }
.hero__sep { color: rgba(255,255,255,.15); }

/* Main grid */
.hero__main { display: grid; grid-template-columns: 1fr 400px; gap: 64px; align-items: center; }

.hero__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  line-height: 1.04; letter-spacing: -.04em; color: var(--white);
  margin-bottom: 28px;
}
.hero__title-em {
  font-style: italic;
  background: var(--grad-red);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero__subtitle { font-size: 1.05rem; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,.55); max-width: 480px; margin-bottom: 44px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Right stats panel */
.hero__stats-panel {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl); padding: 28px;
  backdrop-filter: blur(24px);
  box-shadow: 0 24px 80px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.08);
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px;
  border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 12px;
}
.hero__stat-item {
  background: rgba(255,255,255,.05); padding: 24px 20px; text-align: center;
}
.hero__stat-item--accent { background: var(--grad-red); }
.hero__stat-item--wide { grid-column: 1/-1; display: flex; align-items: center; justify-content: center; gap: 12px; background: rgba(255,255,255,.07) !important; }
.hero__stat-item--wide i { color: var(--gold); font-size: 1rem; }
.hero__stat-item--wide span { font-size: 11px; font-weight: 500; color: rgba(255,255,255,.65); }
.hero__stat-num { font-size: 2.2rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 6px; letter-spacing: -.03em; }
.hero__stat-lbl { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.55); }

.hero__values-strip { display: flex; gap: 0; border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg); overflow: hidden; }
.hero__values-strip span { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 8px; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.4); border-right: 1px solid rgba(255,255,255,.08); transition: background .2s, color .2s; }
.hero__values-strip span:last-child { border-right: none; }
.hero__values-strip span:hover { background: rgba(255,255,255,.05); color: rgba(255,255,255,.8); }
.hero__values-strip i { color: var(--red); font-size: 12px; }

.hero__scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; text-decoration: none; }
.hero__scroll span { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.2); font-weight: 700; }
.hero__scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent); animation: scrollLine 2.2s ease-in-out infinite; }
@keyframes scrollLine { 0% { transform:scaleY(0); transform-origin:top; opacity:1; } 60% { transform:scaleY(1); transform-origin:top; } 100% { transform:scaleY(1); transform-origin:bottom; opacity:0; } }

/* ============================================================
   PARTNERS GRID
============================================================ */
.partners {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.partners__header {
  text-align: center;
  margin-bottom: 40px;
}
.partners__label {
  font-size: 10px; font-weight: 800; letter-spacing: 3px;
  text-transform: uppercase; color: var(--muted); opacity: .55;
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.p-logo {
  display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 10px;
  padding: 18px 14px;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--white);
  transition: var(--trans-fast); cursor: default; min-height: 100px;
}
.p-logo:hover { border-color: rgba(11,29,81,.18); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.p-logo__mark {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--c, var(--navy));
  color: white; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900; letter-spacing: -.5px; flex-shrink: 0;
}
.p-logo__img-wrap {
  width: 100%; height: 52px;
  display: flex; align-items: center; justify-content: center;
}
.p-logo__img-wrap img {
  max-width: 100%; max-height: 52px; width: auto; height: auto;
  object-fit: contain; display: block;
}
.p-logo > span { font-size: 10px; font-weight: 600; color: var(--muted); text-align: center; letter-spacing: .3px; white-space: nowrap; max-width: 90px; overflow: hidden; text-overflow: ellipsis; }

@media (max-width: 1100px) { .partners__grid { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 768px)  { .partners__grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 480px)  { .partners__grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   ABOUT
============================================================ */
.about__layout {
  display: grid; grid-template-columns: 48px 1fr 1fr; gap: 56px; align-items: start;
}
.about__side-label {
  writing-mode: vertical-rl; text-orientation: mixed;
  font-size: 10px; font-weight: 800; letter-spacing: 4px;
  text-transform: uppercase; color: var(--border);
  transform: rotate(180deg); padding-top: 8px; user-select: none;
  align-self: start; margin-top: 12px;
}
.about__checklist { list-style: none; margin: 28px 0; display: flex; flex-direction: column; gap: 0; }
.about__checklist li { display: flex; align-items: center; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--border); font-size: 13px; font-weight: 600; letter-spacing: .5px; color: var(--navy); transition: padding-left .2s; }
.about__checklist li:last-child { border-bottom: none; }
.about__checklist li:hover { padding-left: 4px; }
.about__checklist li i { color: var(--red); font-size: 11px; flex-shrink: 0; }
.about__signature { display: flex; align-items: center; gap: 14px; padding: 16px 20px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--off-white); width: fit-content; }
.about__signature-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--grad-navy); display: flex; align-items: center; justify-content: center; color: white; font-size: .9rem; flex-shrink: 0; }
.about__signature strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: -.01em; }
.about__signature span { font-size: 11px; color: var(--muted); }

.about__right { display: flex; flex-direction: column; gap: 20px; }
.about__map-box {
  position: relative; background: var(--grad-navy);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__map-box img.zone { width: 100%; height: 100%; object-fit: contain; }
.about__map-overlay {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(11,29,81,.85); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 10px 16px;
}
.about__map-overlay span { display: block; font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.45); }
.about__map-overlay strong { font-size: 13px; font-weight: 800; color: white; }
.about__pull-quote { background: var(--off-white); border-radius: var(--radius-lg); padding: 24px 28px; border-left: 3px solid var(--red); }
.about__pull-quote i { color: var(--red); font-size: 1.2rem; margin-bottom: 12px; display: block; }
.about__pull-quote p { font-size: .9rem; font-style: italic; color: var(--muted); line-height: 1.75; }

/* ============================================================
   CLIENTS — STRIP
============================================================ */
.clients__header { margin-bottom: 48px; }
.clients__header .eyebrow { display: flex; }

.clients__strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; }
.client-tile {
  padding: 36px 28px; position: relative; overflow: hidden;
  border-right: 1px solid var(--border);
  transition: background .3s;
}
.client-tile:last-child { border-right: none; }
.client-tile:hover { background: var(--navy); }
.client-tile:hover .client-tile__num { color: rgba(255,255,255,.07); }
.client-tile:hover .client-tile__icon { color: var(--red); background: rgba(201,27,27,.15); }
.client-tile:hover h3 { color: var(--white); }
.client-tile:hover p { color: rgba(255,255,255,.55); }

.client-tile__num { position: absolute; top: -8px; right: 12px; font-family: 'DM Serif Display', serif; font-size: 5rem; font-weight: 400; line-height: 1; color: rgba(11,29,81,.06); pointer-events: none; transition: color .3s; }
.client-tile__icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(11,29,81,.07); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--navy); margin-bottom: 20px; transition: var(--trans-fast); }
.client-tile h3 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.3; letter-spacing: -.01em; transition: color .3s; }
.client-tile p { font-size: .82rem; line-height: 1.75; color: var(--muted); font-weight: 300; transition: color .3s; }

/* ============================================================
   SERVICES — BENTO
============================================================ */
.services__header { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 48px; }
.services__header-desc { max-width: 440px; }

.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 16px; }

.bento-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px 32px;
  position: relative; overflow: hidden; transition: var(--trans);
}
.bento-card::before {
  content: attr(data-num); /* not used */
  position: absolute; bottom: -10px; right: 12px;
  font-family: 'DM Serif Display', serif; font-size: 5.5rem;
  font-weight: 400; line-height: 1; color: rgba(11,29,81,.045);
  pointer-events: none; transition: color .4s;
}
.bento-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.bento-card:hover::before { color: rgba(11,29,81,.07); }

.bento-card--featured { grid-column: span 2; }
.bento-card--dark { background: var(--grad-navy); border-color: transparent; }
.bento-card--dark::before { color: rgba(255,255,255,.04); }
.bento-card--dark:hover { transform: translateY(-5px); }
.bento-card--accent { background: var(--off-white); }

.bento-card__num { font-family: 'DM Serif Display', serif; font-size: 1.6rem; font-weight: 400; color: rgba(11,29,81,.2); line-height: 1; margin-bottom: 16px; }
.bento-card--dark .bento-card__num { color: rgba(255,255,255,.25); }

.bento-card__icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(11,29,81,.07); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--navy); margin-bottom: 20px; transition: var(--trans-fast); }
.bento-card--dark .bento-card__icon { background: rgba(255,255,255,.1); color: white; }
.bento-card:hover .bento-card__icon { background: var(--grad-red); color: white; box-shadow: var(--shadow-red); }
.bento-card--dark:hover .bento-card__icon { background: rgba(255,255,255,.15); }

.bento-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.3; letter-spacing: -.01em; }
.bento-card--dark h3 { color: var(--white); }
.bento-card p { font-size: .875rem; line-height: 1.8; color: var(--muted); font-weight: 300; }
.bento-card--dark p { color: rgba(255,255,255,.6); }

.bento-card__list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 0; }
.bento-card__list li { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 12px; color: rgba(255,255,255,.65); }
.bento-card__list li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--red-3); flex-shrink: 0; }
.bento-card__list li:last-child { border-bottom: none; }

.bento-cta {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 24px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--navy); text-decoration: none;
  border-bottom: 2px solid var(--red); padding-bottom: 4px;
  transition: var(--trans-fast);
}
.bento-cta i { transition: transform .25s cubic-bezier(.22,.68,0,1.4); }
.bento-cta:hover { color: var(--red); }
.bento-cta:hover i { transform: translateX(4px); }

/* ============================================================
   ENGAGEMENTS — ROW LAYOUT
============================================================ */
.engagements__header { margin-bottom: 56px; }

.eng-rows { display: flex; flex-direction: column; gap: 2px; border-radius: var(--radius-xl); overflow: hidden; }
.eng-row {
  display: grid; grid-template-columns: 100px 1px 1fr;
  gap: 48px; align-items: center;
  padding: 40px 44px; background: rgba(255,255,255,.03);
  transition: background .3s;
}
.eng-row:hover { background: rgba(255,255,255,.06); }
.eng-row__num { font-family: 'DM Serif Display', serif; font-size: 4.5rem; font-weight: 400; line-height: 1; letter-spacing: -.04em; background: linear-gradient(135deg, rgba(224,32,32,.85) 0%, rgba(232,80,58,.3) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.eng-row__divider { width: 1px; height: 80px; background: rgba(255,255,255,.1); align-self: center; }
.eng-row__tag { display: inline-flex; align-items: center; gap: 7px; background: rgba(201,27,27,.12); border: 1px solid rgba(201,27,27,.2); border-radius: 100px; padding: 5px 14px; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,150,150,.85); margin-bottom: 14px; }
.eng-row__body p { font-size: .92rem; line-height: 1.9; color: rgba(255,255,255,.55); font-weight: 300; max-width: 640px; }

/* ============================================================
   PLATFORM — SPLIT FULL
============================================================ */
.platform-section {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 700px;
}
.platform-section__left { background: var(--grad-navy); display: flex; align-items: center; }
.platform-section__left-inner { padding: 80px 64px; max-width: 560px; margin: 0 auto; }

.plat-features { margin-top: 36px; display: flex; flex-direction: column; gap: 0; border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg); overflow: hidden; }
.plat-feat { display: flex; align-items: flex-start; gap: 20px; padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,.07); transition: background .2s; }
.plat-feat:last-child { border-bottom: none; }
.plat-feat:hover { background: rgba(255,255,255,.04); }
.plat-feat__num { font-size: 11px; font-weight: 800; color: var(--red); letter-spacing: 1px; flex-shrink: 0; width: 24px; margin-top: 2px; }
.plat-feat strong { display: block; font-size: 12px; font-weight: 700; letter-spacing: .5px; color: var(--white); margin-bottom: 4px; }
.plat-feat p { font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.65; }

.platform-section__right { background: var(--off-white); display: flex; align-items: center; justify-content: center; position: relative; padding: 60px 48px; }

/* Platform screen */
.platform__visual { position: relative; width: 100%; max-width: 440px; }
.platform__screen { background: var(--white); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg), 0 0 0 1px rgba(11,29,81,.08); overflow: hidden; transform: perspective(1200px) rotateY(-4deg) rotateX(2deg); transition: transform .6s cubic-bezier(.22,.68,0,1.15); }
.platform-section__right:hover .platform__screen { transform: none; }
.platform__screen-bar { background: var(--grad-navy); padding: 13px 18px; display: flex; align-items: center; gap: 7px; }
.platform__screen-bar span { width: 10px; height: 10px; border-radius: 50%; }
.platform__screen-bar span:nth-child(1) { background: #ff5f57; }
.platform__screen-bar span:nth-child(2) { background: #febc2e; }
.platform__screen-bar span:nth-child(3) { background: #28c840; }
.platform__screen-url { flex: 1; text-align: center; font-size: 10px; color: rgba(255,255,255,.25); letter-spacing: .5px; }
.platform__screen-body { padding: 24px; }
.ps-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.ps-title { font-size: 13px; font-weight: 800; color: var(--navy); letter-spacing: -.01em; }
.ps-date { font-size: 10px; color: var(--muted); }
.ps-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 20px; }
.ps-stat { background: var(--off-white); border-radius: 10px; padding: 14px; text-align: center; border: 1px solid var(--border); }
.ps-stat__num { font-size: 1.3rem; font-weight: 800; color: var(--navy); line-height: 1; letter-spacing: -.03em; }
.ps-stat__lbl { font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.ps-section-label { font-size: 9px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.ps-list { display: flex; flex-direction: column; gap: 4px; }
.ps-item { display: flex; align-items: center; gap: 10px; padding: 9px 12px; background: var(--off-white); border-radius: 8px; font-size: 11px; color: var(--ink); font-weight: 500; border: 1px solid var(--border); }
.ps-item > span:nth-child(2) { flex: 1; }
.ps-item__dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.ps-item__dot--green  { background: #16a34a; box-shadow: 0 0 0 2px rgba(22,163,74,.2); }
.ps-item__dot--blue   { background: #2563eb; box-shadow: 0 0 0 2px rgba(37,99,235,.2); }
.ps-item__dot--orange { background: #d97706; box-shadow: 0 0 0 2px rgba(217,119,6,.2); }
.ps-item__badge { font-size: 9px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 3px 9px; border-radius: 100px; white-space: nowrap; background: rgba(22,163,74,.1); color: #16a34a; }
.ps-item__badge--pending { background: rgba(37,99,235,.1); color: #2563eb; }
.ps-item__badge--new    { background: rgba(217,119,6,.1);  color: #d97706; }
.platform__pill { position: absolute; display: flex; align-items: center; gap: 8px; background: var(--white); border-radius: 100px; padding: 9px 18px; box-shadow: var(--shadow-md); border: 1px solid var(--border); font-size: 11px; font-weight: 700; color: var(--navy); white-space: nowrap; }
.platform__pill i { color: var(--red); }
.platform__pill--1 { bottom: 40px; left: 12px; }
.platform__pill--2 { top: 44px; right: 12px; }

/* ============================================================
   FAQ
============================================================ */
.faq-layout { display: grid; grid-template-columns: 320px 1fr; gap: 80px; align-items: start; }
.faq-layout__intro { position: sticky; top: 100px; }
.faq-layout__list {}
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__question { width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; background: none; border: none; padding: 22px 0; cursor: pointer; text-align: left; font-family: var(--font); }
.faq__question span { font-size: .95rem; font-weight: 600; color: var(--navy); line-height: 1.45; letter-spacing: -.01em; }
.faq__question i { font-size: .75rem; color: var(--red); flex-shrink: 0; margin-top: 5px; transition: transform .35s cubic-bezier(.22,.68,0,1.4), color .2s; }
.faq__question[aria-expanded="true"] i { transform: rotate(45deg); }
.faq__question[aria-expanded="true"] span { color: var(--red); }
.faq__answer { overflow: hidden; max-height: 0; transition: max-height .45s cubic-bezier(.4,0,.2,1); }
.faq__answer p { padding: 0 40px 22px 0; font-size: .9rem; color: var(--muted); line-height: 1.9; font-weight: 300; }

/* ============================================================
   CONDITIONS
============================================================ */
.cond-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.cond-layout__left { position: sticky; top: 100px; }
.cond-list { margin-top: 8px; }
.cond-item { display: flex; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--border); transition: padding-left .25s; }
.cond-item:last-child { border-bottom: none; }
.cond-item:hover { padding-left: 4px; }
.cond-icon { width: 44px; height: 44px; min-width: 44px; background: var(--off-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--red); font-size: .95rem; transition: var(--trans-fast); border: 1px solid var(--border); }
.cond-item:hover .cond-icon { background: var(--grad-navy); color: var(--white); border-color: transparent; box-shadow: 0 6px 20px rgba(11,29,81,.2); }
.cond-item h5 { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--navy); margin-bottom: 6px; }
.cond-item p { font-size: .875rem; color: var(--muted); line-height: 1.75; }

/* ============================================================
   CONTACT — SPLIT FULL
============================================================ */
.contact-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 700px; }
.contact-section__left { background: var(--ink); display: flex; align-items: center; position: relative; overflow: hidden; }
.contact-section__left::before { content: ''; position: absolute; bottom: -120px; right: -120px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(201,27,27,.12) 0%, transparent 70%); pointer-events: none; }
.contact-section__left-inner { padding: 80px 64px; position: relative; z-index: 1; }

.contact-info-list { display: flex; flex-direction: column; gap: 16px; }
.contact-info-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.04);
  text-decoration: none; transition: background .2s;
}
.contact-info-item:hover { background: rgba(255,255,255,.08); }
.contact-info-item__icon { width: 40px; height: 40px; min-width: 40px; border-radius: 10px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: var(--red); font-size: .9rem; }
.contact-info-item > div span { display: block; font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 3px; }
.contact-info-item > div strong { display: block; font-size: 13px; font-weight: 700; color: var(--white); }
.contact-social { display: flex; gap: 10px; margin-top: 36px; }
.contact-social a { width: 36px; height: 36px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.4); text-decoration: none; font-size: .8rem; transition: var(--trans-fast); }
.contact-social a:hover { background: var(--red); border-color: var(--red); color: white; transform: translateY(-2px); }

.contact-section__right { background: var(--off-white); display: flex; align-items: center; justify-content: center; padding: 80px 64px; }
.contact-form-box { background: var(--white); border-radius: var(--radius-xl); padding: 48px; box-shadow: var(--shadow-md); border: 1px solid var(--border); width: 100%; max-width: 480px; }
.contact-form-box__header { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.contact-form-box__header h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy); letter-spacing: -.02em; margin-bottom: 4px; }
.contact-form-box__header p { font-size: 12px; color: var(--muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 13px 16px; font-family: var(--font); font-size: .9rem; color: var(--ink); background: var(--off-white); transition: var(--trans-fast); outline: none; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); background: var(--white); box-shadow: 0 0 0 4px rgba(11,29,81,.06); }
.form-group textarea { min-height: 110px; }
.form-group select { cursor: pointer; }
.btn-submit { width: 100%; justify-content: center; font-size: 12px; padding: 16px; border-radius: 100px; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--ink); border-top: 1px solid rgba(255,255,255,.05); position: relative; overflow: hidden; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,27,27,.4) 50%, transparent); }
.footer__top { padding: 64px 0 44px; display: grid; grid-template-columns: 260px 1fr 1fr 1fr; gap: 48px; }
.footer__brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer__brand-logo img { height: 56px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: .9; }
.footer__brand-logo span { font-size: 13px; font-weight: 900; letter-spacing: 4px; text-transform: uppercase; color: var(--white); }
.footer__brand p { font-size: .82rem; line-height: 1.85; color: rgba(255,255,255,.35); margin-bottom: 24px; }
.footer__social { display: flex; gap: 8px; }
.footer__social a { width: 34px; height: 34px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.4); text-decoration: none; font-size: .8rem; transition: var(--trans-fast); }
.footer__social a:hover { background: var(--red); border-color: var(--red); color: white; transform: translateY(-2px); }
.footer__col h4 { font-size: 9px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 20px; }
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a { font-size: .82rem; color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.footer__col ul li a:hover { color: rgba(255,255,255,.9); }
.footer__col .contact-line { display: flex; align-items: flex-start; gap: 10px; font-size: .82rem; color: rgba(255,255,255,.45); margin-bottom: 12px; }
.footer__col .contact-line i { color: var(--red); margin-top: 2px; font-size: .8rem; }
.footer__col .contact-line a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.footer__col .contact-line a:hover { color: white; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.05); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer__bottom p { font-size: .75rem; color: rgba(255,255,255,.2); }
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a { font-size: .75rem; color: rgba(255,255,255,.2); text-decoration: none; transition: color .2s; }
.footer__bottom-links a:hover { color: rgba(255,255,255,.55); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .hero__main { grid-template-columns: 1fr; }
  .hero__right { display: none; }
  .about__layout { grid-template-columns: 0 1fr 1fr; }
  .about__side-label { display: none; }
  .platform-section { grid-template-columns: 1fr; }
  .platform-section__left-inner { padding: 60px 40px; max-width: 100%; }
  .platform-section__right { padding: 60px 40px; }
  .contact-section { grid-template-columns: 1fr; }
  .contact-section__left-inner { padding: 60px 40px; }
  .contact-section__right { padding: 60px 40px; }
  .bento-card--featured { grid-column: span 1; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .section { padding: 80px 0; }
  .navbar__links { display: none; }
  .navbar__toggle { display: flex; }
  .clients__strip { grid-template-columns: 1fr 1fr; }
  .client-tile { border-bottom: 1px solid var(--border); }
  .client-tile:nth-child(even) { border-right: none; }
  .bento { grid-template-columns: 1fr; }
  .bento-card--featured { grid-column: span 1; }
  .eng-row { grid-template-columns: 70px 1px 1fr; gap: 24px; padding: 32px 24px; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-layout__intro { position: static; }
  .cond-layout { grid-template-columns: 1fr; }
  .cond-layout__left { position: static; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .about__layout { grid-template-columns: 1fr; }
  .about__right { display: none; }
  .services__header { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .container { padding: 0 18px; }
  .hero__title { font-size: 2.8rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
  .hero__topbar-right { display: none; }
  .clients__strip { grid-template-columns: 1fr; border-radius: var(--radius-lg); }
  .client-tile { border-right: none; }
  .eng-row { grid-template-columns: 1fr; gap: 16px; padding: 28px 20px; }
  .eng-row__divider { display: none; }
  .eng-row__num { font-size: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .contact-section__left-inner { padding: 48px 24px; }
  .contact-section__right { padding: 48px 24px; }
  .contact-form-box { padding: 32px 24px; }
  .platform-section__left-inner { padding: 48px 24px; }
  .platform-section__right { padding: 48px 24px; }
}
