/* ==========================================================================
   SUNNY HR - VERSION 2: MODERN EDITORIAL STYLE SYSTEM
   Features: Minimalist Refracting Glass, Flat Bento Grids, Asymmetric Grids,
             Magnetic Element Rules, Staggered Video Stages, SVG Hover Beams.
   ========================================================================== */

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

:root {
  /* Warm Sunset & Premium Gold Variables */
  --primary-hsl: 26, 100%, 50%;     /* Sunset Orange #ff6f00 */
  --secondary-hsl: 35, 100%, 60%;   /* Warm Peach #ff9f2f */
  --accent-hsl: 42, 100%, 50%;      /* Sunny Amber #ffb300 */
  --success-hsl: 142, 70%, 45%;     /* Growth Teal #22c55e */
  --rose-hsl: 343, 100%, 75%;       /* Soft Rose Aura */
  
  /* Luminous Light Pearl Palette */
  --bg-space: #fffdfb;              /* Cozy sun-kissed warm canvas */
  --bg-void: #ffffff;               /* Solid card backs */
  --bg-secondary: #fff8f2;          /* Cozy peach-cream section fill */
  --bg-card: rgba(255, 255, 255, 0.72); /* Refracting frosted glass */
  
  /* Deep Organic Typographic Contrast */
  --text-main: #2d221a;             /* Warm espresso-charcoal (supreme legibility) */
  --text-muted: #625348;            /* Soft roasted coffee slate */
  --text-light: #908072;            /* Pale earth brown */
  --text-white: #ffffff;
  
  /* Premium Minimalist Flat Borders */
  --glass-border: rgba(255, 111, 0, 0.06);
  --glass-border-warm: rgba(255, 111, 0, 0.12);
  --border-color: rgba(255, 111, 0, 0.04);
  
  /* Flat and Soft Shadows (Zero Heavy Outdated Shadows) */
  --shadow-sm: 0 2px 8px rgba(45, 34, 26, 0.01);
  --shadow-md: 0 12px 28px -6px rgba(255, 111, 0, 0.03);
  --shadow-lg: 0 24px 48px -12px rgba(255, 111, 0, 0.05);
  
  /* Spacing & Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  /* Fonts */
  --font-headers: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Easing & Precision Motion Curves */
  --ease-editorial: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.15s var(--ease-editorial);
  --transition-normal: 0.35s var(--ease-editorial);
  --transition-slow: 0.6s var(--ease-editorial);
}

/* ==========================================================================
   RESET & EDITORIAL SYSTEM BASE
   ========================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-space);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-space);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  accent-color: hsl(var(--primary-hsl));
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headers);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-main);
  letter-spacing: -0.03em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Section Spacers */
section {
  padding: 9rem 0;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
}

@media (max-width: 768px) {
  section { padding: 6rem 0; }
  .container { padding: 0 1.5rem; }
}

/* Fixed Background Glow Canvas */
.ambient-glow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  pointer-events: none;
  overflow: hidden;
  background-color: var(--bg-space);
}

.ambient-glow-blob {
  position: absolute;
  width: 60vw;
  height: 60vw;
  filter: blur(140px);
  opacity: 0.72;
  border-radius: 50%;
  will-change: transform;
}

.glow-warm-orange {
  top: -15%;
  right: -10%;
  background: radial-gradient(circle, hsla(var(--primary-hsl), 0.22) 0%, transparent 75%);
  animation: float-glow-1 25s ease-in-out infinite;
}

.glow-warm-amber {
  bottom: -20%;
  left: -10%;
  background: radial-gradient(circle, hsla(var(--accent-hsl), 0.16) 0%, transparent 75%);
  animation: float-glow-2 28s ease-in-out infinite;
}

@keyframes float-glow-1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5vw, 6vh) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes float-glow-2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-5vw, -6vh) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}

/* ==========================================================================
   BILINGUAL CONTROLS
   ========================================================================== */
body.lang-de .lang-en { display: none !important; }
body.lang-en .lang-de { display: none !important; }
body.lang-de span.lang-en, body.lang-de em.lang-en, body.lang-de strong.lang-en { display: none !important; }
body.lang-en span.lang-de, body.lang-en em.lang-de, body.lang-en strong.lang-de { display: none !important; }

/* ==========================================================================
   SCROLL REVEAL (CLEAN SLIDE UP)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   LAYOUT MODULES (TITLES, FLAT GLASS CARDS & BUTTONS)
   ========================================================================== */

.section-tag {
  display: inline-block;
  font-family: var(--font-headers);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: hsl(var(--primary-hsl));
  background-color: hsla(var(--primary-hsl), 0.06);
  padding: 0.35rem 1.15rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  border: 1px solid hsla(var(--primary-hsl), 0.08);
}

.section-title {
  font-size: 3.5rem;
  font-weight: 850;
  margin-bottom: 1.25rem;
  letter-spacing: -0.04em;
  color: var(--text-main);
  line-height: 1.1;
}

.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, hsl(var(--primary-hsl)) 20%, hsl(var(--secondary-hsl)) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 4rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .section-title { font-size: 2.5rem; }
  .section-desc { font-size: 1rem; margin-bottom: 3rem; }
}

/* Modern Flat Glass Refracting Cards (No heavy shadows or 3D tilt overrides) */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.glass-card:hover {
  border-color: hsla(var(--primary-hsl), 0.25);
  box-shadow: var(--shadow-lg);
}

