/* ==========================================================================
   Nurex Studio — Design System
   Visual North Star: Reference Design (Dark Hero, Clean White Sections,
   Yellow Accent #FFD21F, Dark AI Creative Section, Yellow Final CTA Banner)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;0,14..32,800;1,14..32,400&display=swap');

/* ---------- Design Tokens ------------------------------------------------ */
:root {
  --yellow:          #FFD21F;
  --yellow-hover:    #ECC215;
  --yellow-light:    #FFF9D6;
  --yellow-border:   #FFE570;
  --black:           #111111;
  --hero-bg:         #131313;
  --hero-card-bg:    #1C1C1C;
  --dark:            #171717;
  --dark-card:       #1F1F1F;
  --white:           #FFFFFF;
  --bg:              #FFFFFF;
  --bg-subtle:       #FBFBFB;
  --bg-card:         #F7F8FA;
  --text:            #111111;
  --text-muted:      #60646C;
  --text-light:      #8D9198;
  --border:          #EAEBED;
  --border-subtle:   #F0F1F3;
  --border-dark:     #282828;
  --green-badge-bg:  #ECFDF5;
  --green-badge-txt: #059669;
  --green-badge-brd: #A7F3D0;
  --radius-xs:       4px;
  --radius-sm:       6px;
  --radius-md:       10px;
  --radius-lg:       14px;
  --radius-xl:       20px;
  --shadow-sm:       0 1px 2px rgba(0,0,0,.04);
  --shadow-md:       0 4px 16px rgba(0,0,0,.06);
  --shadow-lg:       0 10px 30px rgba(0,0,0,.08);
  --shadow-xl:       0 20px 50px rgba(0,0,0,.12);
  --container:       1200px;
  --font:            'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --ease:            cubic-bezier(.16, 1, .3, 1);
  --dur:             220ms;
}

/* ---------- Global Reset & Setup ----------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  color: var(--text);
  background: var(--bg);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }
img, video, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: all var(--dur) var(--ease); }
button, input, select, textarea { font: inherit; color: inherit; border: 0; background: 0; }
button { cursor: pointer; }
p { line-height: 1.62; color: var(--text-muted); }

/* ---------- Typography --------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.025em;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 600; }

.text-yellow { color: var(--yellow); }
.highlight-yellow { color: var(--yellow); }

/* ---------- Layout ------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

section {
  padding-block: 5.5rem;
}
section.section-tight {
  padding-block: 4rem;
}

/* Section Header (Left Title + Right Subtitle & Action) */
.section-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.75rem;
  flex-wrap: wrap;
}
.section-header-split .header-left {
  max-width: 580px;
}
.section-header-split .header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 440px;
  text-align: right;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.section-header-split .header-right p {
  font-size: .95rem;
  margin: 0;
  line-height: 1.5;
}

/* Eyebrows with yellow indicator */
.eyebrow-row {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .6rem;
}
.eyebrow-row .flag-icon {
  color: var(--yellow);
  font-size: .9rem;
  line-height: 1;
}
.eyebrow-row.dark-eyebrow {
  color: #A0A0A0;
}

/* ---------- Skip Link ---------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--yellow);
  color: var(--black);
  padding: .5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .875rem;
  z-index: 9999;
  transition: top var(--dur);
}
.skip-link:focus { top: 1rem; }

/* ============================================================
   HEADER & NAVIGATION (DARK TOP MATCHING REFERENCE HERO)
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(19, 19, 19, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--dur), border-color var(--dur);
}
.site-header.is-scrolled {
  background: rgba(17, 17, 17, 0.98);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--white);
  flex-shrink: 0;
}
.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--yellow);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--black);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(255,210,31,.3);
}
.logo-text { line-height: 1.05; }
.logo-text span {
  display: block;
  font-size: .62rem;
  font-weight: 600;
  color: #9E9E9E;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Navigation Menu */
.nav-links {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.nav-link {
  font-size: .875rem;
  font-weight: 500;
  color: #B5B8BC;
  padding: .45rem .8rem;
  border-radius: var(--radius-sm);
  transition: color var(--dur), background var(--dur);
  position: relative;
}
.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,.06);
}
.nav-link[aria-current="page"] {
  color: var(--white);
  font-weight: 600;
}
.nav-link[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: var(--yellow);
  border-radius: 99px;
}

