/* =============================================================
   SEMPITE — Dark Theme Stylesheet v123
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

/* ── Variables ── */
:root {
  --bg:          #03040f;
  --bg-nav:      rgba(2, 3, 18, 0.94);
  --bg-card:     #0a0918;
  --bg-card-2:   #07061a;
  --border:      rgba(255,255,255,0.12);
  --border-2:    rgba(255,255,255,0.22);
  --text:        #ffffff;
  --text-muted:  #aaaacc;
  --text-subtle: #55557a;
  --rainbow:     linear-gradient(90deg, #ff007f 0%, #ff00cc 18%, #bb00ff 36%, #4400ff 52%, #0099ff 67%, #00ffee 100%);
  --rainbow-btn: linear-gradient(90deg, #ff007f, #ff00cc, #bb00ff, #4400ff, #0099ff, #00ffee);
  --neon-cyan:   #00ffee;
  --r:    10px;
  --r-lg: 16px;
}

/* ── Reset ── */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; overflow-x:hidden; }
body {
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  background: linear-gradient(135deg, #000000 0%, #030d35 50%, #0d0530 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main { flex: 1; }
a { text-decoration:none; color:inherit; }
img { display:block; max-width:100%; }
button { font-family:inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background:#000; }
::-webkit-scrollbar-thumb { background:#1e1e48; border-radius:3px; }

/* =============================================================
   TOP NAVIGATION
   ============================================================= */
nav:not(.footer-links):not(.footer-nav) {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 72px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: 'Oswald', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  background: var(--rainbow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.6);
  paint-order: stroke fill;
  filter: none;
  transition: filter 0.2s;
}
.nav-brand:hover {
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.8)) drop-shadow(0 0 22px rgba(255,255,255,0.3));
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav ul a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.025em;
  transition: color 0.2s, text-shadow 0.2s;
}
nav ul a:hover {
  color: #00ffee;
  text-shadow: 0 0 10px rgba(0,255,238,0.65);
}

/* ── Nav dropdown ── */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle { display: flex; align-items: center; gap: 0.25rem; cursor: pointer; }

.nav-caret {
  font-size: 0.55rem;
  opacity: 0.5;
  transition: transform 0.2s;
  line-height: 1;
}
.nav-dropdown:hover .nav-caret { transform: rotate(180deg); opacity: 0.9; }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: rgba(2, 3, 20, 0.97);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0.4rem 0;
  min-width: 160px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 1001;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.025em;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-dropdown-menu li a:hover {
  color: #00ffee;
  background: rgba(255,255,255,0.04);
  text-shadow: 0 0 10px rgba(0,255,238,0.5);
}

.nav-login {
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.8rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s !important;
}
.nav-login:hover {
  border-color: rgba(0,255,238,0.5) !important;
  color: #00ffee !important;
  background: rgba(0,255,238,0.05);
  text-shadow: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 6% 4rem;
  overflow: hidden;
  text-align: center;
}


.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 55% at 50% 0%,
    rgba(187,0,255,0.06) 0%,
    rgba(0,153,255,0.05) 50%,
    transparent 75%);
  pointer-events: none;
}

/* Starfield */
.hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 320px 180px at 25% 55%, rgba(140,0,255,0.05), transparent),
    radial-gradient(ellipse 260px 140px at 72% 30%, rgba(255,0,140,0.04), transparent),
    radial-gradient(ellipse 200px 160px at 50% 70%, rgba(0,140,255,0.04), transparent);
}

/* small dim stars */
.hero-stars::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  border-radius: 50%;
  background: transparent;
  box-shadow:
    18px 42px 0 rgba(255,255,255,0.85),
    52px 178px 0 rgba(255,255,255,0.4),
    84px 28px 0 rgba(200,210,255,0.7),
    113px 292px 0 rgba(255,255,255,0.5),
    147px 108px 0 rgba(255,255,255,0.9),
    175px 375px 0 rgba(200,210,255,0.35),
    208px 64px 0 rgba(255,255,255,0.6),
    238px 225px 0 rgba(255,255,255,0.75),
    268px 148px 0 rgba(255,200,240,0.5),
    302px 318px 0 rgba(255,255,255,0.4),
    332px 78px 0 rgba(255,255,255,0.8),
    362px 248px 0 rgba(200,210,255,0.6),
    395px 32px 0 rgba(255,255,255,0.5),
    424px 192px 0 rgba(255,255,255,0.7),
    455px 355px 0 rgba(255,200,240,0.45),
    484px 98px 0 rgba(255,255,255,0.9),
    515px 272px 0 rgba(200,210,255,0.55),
    545px 48px 0 rgba(255,255,255,0.65),
    578px 215px 0 rgba(255,255,255,0.4),
    608px 338px 0 rgba(255,255,255,0.7),
    638px 138px 0 rgba(255,200,240,0.6),
    668px 380px 0 rgba(200,210,255,0.3),
    702px 72px 0 rgba(255,255,255,0.85),
    732px 234px 0 rgba(255,255,255,0.5),
    762px 158px 0 rgba(255,255,255,0.7),
    795px 308px 0 rgba(200,210,255,0.65),
    825px 54px 0 rgba(255,255,255,0.4),
    856px 278px 0 rgba(255,255,255,0.8),
    886px 122px 0 rgba(255,200,240,0.55),
    916px 345px 0 rgba(255,255,255,0.6),
    948px 68px 0 rgba(200,210,255,0.75),
    978px 198px 0 rgba(255,255,255,0.5),
    1008px 295px 0 rgba(255,255,255,0.4),
    1038px 38px 0 rgba(255,255,255,0.9),
    1068px 178px 0 rgba(255,200,240,0.6),
    1098px 328px 0 rgba(200,210,255,0.45),
    1128px 88px 0 rgba(255,255,255,0.7),
    1158px 258px 0 rgba(255,255,255,0.55),
    1188px 148px 0 rgba(255,255,255,0.8),
    1218px 375px 0 rgba(200,210,255,0.35),
    1248px 62px 0 rgba(255,255,255,0.65),
    1278px 198px 0 rgba(255,200,240,0.5),
    1308px 312px 0 rgba(255,255,255,0.75),
    1338px 105px 0 rgba(255,255,255,0.4),
    1368px 268px 0 rgba(200,210,255,0.6),
    1398px 42px 0 rgba(255,255,255,0.85),
    28px 318px 0 rgba(255,255,255,0.5),
    62px 142px 0 rgba(200,210,255,0.7),
    92px 378px 0 rgba(255,255,255,0.4),
    122px 58px 0 rgba(255,255,255,0.8),
    158px 245px 0 rgba(255,200,240,0.55),
    192px 168px 0 rgba(255,255,255,0.6),
    225px 352px 0 rgba(200,210,255,0.45),
    255px 88px 0 rgba(255,255,255,0.75),
    285px 272px 0 rgba(255,255,255,0.5),
    315px 25px 0 rgba(255,255,255,0.9),
    348px 195px 0 rgba(255,200,240,0.4),
    412px 288px 0 rgba(200,210,255,0.7),
    472px 172px 0 rgba(255,255,255,0.6),
    542px 378px 0 rgba(255,255,255,0.4),
    612px 112px 0 rgba(255,200,240,0.65),
    682px 345px 0 rgba(200,210,255,0.55),
    752px 205px 0 rgba(255,255,255,0.7),
    822px 82px 0 rgba(255,255,255,0.85),
    892px 318px 0 rgba(255,200,240,0.45),
    962px 158px 0 rgba(200,210,255,0.6),
    1032px 288px 0 rgba(255,255,255,0.5),
    1102px 52px 0 rgba(255,255,255,0.8),
    1172px 228px 0 rgba(255,200,240,0.55),
    1242px 368px 0 rgba(200,210,255,0.4),
    1312px 98px 0 rgba(255,255,255,0.75),
    1382px 235px 0 rgba(255,255,255,0.5);
}