/* Premium Elastic Micro-Interaction Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.25, 1.25, 0.5, 1), box-shadow var(--transition-normal), background-color var(--transition-normal), color var(--transition-normal);
  position: relative;
  gap: 0.65rem;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, hsl(var(--primary-hsl)), hsl(var(--secondary-hsl)));
  color: var(--text-white);
  box-shadow: 0 4px 15px hsla(var(--primary-hsl), 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px hsla(var(--primary-hsl), 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border: 1.5px solid var(--text-main);
}

.btn-secondary:hover {
  background-color: var(--text-main);
  color: var(--bg-space);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.15);
}

.btn-whatsapp:hover {
  background: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

.btn:active {
  transform: scale(0.95) translateY(0);
  transition: transform 0.08s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.btn-sm { padding: 0.65rem 1.45rem; font-size: 0.85rem; }
.btn-lg { padding: 1.15rem 2.5rem; font-size: 1.05rem; }

/* ==========================================================================
   HEADER & NAVIGATION (Sleek Minimal Glass Bar)
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  background: rgba(255, 253, 251, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 100;
  transition: background var(--transition-normal), box-shadow var(--transition-normal);
}

.header.shrunk {
  background: rgba(255, 253, 251, 0.92);
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo img {
  height: 34px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(11%) sepia(21%) saturate(980%) hue-rotate(345deg) brightness(97%) contrast(92%);
  transition: filter var(--transition-fast), transform var(--transition-normal);
}

.logo:hover img {
  filter: invert(47%) sepia(93%) saturate(3015%) hue-rotate(15deg) brightness(101%) contrast(101%);
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
  padding: 0.4rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: hsl(var(--primary-hsl));
  transition: width var(--transition-normal), left var(--transition-normal);
  border-radius: var(--radius-full);
}

.nav-links a:hover {
  color: var(--text-main);
}
.nav-links a:hover::after { width: 100%; left: 0; }

.nav-links a.active {
  color: var(--text-main);
}
.nav-links a.active::after {
  width: 100%;
  left: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Bilingual switcher */
.lang-switch {
  display: flex;
  align-items: center;
  background-color: rgba(255, 111, 0, 0.04);
  padding: 3px;
  border-radius: var(--radius-full);
  position: relative;
  cursor: pointer;
  user-select: none;
  border: 1px solid rgba(255, 111, 0, 0.02);
  transition: outline 0.15s ease-in-out;
}

.lang-switch:focus-visible {
  outline: 2px solid hsl(var(--primary-hsl));
  outline-offset: 2px;
}

.lang-switch span {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  z-index: 2;
  transition: color var(--transition-fast);
}

.lang-switch .active-bg {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  background: linear-gradient(135deg, hsl(var(--primary-hsl)), hsl(var(--secondary-hsl)));
  border-radius: var(--radius-full);
  z-index: 1;
  transition: transform var(--transition-bounce);
  box-shadow: 0 1px 6px hsla(var(--primary-hsl), 0.15);
}

body.lang-en .lang-switch .active-bg { transform: translateX(100%); }
body.lang-de .lang-switch .de { color: var(--text-white); }
body.lang-de .lang-switch .en { color: var(--text-muted); }
body.lang-en .lang-switch .de { color: var(--text-muted); }
body.lang-en .lang-switch .en { color: var(--text-white); }

/* Hamburger menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--text-main);
  margin: 5px 0;
  transition: var(--transition-fast);
  border-radius: 1px;
}

.menu-toggle.open span:nth-child(1) { transform: rotate(-45deg) translate(-4px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(45deg) translate(-4px, -5px); }

@media (max-width: 992px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 76px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 76px);
    background-color: rgba(255, 253, 251, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 3.5rem 2rem;
    gap: 2.5rem;
    transition: left var(--transition-normal);
    align-items: center;
    border-top: 1px solid var(--glass-border);
  }
  .nav-links.open { left: 0; }
}

/* ==========================================================================
   HERO SECTION (ASYMMETRIC SPLIT-GRID)
   ========================================================================== */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-tag {
  font-family: var(--font-headers);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: hsl(var(--primary-hsl));
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
}

.hero-tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: hsl(var(--accent-hsl));
}

.hero-title {
  font-size: 4.25rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.hero-title .highlight {
  background: linear-gradient(135deg, hsl(var(--primary-hsl)) 0%, hsl(var(--secondary-hsl)) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.h1-inline-face {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid hsl(var(--primary-hsl));
  vertical-align: middle;
  margin: 0 0.25rem;
  transform: translateY(-2px);
  background: var(--bg-card);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-fast) var(--ease-editorial);
}

.h1-inline-face:hover {
  transform: translateY(-4px) scale(1.1);
}

.h1-inline-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 580px;
  line-height: 1.7;
}

.hero-social-proof-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  background: rgba(255, 111, 0, 0.03);
  border: 1.5px dashed rgba(255, 111, 0, 0.2);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  align-self: flex-start;
  max-width: fit-content;
}

.hero-social-proof-strip .avatar-group {
  display: flex;
  align-items: center;
}

.hero-social-proof-strip .avatar-group img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-card);
  margin-left: -10px;
  object-fit: cover;
}

.hero-social-proof-strip .avatar-group img:first-child {
  margin-left: 0;
}

.hero-social-proof-strip .social-proof-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.hero-social-proof-strip .stars {
  color: #fbbf24;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

.hero-social-proof-strip p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.hero-social-proof-strip strong {
  color: var(--text-main);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Redesign Relocation Console (Right Column) - Zero 3D Tilt, Flat Glass System */
.hero-visual {
  position: relative;
  width: 100%;
}

.console-card {
  background: var(--bg-card);
  border: 1.5px solid var(--glass-border-warm);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: border-color var(--transition-normal);
}

.console-card:hover {
  border-color: hsla(var(--primary-hsl), 0.3);
}

.console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
}

.console-dots {
  display: flex;
  gap: 6px;
}

.console-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-light);
  opacity: 0.4;
}

.console-dots span:nth-child(1) { background: hsl(var(--primary-hsl)); opacity: 1; }

.console-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.console-badge {
  font-family: var(--font-headers);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  color: hsl(var(--success-hsl));
  background: hsla(var(--success-hsl), 0.08);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid hsla(var(--success-hsl), 0.1);
}

.console-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.console-subcard {
  background: var(--bg-void);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition-fast);
}

.console-subcard:hover {
  border-color: hsla(var(--primary-hsl), 0.15);
}

.subcard-meta {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}

.subcard-meta span:not(.progress-val) {
  color: var(--text-muted);
}

.progress-val {
  color: hsl(var(--primary-hsl));
}

.progress-track {
  width: 100%;
  height: 5px;
  background: rgba(255, 111, 0, 0.04);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 0.6rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(to right, hsl(var(--primary-hsl)), hsl(var(--secondary-hsl)));
  border-radius: var(--radius-full);
  transition: width 0.8s var(--ease-editorial);
}