/* Hide mobile CTA in desktop navigation */
.nav-mobile-cta {
  display: none;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: var(--radius-sm);
  z-index: 101;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.35rem;
  font-size: .875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  box-shadow: 0 2px 10px rgba(255,210,31,.25);
}
.btn-yellow:hover {
  background: var(--yellow-hover);
  border-color: var(--yellow-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,210,31,.4);
}
.btn-black {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-black:hover {
  background: #222;
  transform: translateY(-1px);
}
.btn-dark-outline {
  background: rgba(255,255,255,.05);
  color: var(--white);
  border-color: rgba(255,255,255,.2);
}
.btn-dark-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.4);
  color: var(--white);
}
.btn-outline {
  background: var(--white);
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover {
  background: var(--bg-card);
  border-color: #CBD5E1;
}
.btn-pill {
  border-radius: 99px;
  padding-inline: 1.5rem;
}
.btn-lg {
  padding: .8rem 1.6rem;
  font-size: .95rem;
}

/* ============================================================
   BADGES
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .25rem .65rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
}
.badge-yellow {
  background: var(--yellow-light);
  border-color: var(--yellow-border);
  color: #7A6200;
}
.badge-gray {
  background: #F1F3F5;
  border-color: #E2E4E8;
  color: #4B5563;
}
.badge-green {
  background: var(--green-badge-bg);
  border-color: var(--green-badge-brd);
  color: var(--green-badge-txt);
}
.badge-dark {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  padding: .25rem .65rem;
  font-size: .75rem;
  font-weight: 500;
  background: #F4F5F7;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-sm);
  color: #374151;
}

/* ============================================================
   HERO SECTION (DARK EDITORIAL WORKSPACE)
   ============================================================ */
.hero {
  background: var(--hero-bg);
  color: var(--white);
  padding-block: 4.5rem 5.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
}

/* Subtle background vignette/ambient lighting */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(255,210,31,.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-headline {
  color: var(--white);
  font-size: clamp(2.3rem, 4.8vw, 3.65rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

.hero-sub {
  color: #9EA3AB;
  font-size: 1.05rem;
  line-height: 1.68;
  max-width: 500px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}

/* 4 Capability items under hero buttons */
.hero-capabilities {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.12);
  flex-wrap: wrap;
}
.hero-cap-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 600;
  color: #C8CCD2;
}
.hero-cap-item svg {
  color: var(--white);
  flex-shrink: 0;
}

/* Hero Right: Laptop Workspace Mockup */
.hero-workspace-wrap {
  position: relative;
}

/* Yellow "Ideas to Impact" stamp top right of workspace */
.stamp-ideas {
  position: absolute;
  top: -24px;
  right: -10px;
  z-index: 10;
  font-family: var(--font);
  font-style: italic;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--yellow);
  line-height: 1.1;
  text-align: right;
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
  transform: rotate(5deg);
  pointer-events: none;
}
.stamp-ideas::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--yellow);
  margin-top: 4px;
  margin-left: auto;
}

/* Laptop Frame */
.laptop-mockup {
  position: relative;
  background: #0C0C0C;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px 14px 4px 4px;
  padding: 10px 10px 0;
  box-shadow: 0 25px 60px rgba(0,0,0,.7);
}
.laptop-camera {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #333;
  margin: 0 auto 6px;
}
.laptop-screen {
  position: relative;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/10;
}
.laptop-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.laptop-base {
  height: 16px;
  background: linear-gradient(180deg, #222 0%, #161616 100%);
  border-radius: 0 0 12px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-top: none;
  position: relative;
  margin-inline: -14px;
}
.laptop-base::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: #333;
  border-radius: 0 0 4px 4px;
}

/* Floating badge on laptop */
.laptop-badge-overlay {
  position: absolute;
  bottom: 24px;
  left: 30px;
  z-index: 10;
  background: var(--white);
  color: var(--black);
  padding: .5rem 1rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
  display: flex;
  align-items: center;
  gap: .65rem;
}
.laptop-badge-overlay .badge-sub {
  font-size: .65rem;
  font-weight: 700;
  color: #6B7280;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.laptop-badge-overlay .badge-name {
  font-size: .875rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}

/* ============================================================
   SECTION: FEATURED WORK ("Some things we've built.")
   ============================================================ */
.work-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.work-project-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.work-project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #D1D5DB;
}