/* larger bright stars */
.hero-stars::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: transparent;
  box-shadow:
    55px 88px 1px rgba(255,255,255,0.95),
    185px 42px 1px rgba(220,225,255,0.9),
    315px 322px 1px rgba(255,255,255,0.95),
    445px 162px 1px rgba(255,200,240,0.85),
    575px 278px 2px rgba(255,255,255,0.9),
    705px 78px 1px rgba(220,225,255,0.95),
    835px 338px 1px rgba(255,255,255,0.85),
    965px 122px 2px rgba(255,200,240,0.9),
    1095px 268px 1px rgba(255,255,255,0.95),
    1225px 52px 1px rgba(220,225,255,0.85),
    1355px 192px 1px rgba(255,255,255,0.9),
    102px 252px 1px rgba(255,255,255,0.95),
    252px 172px 2px rgba(220,225,255,0.9),
    402px 378px 1px rgba(255,200,240,0.85),
    552px 62px 1px rgba(255,255,255,0.95),
    702px 218px 1px rgba(255,255,255,0.9),
    852px 128px 2px rgba(220,225,255,0.85),
    1002px 308px 1px rgba(255,200,240,0.9),
    1152px 72px 1px rgba(255,255,255,0.95),
    1302px 248px 1px rgba(255,255,255,0.85),
    38px 198px 2px rgba(255,255,255,0.9),
    415px 82px 1px rgba(220,225,255,0.95),
    785px 298px 1px rgba(255,200,240,0.85),
    1055px 182px 2px rgba(255,255,255,0.9),
    1385px 92px 1px rgba(255,255,255,0.95),
    1608px 17px 0 rgba(255,200,240,0.65),
    1881px 119px 0 rgba(255,255,255,0.5),
    2496px 49px 0 rgba(255,200,240,0.75),
    1445px 20px 0 rgba(255,255,255,0.6),
    1856px 263px 0 rgba(255,200,240,0.4),
    2529px 106px 0 rgba(255,200,240,0.85),
    2239px 117px 0 rgba(200,210,255,0.9),
    1949px 8px 0 rgba(255,255,255,0.75),
    2076px 147px 0 rgba(255,255,255,0.6),
    1578px 188px 0 rgba(200,210,255,0.9),
    1921px 27px 0 rgba(255,200,240,0.8),
    2478px 68px 0 rgba(200,210,255,0.5),
    2510px 155px 0 rgba(255,200,240,0.9),
    2120px 300px 0 rgba(255,255,255,0.5),
    1473px 343px 0 rgba(255,255,255,0.65),
    1543px 124px 0 rgba(255,255,255,0.75),
    1949px 237px 0 rgba(255,200,240,0.7),
    1713px 194px 0 rgba(200,210,255,0.6),
    1926px 364px 0 rgba(255,200,240,0.5),
    1730px 278px 0 rgba(255,200,240,0.6),
    1714px 241px 0 rgba(200,210,255,0.65),
    2520px 117px 0 rgba(255,200,240,0.7),
    1494px 122px 0 rgba(255,255,255,0.7),
    2201px 142px 0 rgba(255,255,255,0.6),
    2541px 372px 0 rgba(200,210,255,0.6),
    2402px 207px 0 rgba(255,200,240,0.8),
    1672px 140px 0 rgba(255,255,255,0.6),
    2529px 280px 0 rgba(200,210,255,0.9),
    2257px 303px 0 rgba(200,210,255,0.7),
    1829px 75px 0 rgba(255,200,240,0.8),
    1566px 391px 0 rgba(255,255,255,0.5),
    1693px 326px 0 rgba(255,255,255,0.75),
    1510px 202px 0 rgba(200,210,255,0.9),
    2338px 275px 0 rgba(200,210,255,0.85),
    1403px 353px 0 rgba(255,200,240,0.5),
    2479px 389px 0 rgba(200,210,255,0.7),
    1608px 155px 0 rgba(200,210,255,0.55),
    2309px 6px 0 rgba(255,200,240,0.65),
    2405px 395px 0 rgba(255,255,255,0.85),
    1597px 325px 0 rgba(200,210,255,0.85),
    1787px 83px 0 rgba(200,210,255,0.55),
    2484px 276px 0 rgba(255,255,255,0.9),
    2043px 255px 0 rgba(255,255,255,0.5),
    2123px 162px 0 rgba(255,255,255,0.4),
    1873px 295px 0 rgba(255,255,255,0.5),
    2375px 40px 0 rgba(255,200,240,0.55),
    1642px 342px 0 rgba(200,210,255,0.85),
    1718px 140px 0 rgba(255,200,240,0.9),
    2246px 113px 0 rgba(255,200,240,0.6),
    2018px 209px 0 rgba(255,200,240,0.7),
    2277px 269px 0 rgba(200,210,255,0.5),
    1887px 120px 0 rgba(255,255,255,0.7),
    1423px 306px 0 rgba(255,200,240,0.6),
    2585px 117px 0 rgba(255,255,255,0.5),
    1500px 122px 0 rgba(255,255,255,0.4),
    2056px 41px 0 rgba(255,200,240,0.6),
    1950px 347px 0 rgba(200,210,255,0.6),
    2484px 72px 0 rgba(255,200,240,0.9),
    2560px 247px 0 rgba(255,255,255,0.8);
}