.status-log-message {
  font-family: var(--font-headers);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.status-log-message::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: hsl(var(--primary-hsl));
}

.console-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.console-subcard h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.subcard-val {
  font-family: var(--font-headers);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.console-icon {
  width: 24px;
  height: 24px;
  color: hsl(var(--primary-hsl));
  margin-bottom: 0.6rem;
}

.console-icon svg {
  width: 100%;
  height: 100%;
}

.match-badge, .flight-badge {
  font-family: var(--font-headers);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  align-self: flex-start;
}

.match-badge {
  background: hsla(var(--success-hsl), 0.08);
  color: hsl(var(--success-hsl));
  border: 1px solid hsla(var(--success-hsl), 0.1);
}

.flight-badge {
  background: rgba(255, 111, 0, 0.06);
  color: hsl(var(--primary-hsl));
  border: 1px solid rgba(255, 111, 0, 0.1);
}

.subcard-cluster .avatars-preview {
  display: flex;
  align-items: center;
  margin-top: 0.4rem;
}

.subcard-cluster .avatars-preview img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-void);
  margin-left: -8px;
}

.subcard-cluster .avatars-preview img:first-child { margin-left: 0; }

.avatar-plus {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 111, 0, 0.06);
  color: hsl(var(--primary-hsl));
  border: 1px solid rgba(255, 111, 0, 0.1);
  font-family: var(--font-headers);
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
}

.console-nurse-portrait-card {
  position: absolute;
  bottom: -2.5rem;
  left: -3rem;
  width: 340px;
  background: var(--bg-card);
  border: 1.5px solid var(--glass-border-warm);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  gap: 1.25rem;
  box-shadow: var(--shadow-xl);
  z-index: 10;
  transition: transform 0.4s var(--ease-editorial), border-color var(--transition-normal);
  border-left: 4px solid hsl(var(--primary-hsl));
}

.console-nurse-portrait-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: hsla(var(--primary-hsl), 0.4);
}

.nurse-portrait-photo-box {
  position: relative;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}

.nurse-portrait-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-color);
}

.nurse-portrait-country-flag {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 24px;
  height: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
}

.nurse-portrait-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nurse-portrait-meta h3 {
  font-family: var(--font-headers);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 0.15rem 0;
}

.nurse-portrait-specialty {
  font-size: 0.7rem;
  color: hsl(var(--primary-hsl));
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  display: block;
}

.nurse-portrait-quote {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 4.5rem;
    text-align: center;
  }
  .hero-tag { justify-content: center; }
  .hero-title { font-size: 3rem; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-social-proof-strip { align-self: center; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .console-card { max-width: 500px; margin: 0 auto; }
  .console-nurse-portrait-card {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 480px;
    margin: 1.5rem auto 0 auto;
    box-sizing: border-box;
  }
}

/* ==========================================================================
   TRUST & SOCIAL PROOF BAR
   ========================================================================== */
.trust-bar-section {
  padding: 3.5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-secondary);
  position: relative;
  z-index: 10;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .trust-bar-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
  }
}

.trust-social-proof {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.avatar-group {
  display: flex;
  align-items: center;
}

.avatar-group img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--bg-space);
  margin-left: -12px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-bounce);
}

.avatar-group img:first-child { margin-left: 0; }

.avatar-group img:hover {
  transform: translateY(-4px) scale(1.08);
  z-index: 5;
}

.social-proof-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stars {
  color: #ffb300;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.social-proof-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.social-proof-desc strong {
  color: var(--text-main);
  font-weight: 800;
}

.trust-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 576px) {
  .trust-highlights {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.trust-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: var(--bg-void);
  border: 1px solid var(--border-color);
  transition: transform var(--transition-bounce), border-color var(--transition-fast);
}

.trust-highlight-item:hover {
  transform: translateY(-3px);
  border-color: hsla(var(--primary-hsl), 0.2);
}

.trust-highlight-item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: hsl(var(--success-hsl));
  margin-top: 1px;
}

.trust-highlight-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.15rem;
}

.trust-highlight-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  display: block;
}

/* ==========================================================================
   CINEMATIC KINETIC MARQUEE RIBBON
   ========================================================================== */
.kinetic-marquee {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.85rem 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-move 42s linear infinite;
}

.kinetic-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  gap: 1.5rem;
  padding-right: 1.5rem;
  align-items: center;
}

.marquee-item {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.marquee-bullet {
  color: hsl(var(--primary-hsl));
  font-size: 1.1rem;
}

@keyframes marquee-move {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ==========================================================================
   SLIDING ELIGIBILITY QUIZ (IMMERSIVE FUNNEL)
   ========================================================================== */
.quiz-section {
  background-color: var(--bg-space);
}

.quiz-headline-block {
  text-align: center;
}

.quiz-wrapper {
  margin-top: 4.5rem;
}

.quiz-grid-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4.5rem;
  align-items: stretch;
}

.quiz-slider-side {
  background: var(--bg-void);
  border: 1px solid var(--glass-border-warm);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.quiz-steps-counter {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-headers);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  transition: opacity var(--transition-normal);
}

.quiz-steps-counter .step-txt {
  color: hsl(var(--primary-hsl));
}

.quiz-progress-bar-container {
  width: 100%;
  height: 4px;
  background: rgba(255, 111, 0, 0.04);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.quiz-progress-bar {
  height: 100%;
  background: hsl(var(--primary-hsl));
  width: 20%;
  border-radius: var(--radius-full);
  transition: width var(--transition-slow);
}

.quiz-slider-container {
  width: 100%;
  overflow: hidden;
  flex: 1;
}

.quiz-steps-wrapper {
  display: flex;
  width: 700%; /* 7 modules total */
  transition: transform var(--transition-slow);
}

.quiz-step {
  width: 14.285714%; /* 100 / 7 */
  flex-shrink: 0;
  padding-right: 1.5rem;
}

.quiz-step-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--text-main);
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quiz-options-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 576px) {
  .quiz-options-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-space);
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.quiz-option-indicator {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--text-light);
  background: var(--bg-void);
  flex-shrink: 0;
  position: relative;
  transition: border-color var(--transition-fast);
}