.work-card-thumb {
  background: #0C0C0C;
  padding: 1rem;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.work-card-thumb.light-thumb {
  background: #F7F8FA;
}
.work-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transition: transform var(--dur) var(--ease);
}
.work-project-card:hover .work-card-thumb img {
  transform: scale(1.02);
}

.work-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.work-card-badges {
  display: flex;
  gap: .4rem;
  margin-bottom: .85rem;
  flex-wrap: wrap;
}
.work-card-body h3 {
  font-size: 1.35rem;
  margin-bottom: .6rem;
}
.work-card-body p {
  font-size: .875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}
.work-card-link {
  margin-top: auto;
  font-size: .875rem;
  font-weight: 700;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.work-card-link:hover {
  color: #7A6200;
  gap: .55rem;
}

/* ============================================================
   SECTION: OUR SERVICES ("What we do.")
   ============================================================ */
.services-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-box-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.service-box-card:hover {
  transform: translateY(-3px);
  border-color: var(--yellow);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.service-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--yellow);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.service-box-card h3 {
  font-size: 1.15rem;
  margin-bottom: .5rem;
}
.service-box-card p {
  font-size: .85rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.service-bullets {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.5rem;
  padding-top: .85rem;
  border-top: 1px solid #E5E7EB;
}
.service-bullet-item {
  font-size: .8rem;
  color: #374151;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .45rem;
}
.service-bullet-item::before {
  content: '•';
  color: #7A6200;
  font-size: .9rem;
}
.service-box-link {
  margin-top: auto;
  font-size: .85rem;
  font-weight: 700;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.service-box-link:hover {
  color: #7A6200;
  gap: .55rem;
}

/* ============================================================
   SECTION: TWO SHOWCASES SIDE BY SIDE (Web Dev & App Dev)
   ============================================================ */
.showcase-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.showcase-card h2 {
  font-size: 1.85rem;
  margin-bottom: .75rem;
}
.showcase-card p {
  font-size: .95rem;
  margin-bottom: 1.25rem;
}
.showcase-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.5rem;
}
.showcase-media-wrap {
  margin-top: 1.75rem;
  position: relative;
  background: #EAEBED;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  overflow: hidden;
  border: 1px solid #DCDFE4;
}
.showcase-media-wrap img {
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: auto;
  display: block;
}
.showcase-tag-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--white);
  padding: .35rem .75rem;
  border-radius: var(--radius-xs);
  font-size: .7rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  border: 1px solid var(--border);
}

/* ============================================================
   SECTION: NUREX PRODUCTS ("Products we're building ourselves.")
   ============================================================ */
.nurex-products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.product-horizontal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.5rem;
  align-items: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.product-horizontal-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #CBD5E1;
}
.product-horizontal-info h3 {
  font-size: 1.4rem;
  margin-bottom: .25rem;
}
.product-tagline-text {
  font-size: .85rem;
  font-weight: 600;
  color: #4B5563;
  margin-bottom: .65rem;
}
.product-horizontal-info p {
  font-size: .85rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}
.product-pills-list {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: 1.25rem;
}
.product-thumb-box {
  background: #FFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: .5rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.product-thumb-box img {
  border-radius: 4px;
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: top;
}

/* ============================================================
   SECTION: AI CREATIVE ("Ideas in Motion." - STRONG BLACK)
   ============================================================ */
.ai-creative-black-section {
  background: #0D0D0D;
  color: var(--white);
  padding-block: 5.5rem;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}
.ai-creative-black-section h2 {
  color: var(--white);
}
.ai-creative-black-section p {
  color: #A3A3A3;
}

.ai-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.ai-video-card {
  background: #171717;
  border: 1px solid #282828;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.ai-video-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
}

.ai-video-thumb {
  position: relative;
  aspect-ratio: 4/3;
  background: #000;
  overflow: hidden;
}
.ai-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur) var(--ease);
}
.ai-video-card:hover .ai-video-thumb img {
  transform: scale(1.05);
}

.ai-play-btn-circle {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.5);
  transition: transform var(--dur) var(--ease), background var(--dur);
}
.ai-video-card:hover .ai-play-btn-circle {
  transform: scale(1.1);
  background: var(--yellow);
}

.ai-card-caption {
  padding: 1rem;
}
.ai-card-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .25rem;
}
.ai-card-tag {
  font-size: .72rem;
  color: #9E9E9E;
  font-weight: 500;
}

/* ============================================================
   SECTION: PROCESS & WHY NUREX (TWO-COLUMN SPLIT ROW)
   ============================================================ */