/* 80s perspective grid */
.hero-grid {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: 0;
  height: 52%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,238,0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,238,0.2) 1px, transparent 1px);
  background-size: 11.11% 55px;
  transform: perspective(320px) rotateX(68deg);
  transform-origin: 50% 0%;
  mask-image: linear-gradient(to bottom, transparent 0%, black 35%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 35%);
}

.hero-grid-horizon {
  position: absolute;
  top: 0;
  left: -10%;
  right: -10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #bb00ff 25%, #00ffee 50%, #bb00ff 75%, transparent);
  box-shadow: 0 0 12px rgba(0,255,238,0.8), 0 0 35px rgba(187,0,255,0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.eyebrow-chip {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}

.hero-wordmark {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(5.5rem, 18vw, 12rem);
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1;
  margin-bottom: 2rem;
  background: var(--rainbow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.72);
  paint-order: stroke fill;
  filter:
    drop-shadow(0 0 6px rgba(255,255,255,0.55))
    drop-shadow(0 0 22px rgba(255,255,255,0.15));
}

.hero-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.55rem);
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2.75rem;
  text-shadow: 0 0 20px rgba(255,255,255,0.35), 0 0 50px rgba(255,255,255,0.1);
}

.hero p:not(.hero-tagline):not(.hero-descriptor) {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.hero-descriptor { display: none; }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  background: #00ffee;
  color: #030d35;
  text-shadow: none;
  box-shadow: none;
  transition: background 0.2s, transform 0.15s;
}
.btn:hover {
  background: #00e5d6;
  box-shadow: none;
  transform: translateY(-1px);
}
.btn:active { transform: translateY(0); }

.btn-outline {
  background: #060c36;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.2);
  text-shadow: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.btn-outline:hover {
  color: rgba(255,255,255,0.95);
  border-color: rgba(255,255,255,0.35);
  background: #051e44;
  box-shadow: none;
  opacity: 1;
}

.btn-dark {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.3);
  text-shadow: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.btn-dark:hover {
  color: #00ffee;
  background: rgba(0,255,238,0.06);
  border-color: rgba(0,255,238,0.6);
  opacity: 1;
}

/* =============================================================
   HERO STATS
   ============================================================= */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 3rem;
  position: relative;
  z-index: 1;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5rem;
}

.hero-stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.1;
}

/* Stat colors match SEMPITE gradient progression: S-pink, M-purple, P-blue, E-cyan */
.hero-stats > *:nth-child(1) .hero-stat-number { color: #ff007f; text-shadow: 0 0 14px rgba(255,0,127,0.55); }
.hero-stats > *:nth-child(3) .hero-stat-number { color: #bb00ff; text-shadow: 0 0 14px rgba(187,0,255,0.55); }
.hero-stats > *:nth-child(5) .hero-stat-number { color: #4400ff; text-shadow: 0 0 14px rgba(68,0,255,0.55); }
.hero-stats > *:nth-child(7) .hero-stat-number { color: #00ffee; text-shadow: 0 0 14px rgba(0,255,238,0.55); }

.hero-stat-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 0.25rem;
  white-space: nowrap;
}

.hero-stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* =============================================================
   PROOF BAR
   ============================================================= */
.proof-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 2.5rem 6%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card-2);
}

.proof-bar--tagline {
  padding: 1.5rem 6%;
}

.proof-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  text-align: center;
  max-width: 680px;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.75rem 3rem;
}

.proof-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #ff00cc;
  line-height: 1.1;
  text-shadow: 0 0 18px rgba(255,0,204,0.7);
}

.proof-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border-2);
  flex-shrink: 0;
}

/* =============================================================
   ACRONYM STRIP
   ============================================================= */
.acronym-strip {
  padding: 2.5rem 6%;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.acronym-inner {
  display: flex;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
}

.acronym-item {
  flex: 1;
  min-width: 80px;
  text-align: center;
  padding: 1.25rem 0.5rem;
  position: relative;
}

.acronym-item + .acronym-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--border);
}

.acronym-letter {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.4rem;
  filter: drop-shadow(0 0 8px currentColor) drop-shadow(0 0 20px currentColor);
}

.acronym-word {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* =============================================================
   SECTION COMMON
   ============================================================= */
.section { padding: 6rem 6%; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ff00cc;
  text-shadow: 0 0 10px rgba(255,0,204,0.9), 0 0 25px rgba(255,0,204,0.5);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

/* =============================================================
   SERVICES
   ============================================================= */
.services {
  background: var(--bg-card-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover {
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(255,255,255,0.12), 0 0 40px rgba(255,255,255,0.05);
}

.service-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: var(--r);
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.service-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.75;
}

.service-card--soon { opacity: 0.65; }

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--border-2);
  color: var(--text-muted);
}

/* =============================================================
   PROCESS
   ============================================================= */
.process-section { border-top: 1px solid var(--border); }

.process-steps {
  display: flex;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
}

.process-step {
  flex: 1;
  padding: 2rem 1.5rem;
  text-align: center;
}

.step-number {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.75rem;
  color: #ff00cc;
  text-shadow: 0 0 10px rgba(255,0,204,0.9), 0 0 25px rgba(255,0,204,0.5);
}

.process-step h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.75;
}

.process-connector {
  width: 1px;
  height: 60px;
  background: var(--border-2);
  flex-shrink: 0;
  align-self: center;
}

/* 7-step SEMPITE methodology grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pstep-letter {
  font-family: 'Oswald', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: none;
}

/* =============================================================
   ABOUT
   ============================================================= */