.quiz-option-indicator::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: hsl(var(--primary-hsl));
  transition: transform var(--transition-fast);
}

.quiz-option:hover {
  border-color: hsla(var(--primary-hsl), 0.3);
  transform: translateY(-1px);
}

.quiz-option.selected {
  border-color: hsl(var(--primary-hsl));
  background: var(--bg-secondary);
}

.quiz-option.selected .quiz-option-indicator {
  border-color: hsl(var(--primary-hsl));
}

.quiz-option.selected .quiz-option-indicator::after {
  transform: translate(-50%, -50%) scale(1);
}

.quiz-option-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}

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

.quiz-form-group label {
  font-family: var(--font-headers);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-light);
}

.quiz-form-group input {
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--border-color);
  background: var(--bg-space);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 600;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.quiz-form-group input:focus {
  border-color: hsl(var(--primary-hsl));
  box-shadow: 0 0 0 3px hsla(var(--primary-hsl), 0.08);
}

/* Loader simulated step */
.quiz-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1.5rem;
}

.quiz-loader .spinner {
  width: 48px;
  height: 48px;
  border: 3.5px solid rgba(255, 111, 0, 0.06);
  border-top-color: hsl(var(--primary-hsl));
  border-radius: 50%;
  animation: spinner-spin 0.8s linear infinite;
  margin-bottom: 2rem;
}

@keyframes spinner-spin {
  to { transform: rotate(360deg); }
}

.quiz-loader h3 {
  font-size: 1.4rem;
  font-weight: 850;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

.quiz-loader p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Success module */
.quiz-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
}

.quiz-success-icon {
  width: 60px;
  height: 60px;
  color: hsl(var(--success-hsl));
  margin-bottom: 1.75rem;
}

.quiz-success h3 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 0.85rem;
}

.quiz-success p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  line-height: 1.65;
  max-width: 460px;
}

.quiz-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

/* Recruiter Helper Card (Quiz Right Column) */
.quiz-recruiter-side {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.recruiter-card-glow {
  position: absolute;
  top: 0;
  width: 100%;
  height: 50%;
  background: radial-gradient(circle at 50% 0%, hsla(var(--primary-hsl), 0.04) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.recruiter-avatar-box {
  position: relative;
  width: 110px;
  height: 110px;
  margin-bottom: 1.5rem;
  z-index: 1;
}

.recruiter-avatar-box img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg-void);
  box-shadow: var(--shadow-md);
}

.recruiter-online-badge {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-void);
  border: 1px solid var(--glass-border-warm);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.65rem;
  font-family: var(--font-headers);
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  color: hsl(var(--success-hsl));
  display: flex;
  align-items: center;
  gap: 0.3rem;
  box-shadow: var(--shadow-sm);
}

.recruiter-online-badge .online-dot {
  width: 6px;
  height: 6px;
  background-color: hsl(var(--success-hsl));
  border-radius: 50%;
}

.recruiter-title {
  font-size: 1.25rem;
  font-weight: 850;
  color: var(--text-main);
  margin-bottom: 0.25rem;
  z-index: 1;
}

.recruiter-subtitle {
  font-family: var(--font-headers);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: hsl(var(--primary-hsl));
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  z-index: 1;
}

.recruiter-message {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 2rem;
  z-index: 1;
}

.recruiter-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  width: 100%;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  z-index: 1;
}

.stat-pill {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.stat-pill strong {
  font-family: var(--font-headers);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
}

.stat-pill span {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-light);
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .quiz-grid-layout { grid-template-columns: 1fr; gap: 3.5rem; }
  .quiz-recruiter-side { max-width: 500px; margin: 0 auto; }
}

/* ==========================================================================
   BENEFITS SECTION (EXQUISITE FLAT BENTO GRID)
   ========================================================================== */
.benefits-section {
  background-color: var(--bg-secondary);
}

.benefits-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  margin-top: 4.5rem;
}

.bento-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.bento-card:hover {
  border-color: hsla(var(--primary-hsl), 0.22);
  box-shadow: var(--shadow-md);
}

.bento-card-bg-gradient {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 100% 0%, hsla(var(--primary-hsl), 0.04) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.bento-card-content {
  position: relative;
  z-index: 1;
}

.bento-card-large-1 { grid-column: span 2; }
.bento-card-small-1 { grid-column: span 1; }
.bento-card-small-2 { grid-column: span 1; }
.bento-card-large-2 { grid-column: span 2; }

.bento-two-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 992px) {
  .bento-two-col {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
    gap: 2.5rem;
  }
}

.bento-col-left { flex: 1; }
.bento-col-right { display: flex; justify-content: center; align-items: center; }

.benefit-icon {
  width: 38px;
  height: 38px;
  color: hsl(var(--primary-hsl));
  margin-bottom: 1.5rem;
}

.benefit-icon svg { width: 100%; height: 100%; }

.bento-card h3 {
  font-size: 1.45rem;
  font-weight: 850;
  margin-bottom: 0.85rem;
  color: var(--text-main);
}

.bento-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Internal bento human spotlight cards */
.bento-human-card {
  background: var(--bg-void);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  max-width: 250px;
  width: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-bounce), border-color var(--transition-fast);
}

.bento-card:hover .bento-human-card {
  transform: translateY(-2px) rotate(1deg);
  border-color: hsla(var(--primary-hsl), 0.15);
}

.bento-human-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid hsl(var(--primary-hsl));
  margin: 0 auto 0.85rem auto;
}

.bento-human-quote {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 0.6rem;
}

.bento-human-meta {
  font-family: var(--font-headers);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--text-main);
  text-transform: uppercase;
}

/* B2 dial indicator */
.bento-dial-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 1.75rem;
}

.bento-dial {
  transform: rotate(-90deg);
  width: 80px;
  height: 80px;
}

.dial-bg { stroke: rgba(255, 111, 0, 0.04); }
.dial-fill { transition: stroke-dasharray var(--transition-slow); }

.bento-dial-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-headers);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text-main);
}