.process-why-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}

/* Process Steps 01 -> 02 -> 03 -> 04 */
.process-steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
  margin-top: 2rem;
  position: relative;
}
.process-step-node {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  transition: border-color var(--dur);
}
.process-step-node:hover {
  border-color: var(--yellow);
}
.process-circle-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .85rem;
  margin-bottom: .85rem;
}
.process-step-node h4 {
  font-size: .95rem;
  margin-bottom: .35rem;
}
.process-step-node p {
  font-size: .75rem;
  line-height: 1.45;
  margin: 0;
}

/* Why Nurex 4 Boxes */
.why-nurex-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.why-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: border-color var(--dur);
}
.why-box:hover {
  border-color: var(--yellow);
}
.why-icon {
  color: #8A7000;
  margin-bottom: .6rem;
}
.why-box h4 {
  font-size: .95rem;
  margin-bottom: .3rem;
}
.why-box p {
  font-size: .8rem;
  line-height: 1.45;
  margin: 0;
}

/* ============================================================
   SECTION: FINAL CTA (LARGE NUREX YELLOW BANNER)
   ============================================================ */
.final-yellow-banner-section {
  padding-block: 0;
  margin-bottom: 5.5rem;
}
.final-yellow-banner {
  background: var(--yellow);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(255,210,31,.25);
}
/* Diagonal yellow graphic stripes on the right */
.banner-stripes-bg {
  position: absolute;
  right: -20px;
  top: -20px;
  bottom: -20px;
  width: 180px;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,.25),
    rgba(255,255,255,.25) 16px,
    transparent 16px,
    transparent 32px
  );
  pointer-events: none;
}

.banner-content-left {
  flex: 1;
}
.banner-content-left h2 {
  color: var(--black);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
}

.banner-content-mid {
  flex: 1.2;
}
.banner-content-mid p {
  color: rgba(0,0,0,.8);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
}

.banner-action-right {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

/* ============================================================
   FOOTER (CLEAN WHITE FOOTER MATCHING REFERENCE)
   ============================================================ */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
  color: var(--text);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand-side p {
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: .85rem;
  max-width: 250px;
  line-height: 1.6;
}
.footer-brand-side .sub-tagline {
  font-size: .75rem;
  font-weight: 700;
  color: #7A6200;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .5rem;
}

.footer-col-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.15rem;
}
.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.footer-links-col a {
  font-size: .85rem;
  color: var(--text-muted);
}
.footer-links-col a:hover {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.footer-social-icons a {
  color: #4B5563;
  transition: color var(--dur), transform var(--dur);
}
.footer-social-icons a:hover {
  color: var(--black);
  transform: translateY(-1px);
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: .825rem;
  color: var(--text-muted);
  margin: 0;
}
.footer-tagline-right {
  font-size: .825rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.footer-tagline-right span {
  width: 20px;
  height: 2px;
  background: var(--yellow);
  display: inline-block;
}

/* ============================================================
   PAGE HERO (For Inner Pages)
   ============================================================ */
.page-hero {
  background: var(--hero-bg);
  color: var(--white);
  padding-block: 4rem 4.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.page-hero h1 {
  color: var(--white);
}
.page-hero p {
  color: #9EA3AB;
}

/* ============================================================
   FORMS (Contact Page)
   ============================================================ */
.form-group { margin-bottom: 1.35rem; }
.form-label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: var(--text);
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  background: var(--white);
  color: var(--text);
  transition: border-color var(--dur), box-shadow var(--dur);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,210,31,.25);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-select { appearance: none; }
.form-select-wrap { position: relative; }
.form-select-wrap::after {
  content: '▼';
  font-size: .65rem;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.form-error {
  color: #DC2626;
  font-size: .8rem;
  margin-top: .35rem;
  display: none;
}
.form-group.has-error .form-input,
.form-group.has-error .form-textarea,
.form-group.has-error .form-select { border-color: #DC2626; }
.form-group.has-error .form-error { display: block; }

/* ============================================================
   ACCESSIBILITY & UTILITIES
   ============================================================ */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border-width: 0;
}

*:focus-visible {
  outline: 2.5px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.fade-in-up.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in-up { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   SERVICES REDESIGN COMPONENTS (COMPACT & ART-DIRECTED)
   ============================================================ */

/* --- 1. Compact Services Hero (~420-480px tall) --- */
.services-hero-compact {
  background: #0D0D0D;
  color: var(--white);
  padding-block: 4.5rem 4.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}
.services-hero-compact::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -50px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 210, 31, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.services-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}
.services-hero-content h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 4.2vw, 3.35rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1rem;
}
.services-hero-sub {
  color: #A1A1AA;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 2rem;
}

/* Abstract Nurex Studio Visual Card */
.abstract-studio-card {
  background: #151518;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}
.abstract-studio-card::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255, 210, 31, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.studio-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.25rem;
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.studio-pulse-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #34D399;
}
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
}
.studio-spec-id {
  color: #71717A;
  font-family: monospace;
}
.studio-matrix-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.matrix-node {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  transition: border-color var(--dur), background var(--dur);
}
.matrix-node:hover {
  border-color: rgba(255, 210, 31, 0.4);
  background: rgba(255, 255, 255, 0.06);
}
.matrix-num {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--yellow);
  font-family: monospace;
  margin-bottom: 0.25rem;
}
.matrix-title {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.15rem;
}
.matrix-desc {
  font-size: 0.7rem;
  color: #9CA3AF;
  line-height: 1.35;
}
.studio-footer-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.7rem;
  color: #A1A1AA;
}
.studio-footer-strip span {
  color: var(--yellow);
  font-weight: 700;
}