.about-section {
  background: var(--bg-card-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
}

.about-image { position: relative; flex-shrink: 0; }

.about-glow {
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  background: var(--rainbow);
  opacity: 0.12;
  filter: blur(32px);
  pointer-events: none;
}

.about-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-2);
  position: relative;
  z-index: 1;
}

.about-text { flex: 1; }

.about-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.about-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-text strong { color: var(--text); }

.platforms-strip {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.platforms-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 1rem;
}

.platforms-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.platform-chip {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  background: var(--bg-card);
}

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonials-section { border-top: 1px solid var(--border); }

.testimonial-grid--single {
  grid-template-columns: minmax(290px, 560px);
  justify-content: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.testimonial-card:hover,
.testimonial-card.is-active {
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(255,255,255,0.12), 0 0 40px rgba(255,255,255,0.05);
}

.testimonial-card--linked {
  position: relative;
  cursor: pointer;
}

.testimonial-card--linked:hover,
.testimonial-card--linked:active,
.testimonial-card--linked.is-active {
  border-color: rgba(0,255,238,0.55);
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(0,255,238,0.15), 0 0 40px rgba(0,255,238,0.07);
}

.testimonial-card--linked .author-link {
  color: #00ffee;
  position: relative;
  z-index: 2;
}

.testimonial-card--linked .author-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.testimonial-stars {
  color: #ffd60a;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.author-name { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.author-role { font-size: 0.75rem; color: var(--text-subtle); }

.author-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  transition: opacity 0.2s;
}
.author-link:hover { opacity: 0.75; }

/* =============================================================
   CONTACT
   ============================================================= */
.contact {
  background: var(--bg-card-2);
  border-top: 1px solid var(--border);
}

.contact-form {
  max-width: 640px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}

.required { color: #ff3b30; }
.optional { color: var(--text-muted); font-weight: 400; }

.form-group input,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--r);
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: inherit;
  font-size: 0.875rem;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-subtle); }
.form-group input:hover,
.form-group textarea:hover {
  border-color: rgba(255,255,255,0.45);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 0 18px rgba(255,255,255,0.15);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,0.6);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15), 0 0 25px rgba(255,255,255,0.2);
}
.form-group textarea { resize: vertical; }

.btn-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }

.form-status {
  text-align: center;
  font-size: 0.875rem;
  margin-top: 1rem;
  min-height: 1.5rem;
  color: var(--text-muted);
}
.form-status.success { color: #34c759; }
.form-status.error   { color: #ff3b30; }

.contact-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 640px;
  margin: 2rem auto;
}
.contact-divider::before,
.contact-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.contact-divider span {
  font-size: 0.72rem;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  white-space: nowrap;
}

.contact-cards {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color 0.2s, box-shadow 0.2s;
  text-align: center;
  min-width: 180px;
}
.contact-card:hover {
  border-color: rgba(0,255,238,0.6);
  box-shadow: 0 0 18px rgba(0,255,238,0.2), 0 0 40px rgba(0,255,238,0.08);
}
.contact-card:hover h3 { color: #00ffee; }
.contact-icon { font-size: 1.5rem; }
.contact-card h3 { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.contact-card p  { font-size: 0.8rem; color: var(--text-muted); }

/* =============================================================
   FOOTER
   ============================================================= */
footer {
  padding: 2rem 6%;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-wordmark {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  background: var(--rainbow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.55);
  paint-order: stroke fill;
  filter: none;
  transition: filter 0.2s;
  cursor: default;
}
.footer-wordmark:hover {
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.8)) drop-shadow(0 0 22px rgba(255,255,255,0.3));
}

footer p { font-size: 0.8rem; color: var(--text-muted); }

.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.2s, text-shadow 0.2s;
}
.footer-links a:hover {
  color: #00ffee;
  text-shadow: 0 0 10px rgba(0,255,238,0.65);
}

/* =============================================================
   COMPAT — v122 variable aliases
   ============================================================= */
:root {
  --ink:       var(--text);
  --ink-2:     var(--bg-card);
  --muted:     var(--text-muted);
  --muted-2:   var(--text-muted);
  --subtle:    var(--text-subtle);
  --surface:   var(--bg-card);
  --surface-2: var(--bg-card-2);
  --surface-3: var(--bg-card-2);
  --blue:      #00ffee;
  --blue-mid:  #00ddcc;
  --navy:      #030d35;
  --grad:      var(--rainbow);
}

/* =============================================================
   LEGAL PAGES (privacy, terms)
   ============================================================= */
.legal-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem 6% 6rem;
}
.legal-page h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.last-updated {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.legal-page h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin: 2.5rem 0 0.75rem;
  letter-spacing: 0.02em;
}
.legal-page h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin: 1.5rem 0 0.5rem;
}
.legal-page p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.85; margin-bottom: 1rem; }
.legal-page ul, .legal-page ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-page li { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; margin-bottom: 0.35rem; }
.legal-page a { color: #00ffee; text-decoration: underline; text-underline-offset: 3px; }
.legal-page strong { color: var(--text); }
.legal-page table { width: 100%; border-collapse: collapse; font-size: 0.85rem; margin: 1.25rem 0; }
.legal-page th {
  background: var(--bg-card);
  color: var(--text);
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--border-2);
  text-align: left;
  font-weight: 600;
}
.legal-page td {
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.legal-page tr:nth-child(even) td { background: var(--bg-card-2); }

/* =============================================================
   BLOG & TOOLS GRID
   ============================================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.25rem;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover {
  border-color: rgba(0,255,238,0.6);
  box-shadow: 0 0 18px rgba(0,255,238,0.2), 0 0 40px rgba(0,255,238,0.08);
  transform: translateY(-2px);
}
.blog-card-img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta {
  font-size: 0.7rem;
  font-weight: 600;
  color: #ff00cc;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
  text-shadow: 0 0 10px rgba(255,0,204,0.5);
}
.blog-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
  line-height: 1.35;
}
.blog-card p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.7; flex: 1; margin-bottom: 1rem; }
.blog-card-link { font-size: 0.8rem; font-weight: 600; color: #00ffee; text-shadow: 0 0 10px rgba(0,255,238,0.4); letter-spacing: 0.03em; }

/* =============================================================
   BLOG POST
   ============================================================= */
.post-hero { width: 100%; max-height: 480px; object-fit: cover; }
.post-header {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 6% 2rem;
}
.post-byline { margin-bottom: 1.25rem; }
.post-meta {
  font-size: 0.7rem;
  font-weight: 600;
  color: #ff00cc;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 10px rgba(255,0,204,0.5);
  display: block;
}
.post-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.post-tag {
  font-size: 0.68rem;
  font-weight: 500;
  padding: 0.25rem 0.65rem;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.post-header h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin: 1.25rem 0 0.5rem;
  letter-spacing: 0.02em;
}
.post-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.post-intro { color: var(--text-muted); font-size: 1rem; line-height: 1.85; }
.post-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 0.5rem 6% 5rem;
}
.post-body h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin: 2.5rem 0 0.75rem;
  letter-spacing: 0.02em;
}
.post-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin: 1.75rem 0 0.6rem;
  letter-spacing: 0.02em;
}
.post-body p { color: var(--text-muted); font-size: 0.925rem; line-height: 1.85; margin-bottom: 1.2rem; }
.post-body ul, .post-body ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.post-body li { color: var(--text-muted); font-size: 0.925rem; line-height: 1.8; margin-bottom: 0.4rem; }
.post-body strong { color: var(--text); }
.post-body a { color: #00ffee; text-decoration: underline; text-underline-offset: 3px; }
.post-inline-image {
  width: 100%;
  border-radius: var(--r-lg);
  margin: 1.5rem 0;
  border: 1px solid var(--border);
}
.post-body table { width: 100%; border-collapse: collapse; font-size: 0.875rem; margin: 1.5rem 0; }
.post-body th {
  background: var(--bg-card);
  color: var(--text);
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--border-2);
  text-align: left;
  font-weight: 600;
}
.post-body td {
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.post-body tr:nth-child(even) td { background: var(--bg-card-2); }

/* Post CTA */
.post-cta {
  margin: 2.5rem 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 2rem 2rem;
  text-align: center;
}
.post-cta p { color: var(--text-muted); margin-bottom: 1.25rem; font-size: 0.95rem; }
/* Fix: .post-body a overrides .btn color with higher specificity */
.post-body a.btn, .post-body .btn {
  color: #030d35;
  text-decoration: none;
  -webkit-text-fill-color: #030d35;
}

/* FAQ accordion */
.post-faq { margin-top: 3rem; }
.post-faq details {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg-card);
  margin-bottom: 0.5rem;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.post-faq details[open] {
  border-color: rgba(0,255,238,0.35);
  box-shadow: 0 0 14px rgba(0,255,238,0.07);
}
.post-faq details summary {
  list-style: none;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  user-select: none;
}
.post-faq details summary::-webkit-details-marker { display: none; }
.post-faq details summary::after {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-color: #00ffee;
  filter: drop-shadow(0 0 4px rgba(0,255,238,0.7));
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transition: transform 0.25s ease;
}
.post-faq details[open] summary::after { transform: rotate(180deg); }
.post-faq details > p {
  padding: 0 1.25rem 1.1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 0.85rem;
}

/* Comment section */
.sempiterno-comments {
  margin-top: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 2.25rem 2.25rem;
}
.sempiterno-comments h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.sempiterno-comments > p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
.comment-form { display: flex; flex-direction: column; gap: 0.85rem; }
.comment-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.comment-form input::placeholder,
.comment-form textarea::placeholder { color: var(--text-subtle); }
.comment-form input:focus,
.comment-form textarea:focus {
  border-color: rgba(0,255,238,0.5);
  box-shadow: 0 0 0 3px rgba(0,255,238,0.08);
}
.comment-form textarea { min-height: 130px; resize: vertical; }
.comment-form .btn { align-self: flex-start; }
.comment-success {
  display: none;
  color: #00ffee;
  font-size: 0.875rem;
  text-shadow: 0 0 12px rgba(0,255,238,0.5);
}
@media (max-width: 560px) {
  .comment-form-row { grid-template-columns: 1fr; }
  .sempiterno-comments { padding: 1.5rem 1.25rem; }
}

/* =============================================================
   TOOLS TEMPLATE PAGE
   ============================================================= */
.tool-hero { max-width: 780px; margin: 0 auto; padding: 3.5rem 6% 2rem; }
.tool-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.tool-hero p { color: var(--text-muted); font-size: 1rem; line-height: 1.75; margin-bottom: 1.5rem; }
.tool-body { max-width: 780px; margin: 0 auto; padding: 0 6% 4rem; }
.template-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 2rem 1.5rem;
  margin-bottom: 2rem;
}
.template-block h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ff00cc;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  text-shadow: 0 0 10px rgba(255,0,204,0.5);
}
.template-field { margin-bottom: 1.25rem; }
.template-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.template-field .field-value {
  font-size: 0.925rem;
  color: var(--text);
  line-height: 1.6;
  padding: 0.6rem 0.9rem;
  background: var(--bg-card-2);
  border: 1px solid var(--border-2);
  border-radius: 8px;
}
.template-field .field-value.placeholder { color: var(--text-subtle); font-style: italic; }