/* Helper timeline preview */
.bento-timeline-preview {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tl-node {
  font-family: var(--font-headers);
  font-size: 0.65rem;
  font-weight: 850;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
}

.tl-done { background: rgba(255, 111, 0, 0.04); color: var(--text-light); border: 1px solid var(--border-color); }
.tl-active { background: hsla(var(--primary-hsl), 0.06); color: hsl(var(--primary-hsl)); border: 1px solid hsla(var(--primary-hsl), 0.1); }

.tl-connector {
  flex: 1;
  height: 1.5px;
  background: var(--border-color);
  position: relative;
}

.tl-connector::after {
  content: '';
  position: absolute;
  left: 0; top: 0; height: 100%; width: 50%;
  background: hsl(var(--primary-hsl));
}

/* Living wage simulator */
.wage-simulator-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.sim-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.sim-title {
  font-family: var(--font-headers);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.03em;
}

.sim-value {
  font-family: var(--font-headers);
  font-size: 1.85rem;
  font-weight: 900;
  color: hsl(var(--primary-hsl));
  line-height: 1;
}

.sim-slider-box {
  width: 100%;
}

.gold-range-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  background: var(--border-color);
  border-radius: var(--radius-full);
  outline: none;
  position: relative;
}

.gold-range-slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, hsl(var(--primary-hsl)) var(--progress, 100%), var(--border-color) var(--progress, 100%));
  border-radius: var(--radius-full);
}

.gold-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: hsl(var(--primary-hsl));
  border: 2px solid var(--bg-void);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  margin-top: -5px;
  transition: transform var(--transition-fast);
}

.gold-range-slider::-webkit-slider-thumb:hover { transform: scale(1.18); }

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-light);
}

.bento-chart-container {
  width: 100%;
  height: 60px;
  margin-top: 0.4rem;
}

.bento-chart {
  width: 100%;
  height: 100%;
}

.sim-matched-log {
  font-family: var(--font-headers);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
}

.bento-card-footer-desc {
  border-top: 1px solid var(--border-color);
  margin-top: 2rem;
  padding-top: 1.5rem;
}

@media (max-width: 992px) {
  .benefits-bento-grid { grid-template-columns: 1fr; gap: 2rem; }
  .bento-card-large-1, .bento-card-large-2 { grid-column: span 1; }
}

/* ==========================================================================
   SUCCESS STORIES VIDEO SHOWCASE STAGE (Version 2 Theatre Layout)
   ========================================================================== */
.testimonials-section {
  background-color: var(--bg-space);
}

.video-showcase-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 4.5rem;
}

@media (min-width: 992px) {
  .video-showcase-stage {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 4rem;
    align-items: stretch;
  }
}

.active-stage-card {
  background: var(--bg-void);
  border: 1px solid var(--glass-border-warm);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.active-player-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #1a1512;
  cursor: pointer;
  overflow: hidden;
}

.active-player-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform var(--transition-slow);
}

.active-player-wrapper:hover img {
  transform: scale(1.02);
}

.stage-play-overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: hsl(var(--primary-hsl));
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px hsla(var(--primary-hsl), 0.35);
  transition: transform var(--transition-bounce), background var(--transition-fast);
}

.active-player-wrapper:hover .stage-play-overlay {
  transform: translate(-50%, -50%) scale(1.1);
  background: hsl(var(--secondary-hsl));
}

.active-stage-indicator {
  position: absolute;
  top: 15px; left: 15px;
  background: rgba(255, 111, 0, 0.92);
  color: var(--text-white);
  font-family: var(--font-headers);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
  z-index: 2;
}

.active-stage-meta {
  padding: 2.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.active-stage-meta h3 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 0.3rem;
}

.active-stage-tagline {
  font-family: var(--font-headers);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: hsl(var(--primary-hsl));
  letter-spacing: 0.03em;
  margin-bottom: 1.25rem;
}

.active-stage-meta p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Secondary selectors sidebar list */
.secondary-selectors-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.selector-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-void);
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.selector-card img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--border-color);
}

.selector-card h4 {
  font-size: 1rem;
  font-weight: 850;
  color: var(--text-main);
  margin-bottom: 0.15rem;
}

.selector-card span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.selector-card:hover {
  border-color: hsla(var(--primary-hsl), 0.25);
  transform: translateY(-2px);
}

.selector-card.active {
  border-color: hsl(var(--primary-hsl));
  background: var(--bg-secondary);
}

.selector-card.active img {
  border-color: hsl(var(--primary-hsl));
}

/* ==========================================================================
   CAREER TIMELINE SECTION (Sticky vertical editorial timeline grid)
   ========================================================================== */
.career-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.career-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4.5rem;
}

@media (min-width: 992px) {
  .career-grid-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 5.5rem;
  }
}

.career-sticky-info {
  position: relative;
}

@media (min-width: 992px) {
  .career-sticky-info {
    position: sticky;
    top: 120px;
    height: fit-content;
  }
}

.career-steps-track {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  position: relative;
}