/* --- 2. Services Overview Grid (4 Columns, ~260-280px tall) --- */
.services-overview-section {
  padding-block: 4.5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.overview-4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.overview-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  text-decoration: none;
  color: var(--text);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur);
}
.overview-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.overview-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.overview-icon-box {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--yellow);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.overview-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: #8A7000;
  font-family: monospace;
}
.overview-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
  color: var(--text);
}
.overview-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.overview-card-link {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--dur);
}
.overview-card:hover .overview-card-link {
  color: #7A6200;
  gap: 0.55rem;
}

/* --- 3. Alternating Two-Column Service Deep Dives --- */
.service-split-section {
  padding-block: 4.5rem;
  border-bottom: 1px solid var(--border);
}
.service-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.service-split-grid.reverse > .split-media-col {
  order: 1;
}
.service-split-grid.reverse > .split-text-col {
  order: 2;
}

.split-text-col h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.85rem;
}
.split-text-col > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

/* Compact Check / Service List */
.compact-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1rem;
  margin-bottom: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.compact-check-item {
  font-size: 0.835rem;
  font-weight: 600;
  color: #1F2937;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.compact-check-item svg {
  color: #7A6200;
  flex-shrink: 0;
}

/* Tech Tags */
.tech-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.tech-tag {
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  font-size: 0.78rem;
  font-weight: 700;
  color: #374151;
}