/* Inner page hero header (blog/tools listing pages) */
.inner-page-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.inner-page-header h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.inner-page-header p { color: var(--text-muted); font-size: 1rem; line-height: 1.75; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 900px) {
  .process-steps { flex-direction: column; align-items: stretch; }
  .process-connector { width: 48px; height: 1px; align-self: center; }
  .process-step { padding: 1.5rem; }
  .process-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  nav:not(.footer-links):not(.footer-nav) { padding: 0 4%; }

  .hamburger { display: flex; }

  nav ul {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #03030e;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1.5rem 4%;
    gap: 1.25rem;
    z-index: 999;
  }
  nav ul.open { display: flex; }

  /* Dropdown — always visible on mobile as indented sub-items */
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    backdrop-filter: none;
    padding: 0.5rem 0 0 1rem;
    gap: 0.75rem;
    display: flex;
    flex-direction: column;
    min-width: unset;
  }
  .nav-dropdown-menu li a {
    padding: 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
  }
  .nav-caret { display: none; }

  /* -- Hero: stripped down for mobile -- */
  .hero {
    min-height: auto;
    padding: 5rem 6%;
    background-image: radial-gradient(ellipse 80% 55% at 50% 35%, rgba(0,255,238,0.055) 0%, transparent 70%);
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
  .hero-stars {
    -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 50%);
    mask-image: linear-gradient(to bottom, black 30%, transparent 50%);
  }
  .hero-eyebrow { gap: 0.25rem; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .eyebrow-chip { font-size: 0.52rem; padding: 0.17rem 0.45rem; letter-spacing: 0.05em; white-space: nowrap; }
  .hero-wordmark { margin-bottom: 0; -webkit-text-stroke: 1px rgba(255,255,255,0.65); }
  .hero-tagline {
    font-size: 1rem;
    color: rgba(255,255,255,0.72);
    text-shadow: 0 0 18px #03040f, 0 0 10px #03040f, 0 0 4px #03040f;
  }
  .hero p:not(.hero-tagline):not(.hero-descriptor) { display: none; }
  .hero-descriptor { display: none; }
  .hero-grid { display: block; }
  .hero-cta { gap: 0.75rem; }
  .hero-cta .btn-outline { background: #111023; }

  /* -- Metrics: 2x2 grid -- */
  .proof-bar { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 1.5rem 6%; }
  .proof-bar--tagline { display: flex; }
  .proof-item { padding: 1.25rem 1rem; }
  .proof-divider { display: none; }
  .proof-number { font-size: 1.75rem; }
  .proof-label { font-size: 0.65rem; }
  /* -- Hero stats: 2x2 on mobile -- */
  .hero-stats { flex-wrap: wrap; gap: 0.75rem 0; margin: 1.25rem 0 0.25rem; }
  .hero-stat { padding: 0 1rem; }
  .hero-stat-number { font-size: 1.4rem; }
  .hero-stat-divider { height: 22px; }

  /* -- Acronym: single row, no scroll -- */
  .acronym-inner { justify-content: center; overflow: visible; }
  .acronym-item { min-width: 0; padding: 0.75rem 0.1rem; }
  .acronym-letter { font-size: 1.1rem; }
  .acronym-word { font-size: 0.48rem; letter-spacing: 0.04em; }

  .section { padding: 4rem 4%; }

  /* -- Service grid + icon centering -- */
  .service-grid { grid-template-columns: 1fr; }
  .service-icon-wrap { margin-left: auto; margin-right: auto; }
  .testimonial-grid { grid-template-columns: 1fr; }

  .about-inner { flex-direction: column; text-align: center; gap: 2rem; }
  .about-image img { width: 160px; height: 160px; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { justify-content: center; }

  .contact-cards { gap: 0.75rem; }
  .contact-card { min-width: 140px; }
}

@media (max-width: 480px) {
  .contact-cards { flex-direction: column; align-items: stretch; }
  .contact-card { min-width: unset; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
/* =============================================================
   SEMPITE — Additions for v125 (How We Work + Product + Pricing)
   ============================================================= */

/* ── HOW WE WORK ───────────────────────────────────────────── */
.how-section { padding: 6rem 6% 4rem; }
.how-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  max-width: 1280px; margin: 3rem auto 0;
}
.how-step {
  position: relative; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 2rem 1.75rem; transition: border-color .25s, transform .25s;
}
.how-step:hover { border-color: var(--border-2); transform: translateY(-2px); }
.how-step-num {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem; font-weight: 700; line-height: 1;
  background: var(--rainbow); -webkit-background-clip: text;
  background-clip: text; -webkit-text-fill-color: transparent;
  color: transparent; opacity: .85; margin-bottom: .9rem;
}
.how-step h3 {
  font-size: 1.25rem; font-weight: 700; color: #fff;
  letter-spacing: -.01em; margin-bottom: .65rem;
}
.how-step p {
  font-size: .92rem; color: var(--text-muted); line-height: 1.65;
  margin-bottom: 1.1rem;
}
.how-step-meta {
  font-size: .72rem; font-weight: 600; color: var(--neon-cyan);
  letter-spacing: .08em; text-transform: uppercase;
  padding-top: .85rem; border-top: 1px solid var(--border);
}

/* ── WHAT YOU GET ──────────────────────────────────────────── */
.product-section { padding: 5rem 6%; }
.product-showcase {
  max-width: 1280px; margin: 3rem auto 0;
  display: flex; flex-direction: column; gap: 1.75rem;
}
.product-card {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 2rem;
  align-items: center; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 2rem; transition: border-color .25s;
}
.product-card:hover { border-color: var(--border-2); }
.product-card--lg { padding: 2.25rem; }
.product-secondary { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; }
.product-secondary .product-card { grid-template-columns: 1fr 1fr; padding: 1.5rem; gap: 1.25rem; }

.product-frame {
  background: #f1f5f9; border-radius: 10px; overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);
  aspect-ratio: 4 / 3; display: flex; flex-direction: column;
}
.product-frame-bar {
  background: #e2e8f0; padding: 7px 11px; display: flex; gap: 6px;
}
.product-frame-bar span {
  width: 10px; height: 10px; border-radius: 50%; background: #cbd5e1;
}
.product-frame-bar span:nth-child(1) { background: #ef4444; }
.product-frame-bar span:nth-child(2) { background: #f59e0b; }
.product-frame-bar span:nth-child(3) { background: #10b981; }
.product-frame-body {
  flex: 1; padding: 14px; overflow: hidden;
  color: #0a1628; font-family: 'Inter', system-ui, sans-serif;
}

.mockup-report { font-size: 11px; }
.mockup-cover {
  text-align: center; padding: 16px 12px 18px; border-bottom: 1px dashed #cbd5e1;
  margin-bottom: 14px;
}
.mockup-cover-wordmark {
  font-family: 'Oswald', sans-serif;
  font-size: 22px; font-weight: 700; letter-spacing: .14em;
  background: linear-gradient(90deg, #ff007f, #bb00ff, #0099ff, #00ddff);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mockup-cover-divider {
  width: 60px; height: 2px; margin: 6px auto;
  background: linear-gradient(90deg, #ff007f, #bb00ff, #0099ff, #00ddff);
}
.mockup-cover-name {
  font-size: 16px; font-weight: 700; color: #0a1628; margin-top: 6px;
}
.mockup-cover-date { font-size: 10px; color: #64748b; margin-top: 4px; }
.mockup-content { padding: 0 6px; }
.mockup-row { display: flex; gap: 6px; margin-bottom: 10px; }
.mockup-metric {
  flex: 1; background: #fff; border: 1px solid #e2e8f0;
  border-radius: 6px; padding: 8px;
}
.mockup-metric-label { font-size: 9px; color: #64748b; font-weight: 600; }
.mockup-metric-num {
  font-size: 18px; font-weight: 700; color: #16a34a; margin-top: 2px;
}
.mockup-bars { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.mockup-bar { height: 6px; background: #e2e8f0; border-radius: 3px; overflow: hidden; }
.mockup-bar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
}
.mockup-finding-row {
  display: flex; gap: 8px; padding: 8px 0;
  border-top: 1px solid #f1f5f9;
}
.mockup-thumb {
  width: 38px; height: 38px; border-radius: 4px; flex-shrink: 0;
  background: linear-gradient(135deg, #1e3a8a, #06b6d4);
}
.mockup-find-title {
  font-size: 10px; font-weight: 700; color: #0a1628; margin-bottom: 2px;
}
.mockup-find-body { font-size: 9px; color: #64748b; line-height: 1.4; }

.product-mini-frame {
  background: #0a1628; border-radius: 10px; padding: 14px;
  color: #e2e8f0; font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px; height: 100%;
  box-shadow: 0 12px 35px rgba(0,0,0,.6);
}
.mini-row {
  display: flex; gap: 6px; align-items: center;
  padding-bottom: 8px; border-bottom: 1px solid #1e3a8a;
  font-size: 10px; color: #94a3b8;
}
.mini-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #64748b;
}
.mini-dot--g { background: #10b981; box-shadow: 0 0 6px #10b981; }
.mini-dot--c { background: #06b6d4; box-shadow: 0 0 6px #06b6d4; }
.mini-stat-row { display: flex; gap: 8px; margin: 10px 0; }
.mini-stat {
  flex: 1; background: #1e3a8a; border-radius: 6px; padding: 8px;
  text-align: center;
}
.mini-stat-num { font-size: 18px; font-weight: 700; color: #fff; }
.mini-stat-lbl { font-size: 9px; color: #94a3b8; margin-top: 2px; }
.mini-list { display: flex; flex-direction: column; gap: 5px; }
.mini-list-row {
  display: flex; justify-content: space-between; align-items: center;
  background: #1a2540; border-radius: 5px; padding: 6px 9px; font-size: 10px;
}
.mini-pill {
  font-size: 9px; font-weight: 700; padding: 2px 7px;
  background: #f59e0b; color: #0a1628; border-radius: 3px;
}
.mini-pill--g { background: #10b981; }
.mini-pill--w { background: #475569; color: #e2e8f0; }
.mini-score-row { display: flex; gap: 10px; margin: 10px 0; align-items: center; }
.mini-score {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border-radius: 8px; padding: 10px 14px; text-align: center;
}
.mini-score-num { font-size: 22px; font-weight: 700; color: #fff; line-height: 1; }
.mini-score-lbl { font-size: 9px; color: #94a3b8; }
.mini-score-meta { font-size: 10px; color: #94a3b8; line-height: 1.5; }
.mini-table {
  background: #1a2540; border-radius: 6px; padding: 6px;
  font-size: 10px;
}
.mini-table-head, .mini-table-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4px; padding: 3px 4px;
}
.mini-table-head { font-weight: 700; color: #64748b; font-size: 8px;
  text-transform: uppercase; letter-spacing: .05em; padding-bottom: 4px;
  border-bottom: 1px solid #1e3a8a; margin-bottom: 3px; }
.mini-table-row > div:first-child { color: #e2e8f0; }
.mini-tag {
  text-align: center; font-weight: 700; font-size: 10px;
}
.mini-tag--good { color: #10b981; }
.mini-tag--bad { color: #ef4444; }

.product-meta h3 {
  font-size: 1.45rem; font-weight: 700; color: #fff;
  letter-spacing: -.01em; margin-bottom: .65rem;
}
.product-card .product-meta h3 { font-size: 1.15rem; }
.product-card--lg .product-meta h3 { font-size: 1.6rem; }
.product-meta p {
  font-size: .9rem; color: var(--text-muted); line-height: 1.65;
  margin-bottom: 1rem;
}
.product-features {
  list-style: none; padding: 0; display: flex; flex-direction: column; gap: .5rem;
}
.product-features li {
  font-size: .85rem; color: var(--text-muted); padding-left: 22px;
  position: relative; line-height: 1.5;
}
.product-features li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--rainbow);
  box-shadow: 0 0 8px rgba(0,221,255,.4);
}

/* ── PRICING ───────────────────────────────────────────────── */
.pricing-section { padding: 5rem 6% 4rem; }
.pricing-grid {
  max-width: 1280px; margin: 3rem auto 1.5rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.price-card {
  position: relative;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem 1.5rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: border-color .25s, transform .25s;
}
.price-card:hover { border-color: var(--border-2); transform: translateY(-3px); }
.price-card--featured {
  border-color: rgba(0,221,255,.45);
  background: linear-gradient(165deg, #0a0918 0%, #0d1a3a 100%);
  box-shadow: 0 0 35px rgba(0,221,255,.12);
}
.price-card-flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--rainbow);
  color: #0a1628; font-size: .68rem; font-weight: 700;
  padding: 4px 14px; border-radius: 999px; letter-spacing: .12em;
  text-transform: uppercase; white-space: nowrap;
}
.price-tier {
  font-family: 'Oswald', sans-serif; font-size: 1.2rem;
  font-weight: 700; letter-spacing: .04em; color: #fff;
}
.price-tagline { font-size: .78rem; color: var(--text-muted); margin-top: 2px; }
.price-amount {
  display: flex; align-items: baseline; gap: 4px;
  padding: .65rem 0; border-bottom: 1px solid var(--border);
}
.price-currency { font-size: 1.4rem; color: var(--text-muted); margin-right: 2px; }
.price-num {
  font-family: 'Oswald', sans-serif; font-size: 3rem;
  font-weight: 700; line-height: 1; color: #fff;
}
.price-unit { font-size: .85rem; color: var(--text-muted); margin-left: 6px; }
.price-amount--custom {
  border-bottom: 1px solid var(--border); padding: 1.2rem 0;
}
.price-custom-num {
  font-family: 'Oswald', sans-serif; font-size: 2.4rem;
  font-weight: 700; letter-spacing: .02em;
  background: var(--rainbow); -webkit-background-clip: text;
  background-clip: text; -webkit-text-fill-color: transparent;
}
.price-features {
  list-style: none; padding: 0; display: flex; flex-direction: column;
  gap: .55rem; flex: 1;
}
.price-features li {
  font-size: .85rem; color: var(--text-muted); padding-left: 22px;
  position: relative; line-height: 1.5;
}
.price-features li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--neon-cyan); font-weight: 700;
}
.price-cta {
  display: block; text-align: center;
  padding: .85rem 1.25rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  color: #fff; font-weight: 600; font-size: .92rem;
  transition: border-color .2s, color .2s, background .2s;
}
.price-cta:hover {
  border-color: var(--neon-cyan); color: var(--neon-cyan);
  background: rgba(0,221,255,.06);
}
.price-cta--featured {
  background: var(--rainbow-btn); color: #0a1628; border-color: transparent;
  font-weight: 700;
}
.price-cta--featured:hover {
  filter: brightness(1.08); color: #0a1628;
  background: var(--rainbow-btn);
}
.pricing-footer {
  max-width: 720px; margin: 0 auto;
  text-align: center; font-size: .85rem; color: var(--text-muted);
}
.pricing-footer a { color: var(--neon-cyan); border-bottom: 1px dashed currentColor; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 980px) {
  .how-grid, .pricing-grid { grid-template-columns: 1fr; }
  .product-card, .product-card--lg { grid-template-columns: 1fr; }
  .product-secondary { grid-template-columns: 1fr; }
  .product-secondary .product-card { grid-template-columns: 1fr; }
  .price-card--featured { transform: none; }
}
@media (max-width: 600px) {
  .how-section, .product-section, .pricing-section { padding-left: 5%; padding-right: 5%; }
  .price-num { font-size: 2.3rem; }
}
/* =============================================================
   SEMPITE — v126 additions: acronym CTA, audit deep-dive page
   ============================================================= */

/* ── Acronym strip CTA (under existing letters) ─────────────── */
.acronym-strip { padding-bottom: 1rem !important; }
.acronym-cta {
  max-width: 720px; margin: 1.5rem auto 0;
  text-align: center; font-size: .95rem;
  color: var(--text-muted); line-height: 1.55;
}
.acronym-link {
  display: inline-block; margin-left: 6px;
  color: var(--neon-cyan); font-weight: 600;
  border-bottom: 1px solid currentColor;
  transition: text-shadow .15s;
}
.acronym-link:hover {
  text-shadow: 0 0 10px rgba(0,255,238,.55);
}

/* ── Product deep-dive CTA under the audit mockup ──────────── */
.product-deepdive-cta {
  text-align: center; margin-top: 2rem;
}
.product-deepdive-cta a {
  display: inline-block; padding: .85rem 1.6rem;
  border: 1px solid rgba(0,255,238,.4); border-radius: 999px;
  color: var(--neon-cyan); font-weight: 600; font-size: .95rem;
  transition: background .2s, border-color .2s;
}
.product-deepdive-cta a:hover {
  background: rgba(0,255,238,.07);
  border-color: var(--neon-cyan);
}

/* ── /the-audit/ page styling ──────────────────────────────── */
.audit-hero {
  padding: 5rem 6% 3rem; text-align: center;
}
.audit-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700; letter-spacing: -.01em;
  background: var(--rainbow); -webkit-background-clip: text;
  background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 1rem; line-height: 1.1;
}
.audit-hero-sub {
  max-width: 720px; margin: 0 auto 2rem;
  font-size: 1.1rem; color: var(--text-muted); line-height: 1.6;
}
.audit-hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.audit-pillars {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  padding: 0 6% 4rem;
}
.audit-pillar {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.5rem 1.5rem 1.75rem;
}
.audit-pillar-num {
  font-family: 'Oswald', sans-serif; font-size: 2.2rem;
  font-weight: 700;
  background: var(--rainbow); -webkit-background-clip: text;
  background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1; margin-bottom: .75rem;
}
.audit-pillar h3 {
  font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: .5rem;
}
.audit-pillar p {
  font-size: .9rem; color: var(--text-muted); line-height: 1.6;
}

.audit-dimensions {
  max-width: 1200px; margin: 0 auto;
  padding: 4rem 6%;
}
.dim-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin-top: 2rem;
}
.dim-card {
  background: var(--bg-card-2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.1rem 1.25rem;
  display: flex; align-items: center; gap: 12px;
  transition: border-color .2s;
}
.dim-card:hover { border-color: var(--border-2); }
.dim-card-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--rainbow);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #0a1628; font-weight: 700;
}
.dim-card-body h4 {
  font-size: .9rem; font-weight: 700; color: #fff;
  margin-bottom: 2px;
}
.dim-card-body p {
  font-size: .78rem; color: var(--text-muted); line-height: 1.45;
}

.audit-inside {
  max-width: 1200px; margin: 0 auto;
  padding: 4rem 6%;
}
.inside-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin-top: 2rem;
}
.inside-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.75rem;
}
.inside-card h3 {
  font-size: 1.15rem; font-weight: 700; color: #fff;
  margin-bottom: .65rem;
}
.inside-card p {
  font-size: .92rem; color: var(--text-muted); line-height: 1.65;
  margin-bottom: 1rem;
}
.inside-card ul {
  list-style: none; padding: 0; display: flex; flex-direction: column; gap: .5rem;
}
.inside-card li {
  font-size: .85rem; color: var(--text-muted); padding-left: 22px;
  position: relative; line-height: 1.5;
}
.inside-card li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--neon-cyan); font-weight: 700;
}

.audit-faq {
  max-width: 820px; margin: 0 auto;
  padding: 4rem 6%;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.faq-item h3 {
  font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .6rem;
}
.faq-item p {
  font-size: .9rem; color: var(--text-muted); line-height: 1.65;
}

@media (max-width: 980px) {
  .audit-pillars { grid-template-columns: 1fr; }
  .dim-grid { grid-template-columns: 1fr; }
  .inside-grid { grid-template-columns: 1fr; }
}