.career-step-card {
  background: var(--bg-void);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.career-step-card:hover {
  border-color: hsla(var(--primary-hsl), 0.22);
  box-shadow: var(--shadow-md);
}

.step-card-num {
  font-family: var(--font-headers);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: hsla(var(--primary-hsl), 0.08);
  position: absolute;
  top: 1.5rem; right: 2rem;
  transition: color var(--transition-normal);
}

.career-step-card:hover .step-card-num {
  color: hsla(var(--primary-hsl), 0.16);
}

.career-step-card h3 {
  font-size: 1.4rem;
  font-weight: 850;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.career-step-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Highlight accenting logic on step cards */
.career-step-card.future {
  border-color: hsla(var(--primary-hsl), 0.2);
  background: linear-gradient(135deg, var(--bg-void) 60%, rgba(255, 111, 0, 0.02) 100%);
}

.career-step-card.future h3 {
  background: linear-gradient(135deg, hsl(var(--primary-hsl)) 20%, hsl(var(--secondary-hsl)) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.career-step-card.future .step-card-num {
  color: hsla(var(--primary-hsl), 0.12);
}

/* ==========================================================================
   THE CLUSTER PRINCIPLE NETWORK MAP (REACTIVE SVG DASH BEAMS)
   ========================================================================== */
.cluster-section {
  background-color: var(--bg-space);
}

.cluster-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.cluster-map-container {
  position: relative;
  width: 400px;
  height: 400px;
}

.cluster-glow-ring {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 50% 50%, hsla(var(--primary-hsl), 0.04) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.cluster-svg-network {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hover-pulse-beam {
  stroke-dasharray: 20, 200;
  stroke-dashoffset: 220;
  transition: stroke-dashoffset 0.6s var(--ease-editorial), opacity var(--transition-fast);
  opacity: 0;
}

.hover-pulse-beam.active {
  stroke-dashoffset: 0;
  opacity: 1;
}

.cluster-node-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, hsl(var(--primary-hsl)), hsl(var(--secondary-hsl)));
  color: var(--text-white);
  font-family: var(--font-headers);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px hsla(var(--primary-hsl), 0.25);
  z-index: 5;
}

.map-node {
  position: absolute;
  width: 48px;
  height: 48px;
  z-index: 4;
  cursor: pointer;
}

.map-node img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg-void);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-bounce), border-color var(--transition-fast);
}

.map-node:hover img {
  transform: scale(1.12);
  border-color: hsl(var(--primary-hsl));
}

/* Custom minimal tooltip overlays */
.node-tooltip {
  position: absolute;
  bottom: 58px;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background: #1a1512;
  color: var(--text-white);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  box-shadow: var(--shadow-md);
  transition: opacity 0.25s var(--ease-editorial), transform 0.25s var(--ease-editorial);
  z-index: 10;
}

.map-node:hover .node-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.node-tooltip::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border-width: 4px;
  border-style: solid;
  border-color: #1a1512 transparent transparent transparent;
}

@media (max-width: 992px) {
  .cluster-grid { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
  .cluster-content .hero-actions { justify-content: center; }
}

/* ==========================================================================
   THE SUNNY FAMILY: GENUINE COMMUNITY PORTRAITS
   ========================================================================== */
.community-showcase-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.community-showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.community-avatars-badges {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 576px) {
  .community-avatars-badges {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.comm-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-md);
  background: var(--bg-void);
  border: 1px solid var(--border-color);
  flex: 1;
}

.comm-badge img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.comm-badge-info {
  display: flex;
  flex-direction: column;
}

.comm-name {
  font-family: var(--font-headers);
  font-size: 0.85rem;
  font-weight: 850;
  color: var(--text-main);
}

.comm-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.community-photo-wrapper {
  position: relative;
  width: 100%;
}

.community-photo-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, hsla(var(--primary-hsl), 0.08) 0%, transparent 60%);
  z-index: 0;
  top: -10%; left: -10%;
  pointer-events: none;
}

.community-photo-card {
  position: relative;
  background: var(--bg-void);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 0.8rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  z-index: 1;
  transition: transform var(--transition-normal);
}

.community-photo-card:hover {
  transform: translateY(-2px);
}

.comm-main-img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.community-photo-label {
  padding: 1rem 0.5rem 0.2rem 0.5rem;
  font-family: var(--font-headers);
  font-size: 0.8rem;
  font-weight: 850;
  color: var(--text-muted);
  text-align: center;
}

@media (max-width: 992px) {
  .community-showcase-grid { grid-template-columns: 1fr; gap: 3.5rem; text-align: center; }
  .community-avatars-badges { justify-content: center; }
  .comm-badge { max-width: 250px; text-align: left; }
  .community-photo-card { max-width: 500px; margin: 0 auto; }
}

/* ==========================================================================
   PROCESS / HOW IT WORKS SECTION
   ========================================================================== */
.process-section {
  background-color: var(--bg-space);
}

.process-header {
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  margin-top: 4.5rem;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-card {
  background: var(--bg-void);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: border-color var(--transition-fast), transform var(--transition-bounce);
}

.process-card:hover {
  border-color: hsla(var(--primary-hsl), 0.25);
  transform: translateY(-4px);
}

.process-num {
  font-family: var(--font-headers);
  font-size: 2.5rem;
  font-weight: 900;
  color: hsla(var(--primary-hsl), 0.08);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color var(--transition-fast);
}

.process-card:hover .process-num {
  color: hsla(var(--primary-hsl), 0.16);
}

.process-card h3 {
  font-size: 1.25rem;
  font-weight: 850;
  color: var(--text-main);
  margin-bottom: 0.85rem;
}

.process-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.process-team {
  margin-top: 7rem;
  border-top: 1px solid var(--border-color);
  padding-top: 5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  justify-content: center;
}

@media (min-width: 576px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    margin: 0 auto;
  }
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--bg-void);
  box-shadow: var(--shadow-md);
  margin-bottom: 1.25rem;
  transition: transform var(--transition-bounce);
}

.team-member:hover .team-photo {
  transform: scale(1.04);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h4 {
  font-size: 1.15rem;
  font-weight: 850;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.team-member span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   FAQ SECTION (BORDERLESS ACCORDIONS)
   ========================================================================== */
.faq-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.faq-header-block {
  text-align: center;
}

.faq-container {
  max-width: 800px;
  margin: 4.5rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-void);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover {
  border-color: hsla(var(--primary-hsl), 0.22);
}

.faq-header-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-header-btn span:not(.faq-arrow-icon) {
  font-family: var(--font-headers);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  padding-right: 1.5rem;
}

.faq-arrow-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 111, 0, 0.04);
  color: hsl(var(--primary-hsl));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-bounce);
}

.faq-item.active .faq-arrow-icon {
  background-color: hsl(var(--primary-hsl));
  color: var(--text-white);
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease-out;
}

.faq-item.active .faq-body {
  opacity: 1;
}

.faq-content {
  padding: 0 2.25rem 1.5rem 2.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   DEEP WARM BRAND FOOTER
   ========================================================================== */
.footer {
  background-color: #1c1511;
  color: #c0b6af;
  padding: 7rem 0 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 5.5rem;
  margin-bottom: 4.5rem;
}

.footer-logo img {
  height: 34px;
  width: auto;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1) opacity(0.85);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-links-title {
  font-family: var(--font-headers);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-white);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: #a49991;
}

.footer-links a:hover {
  color: var(--text-white);
  transform: translateX(2px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
}

.footer-contact-item svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: hsl(var(--primary-hsl));
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
  color: #8c8077;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: #a49991;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-bounce);
}