/* Browser Frame Mockup */
.browser-frame {
  background: #18181B;
  border: 1px solid #27272A;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.18);
  position: relative;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 9px 14px;
  background: #222226;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.browser-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.browser-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}
.browser-dot.red { background: #EF4444; }
.browser-dot.yellow { background: #F59E0B; }
.browser-dot.green { background: #10B981; }
.browser-address {
  flex: 1;
  max-width: 280px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.35);
  color: #9CA3AF;
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 6px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: monospace;
}
.browser-body {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #0E0E10;
}
.browser-body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* Floating Badges on Mockups */
.mockup-badge-floating {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 10;
  background: rgba(18, 18, 20, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 7px 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mockup-badge-floating .badge-label {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.mockup-badge-floating .badge-title {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--white);
}

/* Phone Frame Mockup */
.phone-frame-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-frame {
  width: 100%;
  max-width: 310px;
  background: #18181B;
  border: 8px solid #27272A;
  border-radius: 36px;
  padding: 10px 8px 12px;
  box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.25);
  position: relative;
}
.phone-notch {
  width: 60px;
  height: 10px;
  background: #000;
  border-radius: 10px;
  margin: 0 auto 8px;
}
.phone-body {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 9/16;
  max-height: 430px;
  background: #0E0E10;
  position: relative;
}
.phone-body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.phone-badge-floating {
  position: absolute;
  bottom: 24px;
  right: -16px;
  z-index: 10;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.phone-badge-floating .badge-label {
  font-size: 0.65rem;
  font-weight: 800;
  color: #7A6200;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.phone-badge-floating .badge-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--black);
}

/* --- 4. AI Creative 40/60 Split Section --- */
.ai-creative-split-section {
  background: #0D0D0D;
  color: var(--white);
  padding-block: 4.75rem;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}
.ai-creative-split-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}
.ai-creative-split-grid h2 {
  color: var(--white);
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.85rem;
}
.ai-creative-split-grid p {
  color: #A3A3A3;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.ai-notice-box {
  background: rgba(255, 210, 31, 0.08);
  border: 1px solid rgba(255, 210, 31, 0.25);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  color: #E5E7EB;
  line-height: 1.45;
}
.ai-notice-box strong {
  color: var(--yellow);
}

.ai-2x2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.ai-video-card-compact {
  background: #171717;
  border: 1px solid #282828;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.ai-video-card-compact:hover {
  transform: translateY(-3px);
  border-color: var(--yellow);
}
.ai-video-thumb-compact {
  position: relative;
  aspect-ratio: 4/3;
  background: #000;
  overflow: hidden;
}
.ai-video-thumb-compact img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur) var(--ease);
  display: block;
}
.ai-video-card-compact:hover .ai-video-thumb-compact img {
  transform: scale(1.04);
}
.ai-play-btn-compact {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: transform var(--dur) var(--ease), background var(--dur);
}
.ai-video-card-compact:hover .ai-play-btn-compact {
  transform: scale(1.1);
  background: var(--yellow);
}
.ai-caption-compact {
  padding: 0.85rem;
}
.ai-title-compact {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.ai-tag-compact {
  font-size: 0.68rem;
  color: #9CA3AF;
  font-weight: 500;
}

/* --- 5. Digital Products Compact Grid --- */
.digital-products-compact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

/* --- 6. Process 5-Step Grid --- */
.process-5-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2.25rem;
}
.process-step-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  transition: border-color var(--dur), transform var(--dur);
}
.process-step-box:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
}
.process-step-num-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  margin-bottom: 0.85rem;
}
.process-step-box h4 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}
.process-step-box p {
  font-size: 0.775rem;
  line-height: 1.45;
  color: var(--text-muted);
  margin: 0;
}

/* --- 7. Benefits 4-Grid --- */
.benefits-4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.2rem;
  transition: border-color var(--dur), transform var(--dur);
}
.benefit-card:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
}
.benefit-icon {
  color: #8A7000;
  margin-bottom: 0.75rem;
}
.benefit-card h4 {
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}
.benefit-card p {
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--text-muted);
  margin: 0;
}

/* --- 8. Who We Can Help 4-Grid --- */
.who-help-4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.help-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.2rem;
  transition: border-color var(--dur), transform var(--dur);
}
.help-card:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
}
.help-card-tag {
  font-size: 0.7rem;
  font-weight: 800;
  color: #7A6200;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.help-card h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}
.help-card p {
  font-size: 0.825rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   PRODUCTS PAGE REDESIGN COMPONENTS
   ============================================================ */

/* --- 1. Products Hero & Dual-Product Mockup Composition --- */
.products-hero-compact {
  background: #0D0D0D;
  color: var(--white);
  padding-block: 4.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}
.products-hero-compact::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 210, 31, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.products-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}
.products-hero-content h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 4.2vw, 3.35rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1rem;
}
.products-hero-content h1 .highlight-yellow {
  color: var(--yellow);
}
.products-hero-sub {
  color: #A1A1AA;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 2rem;
}

/* Dual Product Mockup Showcase (Real Screenshots - Flat & Undistorted) */
.hero-dual-mockup-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  height: 330px;
}
.hero-mockup-back {
  position: absolute;
  top: 0;
  right: 0;
  width: 86%;
  z-index: 1;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.hero-mockup-back:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.55);
  z-index: 3;
}
.hero-mockup-front {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 88%;
  z-index: 2;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.7);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.hero-mockup-front:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.8);
}

/* Product-specific Browser Body matching real 2.3:1 panoramic screenshots */
.product-browser-body {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/7.5;
  background: #0E0E10;
}
.product-browser-body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* Product Section Badges & Text Styling */
.product-badge-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.product-badge-yellow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-xs);
  background: var(--yellow-light);
  border: 1px solid var(--yellow-border);
  font-size: 0.72rem;
  font-weight: 800;
  color: #7A6200;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.product-showcase-title {
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}
.product-showcase-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #7A6200;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}
.product-showcase-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.product-feature-tagline {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  font-style: italic;
  margin-bottom: 0.75rem;
}
.product-specs-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #374151;
  padding: 0.35rem 0.85rem;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  border-radius: 99px;
  margin-bottom: 1.5rem;
}