.footer-social-btn:hover {
  background: hsl(var(--primary-hsl));
  color: var(--text-white);
  transform: translateY(-3px);
  border-color: hsl(var(--primary-hsl));
}

@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-desc { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
}

/* ==========================================================================
   VERSION 4 OVERRIDES: ULTIMATE HIGH-CONVERTING MASTERPIECE
   ========================================================================== */

/* ==========================================================================
   VERSION 4 OVERRIDES: ULTIMATE HIGH-CONVERTING MASTERPIECE
   ========================================================================== */

body.v5-pinoy-trust .hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 6rem;
  position: relative;
  background-color: var(--bg-space);
  overflow: hidden;
}

body.v5-pinoy-trust .hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(255, 111, 0, 0.04) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

body.v5-pinoy-trust .hero-title {
  color: var(--text-main);
}

body.v5-pinoy-trust .hero-subtitle {
  color: var(--text-muted);
}

/* Glassmorphism Navigation Bar Overrides */
body.v5-pinoy-trust .header {
  border-bottom: 1px solid rgba(255, 111, 0, 0.06);
  background: rgba(255, 253, 251, 0.85);
}

/* Hero Visual Column Layout (100% focused on human trust faces) */
body.v5-pinoy-trust .hero-visual {
  position: relative;
  width: 100%;
  min-height: auto;
  display: flex;
  align-items: center;
}

body.v5-pinoy-trust .hero-photo-canvas-card {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 3.5px solid rgba(255, 111, 0, 0.16);
  box-shadow: var(--shadow-xl), 0 35px 70px -15px rgba(255, 111, 0, 0.06);
  position: relative;
  transition: transform 0.6s var(--ease-editorial), border-color var(--transition-normal);
  background: var(--bg-void);
}

body.v5-pinoy-trust .hero-photo-canvas-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 111, 0, 0.35);
}

body.v5-pinoy-trust .hero-photo-canvas-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.01);
}

/* Modern photo caption overlay */
body.v5-pinoy-trust .photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(45, 34, 26, 0.92) 0%, rgba(45, 34, 26, 0.5) 60%, transparent 100%);
  padding: 3rem 2rem 1.5rem 2rem;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-align: left;
  pointer-events: none;
}

body.v5-pinoy-trust .photo-caption strong {
  color: hsl(var(--secondary-hsl));
  font-weight: 700;
}

/* Elegant Trust Info Row under Hero Actions */
body.v5-pinoy-trust .hero-trust-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.25rem;
  border-top: 1px solid rgba(255, 111, 0, 0.08);
  padding-top: 1.5rem;
}

body.v5-pinoy-trust .trust-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

body.v5-pinoy-trust .trust-pill svg {
  width: 16px;
  height: 16px;
  color: hsl(var(--success-hsl));
  flex-shrink: 0;
}

body.v5-pinoy-trust .trust-pill span {
  font-family: var(--font-headers);
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--text-muted);
}

/* Tactile Click Feedbacks (:active state rules) */
body.v5-pinoy-trust .btn:active,
body.v5-pinoy-trust .selector-card:active,
body.v5-pinoy-trust .lang-switch:active {
  transform: scale(0.97);
}

/* Dynamic Process Section Bento Split */
body.v5-pinoy-trust .process-split-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  align-items: center;
  margin-top: 3.5rem;
}

body.v5-pinoy-trust .process-steps-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

body.v5-pinoy-trust .process-visual-console {
  width: 100%;
}

body.v5-pinoy-trust .process-visual-console .console-card {
  background: var(--bg-void);
  border: 1.5px solid rgba(255, 111, 0, 0.12);
  box-shadow: var(--shadow-lg), 0 25px 50px -12px rgba(255, 111, 0, 0.04);
  border-left: 5px solid hsl(var(--primary-hsl));
}

body.v5-pinoy-trust .process-visual-console .console-subcard {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
}

/* Polished Onboarding Portal Status Indicator */
body.v5-pinoy-trust .console-status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

body.v5-pinoy-trust .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: hsl(var(--success-hsl));
  border-radius: 50%;
  position: relative;
}

body.v5-pinoy-trust .pulse-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsl(var(--success-hsl));
  border-radius: 50%;
  animation: live-pulse-glow 2s infinite ease-out;
}

@keyframes live-pulse-glow {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}

body.v5-pinoy-trust .live-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

/* Onboarding Portal Trust-Building Caption */
body.v5-pinoy-trust .console-caption {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-top: 1.5rem;
  padding: 1.15rem 1.35rem;
  background: hsla(26, 100%, 50%, 0.02);
  border: 1.5px dashed rgba(255, 111, 0, 0.15);
  border-radius: var(--radius-md);
  font-size: 0.825rem;
  line-height: 1.45;
  color: var(--text-muted);
  transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

body.v5-pinoy-trust .console-caption:hover {
  background: hsla(26, 100%, 50%, 0.04);
  border-color: rgba(255, 111, 0, 0.25);
}

body.v5-pinoy-trust .console-caption svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: hsl(var(--primary-hsl));
  margin-top: 0.15rem;
}

body.v5-pinoy-trust .console-caption strong {
  color: var(--text-main);
  font-weight: 700;
}

/* Fine Pointer Hover Gateways */
@media (hover: hover) and (pointer: fine) {
  body.v5-pinoy-trust .btn-magnetic:hover {
    transform: scale(1.02);
  }
  body.v5-pinoy-trust .trust-pill:hover span {
    color: hsl(var(--primary-hsl));
  }
}

/* Perfect Responsiveness & Breakpoint Safe Zone Overrides */
@media (max-width: 992px) {
  body.v5-pinoy-trust .hero {
    text-align: center;
    padding-top: 110px;
    padding-bottom: 5rem;
  }

  body.v5-pinoy-trust .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  body.v5-pinoy-trust .hero-tag {
    justify-content: center;
  }

  body.v5-pinoy-trust .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  body.v5-pinoy-trust .hero-social-proof-strip {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  body.v5-pinoy-trust .hero-actions {
    justify-content: center;
  }

  body.v5-pinoy-trust .hero-trust-row {
    justify-content: center;
  }

  body.v5-pinoy-trust .hero-visual {
    min-height: auto;
  }

  body.v5-pinoy-trust .hero-photo-canvas-card {
    max-width: 480px;
    height: 340px;
    margin: 0 auto;
  }

  body.v5-pinoy-trust .process-split-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  body.v5-pinoy-trust .process-visual-console {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  body.v5-pinoy-trust .hero {
    padding-top: 100px;
    padding-bottom: 4rem;
  }

  body.v5-pinoy-trust .hero-title {
    font-size: 2.35rem !important;
    line-height: 1.15;
  }

  body.v5-pinoy-trust .h1-inline-face {
    width: 38px;
    height: 38px;
  }

  body.v5-pinoy-trust .hero-trust-row {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  body.v5-pinoy-trust .photo-caption {
    padding: 2rem 1rem 1rem 1rem;
    font-size: 0.75rem;
  }
}

/* ==========================================================================
   VERSION 5 - PINOY TRUST EDITION CUSTOM STYLES
   ========================================================================== */

body.v5-pinoy-trust .nav-compliance-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-headers);
  font-size: 0.725rem;
  font-weight: 700;
  color: hsl(var(--primary-hsl));
  background: hsla(26, 100%, 50%, 0.05);
  border: 1px dashed rgba(255, 111, 0, 0.2);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-full);
  margin-right: 1.25rem;
}

body.v5-pinoy-trust .nav-compliance-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Wage Simulator Saving Card Styling */
body.v5-pinoy-trust .bento-saving-card {
  background: var(--bg-void);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

body.v5-pinoy-trust .bento-saving-card:hover {
  border-color: hsla(var(--primary-hsl), 0.15);
  transform: translateY(-2px);
}

body.v5-pinoy-trust .bento-saving-card h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

body.v5-pinoy-trust .bento-saving-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

body.v5-pinoy-trust .bento-saving-card .saving-metric {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

body.v5-pinoy-trust .bento-saving-card .metric-num {
  font-family: var(--font-headers);
  font-size: 2rem;
  font-weight: 900;
  color: hsl(var(--success-hsl));
  line-height: 1;
}

body.v5-pinoy-trust .bento-saving-card .saving-metric span {
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  line-height: 1.25;
}

/* Compliance Pill in Footer */
body.v5-pinoy-trust .compliance-pill {
  display: inline-block;
  font-family: var(--font-headers);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--primary-hsl));
  background: hsla(26, 100%, 50%, 0.06);
  border: 1px dashed rgba(255, 111, 0, 0.2);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
}

/* Specific class replacements for v5 bento structures */
body.v5-pinoy-trust .process-visual-console .console-card {
  background: var(--bg-void);
  border: 1.5px solid rgba(255, 111, 0, 0.12);
  box-shadow: var(--shadow-lg), 0 25px 50px -12px rgba(255, 111, 0, 0.04);
  border-left: 5px solid hsl(var(--primary-hsl));
}

body.v5-pinoy-trust .process-visual-console .console-subcard {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
}

body.v5-pinoy-trust .console-status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

body.v5-pinoy-trust .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: hsl(var(--success-hsl));
  border-radius: 50%;
  position: relative;
}

body.v5-pinoy-trust .pulse-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsl(var(--success-hsl));
  border-radius: 50%;
  animation: live-pulse-glow 2s infinite ease-out;
}

body.v5-pinoy-trust .live-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

body.v5-pinoy-trust .console-caption {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-top: 1.5rem;
  padding: 1.15rem 1.35rem;
  background: hsla(26, 100%, 50%, 0.02);
  border: 1.5px dashed rgba(255, 111, 0, 0.15);
  border-radius: var(--radius-md);
  font-size: 0.825rem;
  line-height: 1.45;
  color: var(--text-muted);
  transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

body.v5-pinoy-trust .console-caption:hover {
  background: hsla(26, 100%, 50%, 0.04);
  border-color: rgba(255, 111, 0, 0.25);
}

body.v5-pinoy-trust .console-caption svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: hsl(var(--primary-hsl));
  margin-top: 0.15rem;
}

body.v5-pinoy-trust .console-caption strong {
  color: var(--text-main);
  font-weight: 700;
}

body.v5-pinoy-trust .process-split-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  align-items: center;
  margin-top: 3.5rem;
}

body.v5-pinoy-trust .process-steps-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

body.v5-pinoy-trust .process-visual-console {
  width: 100%;
}

/* Responsiveness overrides for v5 grid elements */
@media (max-width: 992px) {
  body.v5-pinoy-trust .hero {
    text-align: center;
    padding-top: 110px;
    padding-bottom: 5rem;
  }
  
  body.v5-pinoy-trust .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  body.v5-pinoy-trust .hero-tag {
    justify-content: center;
  }

  body.v5-pinoy-trust .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  body.v5-pinoy-trust .hero-social-proof-strip {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  body.v5-pinoy-trust .hero-actions {
    justify-content: center;
  }

  body.v5-pinoy-trust .hero-trust-row {
    justify-content: center;
  }

  body.v5-pinoy-trust .hero-visual {
    min-height: auto;
  }

  body.v5-pinoy-trust .hero-photo-canvas-card {
    max-width: 480px;
    height: 340px;
    margin: 0 auto;
  }

  body.v5-pinoy-trust .process-split-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  body.v5-pinoy-trust .process-visual-console {
    max-width: 480px;
    margin: 0 auto;
  }

  body.v5-pinoy-trust .nav-compliance-badge {
    display: none; /* Hide in nav on tablet/mobile to save space */
  }
}

@media (max-width: 576px) {
  body.v5-pinoy-trust .hero {
    padding-top: 100px;
    padding-bottom: 4rem;
  }

  body.v5-pinoy-trust .hero-title {
    font-size: 2.35rem !important;
    line-height: 1.15;
  }

  body.v5-pinoy-trust .h1-inline-face {
    width: 38px;
    height: 38px;
  }

  body.v5-pinoy-trust .hero-trust-row {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  body.v5-pinoy-trust .photo-caption {
    padding: 2rem 1rem 1rem 1rem;
    font-size: 0.75rem;
  }
}