/* --- 2. Product Comparison / Overview Cards --- */
.comparison-2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
.comparison-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur);
}
.comparison-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}
.comparison-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  gap: 1rem;
}
.comparison-header-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}
.comparison-header-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.comparison-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-block: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.comparison-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #374151;
  line-height: 1.45;
}
.comparison-check-item strong {
  color: var(--black);
}
.comparison-check-item svg {
  color: #7A6200;
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- 3. Why We Build Products (Black Section) --- */
.why-products-black-section {
  background: #0D0D0D;
  color: var(--white);
  padding-block: 4.75rem;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}
.why-products-black-section h2 {
  color: var(--white);
}
.why-products-black-section p.sub {
  color: #A3A3A3;
  max-width: 600px;
  margin-top: 0.4rem;
}
.principles-3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.principle-card {
  background: #161618;
  border: 1px solid #282828;
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  transition: border-color var(--dur), transform var(--dur);
}
.principle-card:hover {
  border-color: var(--yellow);
  transform: translateY(-3px);
}
.principle-num {
  font-size: 0.825rem;
  font-weight: 800;
  color: var(--yellow);
  font-family: monospace;
  margin-bottom: 0.85rem;
}
.principle-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.45rem;
  letter-spacing: 0.02em;
}
.principle-card p {
  font-size: 0.85rem;
  color: #A1A1AA;
  line-height: 1.55;
  margin: 0;
}

/* --- 4. Process (4 Steps) --- */
.process-4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.25rem;
}

/* --- 5. What's Next Future Products --- */
.future-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.25rem;
}
.future-product-card {
  background: var(--bg-card);
  border: 1.5px dashed #D1D5DB;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: border-color var(--dur), transform var(--dur);
}
.future-product-card:hover {
  border-color: #9CA3AF;
  transform: translateY(-2px);
}
.future-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.future-product-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.future-product-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* --- 6. Connection to Services Bridge --- */
.services-bridge-banner {
  background: #111113;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  margin-top: 4rem;
  color: var(--white);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}
.services-bridge-content h3 {
  color: var(--white);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 800;
  margin-bottom: 0.35rem;
}
.services-bridge-content p {
  color: #A1A1AA;
  font-size: 0.95rem;
  margin: 0;
  max-width: 520px;
}
.services-bridge-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ============================================================
   ABOUT PAGE REDESIGN COMPONENTS (EDITORIAL & ART-DIRECTED)
   ============================================================ */

/* --- 01. About Hero & Geometric Abstract Composition --- */
.about-hero-compact {
  background: #0D0D0D;
  color: var(--white);
  padding-block: 4.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}
.about-hero-compact::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -50px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 210, 31, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}
.about-hero-content h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 4.2vw, 3.35rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1rem;
}
.about-hero-sub {
  color: #A1A1AA;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 520px;
  margin: 0;
}

/* Tasteful Abstract Geometric Visual Composition for About Hero */
.about-abstract-composition {
  background: #151518;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}
.about-abstract-composition::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255, 210, 31, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.abstract-geo-grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.25rem;
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #A1A1AA;
}
.abstract-geo-body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.abstract-geo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  transition: border-color var(--dur);
}
.abstract-geo-row:hover {
  border-color: rgba(255, 210, 31, 0.4);
}
.abstract-geo-tag {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--yellow);
  font-family: monospace;
}
.abstract-geo-val {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
}

/* --- 02. Big Brand Statement --- */
.brand-statement-section {
  padding-block: 5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.brand-statement-inner {
  max-width: 860px;
  margin-inline: auto;
}
.statement-headline {
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--black);
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}
.statement-headline .highlight-yellow-word {
  color: #8A7000;
  position: relative;
  display: inline-block;
}
.statement-headline .highlight-yellow-word::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(255, 210, 31, 0.35);
  z-index: -1;
  border-radius: 2px;
}
.statement-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 680px;
  margin-inline: auto;
}

/* --- 03. Who We Are (Two-Column with Divider Marker) --- */
.who-we-are-section {
  padding-block: 4.75rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.who-we-are-grid {
  display: grid;
  grid-template-columns: 0.85fr auto 1.15fr;
  gap: 3.5rem;
  align-items: center;
}
.who-left-col h2 {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-top: 0.35rem;
}
.who-divider-line {
  width: 2px;
  height: 180px;
  background: var(--yellow);
  border-radius: 99px;
}
.who-right-col {
  max-width: 620px;
}
.who-right-col p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 1.15rem;
}
.who-right-col p:last-child {
  margin-bottom: 0;
}

/* --- 04. Philosophy Dark Section --- */
.philosophy-dark-section {
  background: #0D0D0D;
  color: var(--white);
  padding-block: 4.75rem;
  border-bottom: 1px solid #222;
}
.philosophy-dark-section h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.4vw, 2.65rem);
  margin-top: 0.35rem;
}
.philosophy-dark-section p.sub {
  color: #A3A3A3;
  font-size: 1.05rem;
  max-width: 580px;
  margin-top: 0.35rem;
}
.philosophy-3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.75rem;
}
.philosophy-card {
  background: #161618;
  border: 1px solid #262626;
  border-radius: var(--radius-md);
  padding: 1.85rem 1.5rem;
  transition: border-color var(--dur), transform var(--dur);
}
.philosophy-card:hover {
  border-color: var(--yellow);
  transform: translateY(-3px);
}
.philosophy-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--yellow);
  font-family: monospace;
  margin-bottom: 0.85rem;
}
.philosophy-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.45rem;
  letter-spacing: 0.02em;
}
.philosophy-card p {
  font-size: 0.85rem;
  color: #A1A1AA;
  line-height: 1.55;
  margin: 0;
}

/* --- 05. Values 2x2 Grid --- */
.values-2x2-section {
  padding-block: 4.75rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.values-2x2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.value-card-box {
  min-height: 260px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur);
}
.value-card-box:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.value-card-top-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: #7A6200;
  font-family: monospace;
  margin-bottom: 1rem;
}
.value-card-box h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.value-card-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* --- 06. How We Build Dark Section & Timeline --- */
.how-we-build-dark-section {
  background: #0D0D0D;
  color: var(--white);
  padding-block: 4.75rem;
  border-bottom: 1px solid #222;
}
.how-we-build-dark-section h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.4vw, 2.65rem);
}
.timeline-horizontal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.75rem;
  position: relative;
}
.timeline-step-node {
  background: #161618;
  border: 1px solid #262626;
  border-radius: var(--radius-md);
  padding: 1.6rem 1.35rem;
  position: relative;
  transition: border-color var(--dur), transform var(--dur);
}
.timeline-step-node:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
}
.timeline-step-arrow {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--yellow);
  font-size: 1.1rem;
  font-weight: 800;
  z-index: 2;
}
.timeline-circle-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  margin-bottom: 0.85rem;
}
.timeline-step-node h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.35rem;
  letter-spacing: 0.04em;
}
.timeline-step-node p {
  font-size: 0.8rem;
  line-height: 1.45;
  color: #A1A1AA;
  margin: 0;
}

/* --- 07. About Page Products Showcase --- */
.about-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.75rem;
}
.about-product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.about-product-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
  box-shadow: var(--shadow-md);
}
.about-product-preview {
  background: #F3F4F6;
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 1.25rem 0;
}
.about-product-browser {
  background: #FFF;
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
  border: 1px solid var(--border);
  border-bottom: none;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.about-product-browser .browser-bar {
  padding: 0.5rem 0.75rem;
  background: #FAFAFA;
  border-bottom: 1px solid #ECECEC;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.about-product-browser .browser-address {
  font-size: 0.725rem;
  color: #6B7280;
  background: #FFF;
  border: 1px solid #E5E7EB;
  padding: 2px 10px;
  border-radius: 4px;
  font-family: monospace;
}
.about-product-screen {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  overflow: hidden;
}
.about-product-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.about-product-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.about-product-tag-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.about-product-body h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.about-product-body p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.about-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.about-product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
  transition: color var(--dur);
}
.about-product-link:hover {
  color: #7A6500;
}

/* --- 09. What's Next 3-Grid --- */
.whats-next-section {
  padding-block: 5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.whats-next-3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.75rem;
}
.whats-next-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.whats-next-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
  box-shadow: var(--shadow-md);
}
.whats-next-card-num {
  font-size: 0.8rem;
  font-weight: 800;
  color: #8A7000;
  font-family: monospace;
  margin-bottom: 1rem;
}
.whats-next-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--black);
}
.whats-next-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}




