  :root {
    --gold: #EAB851;
    --gold-light: #F0C76A;
    --gold-pale: #F7E8C4;
    --grey-dark: #2A2A2A;
    --grey-mid: #727575;
    --grey-slate: #8E9191;
    --off-white: #F8F5EE;
    --cream: #FAF7F0;
    --charcoal: #1A1A18;
    --surface: #FFFFFF;
    --border: rgba(234,184,81,0.22);
    --shadow: rgba(234,184,81,0.12);
    /* Readable copy on dark (charcoal) panels — white-based, not brown-tinted */
    --text-on-dark: rgba(255, 255, 255, 0.94);
    --text-on-dark-muted: rgba(255, 255, 255, 0.88);
    --text-on-dark-soft: rgba(255, 255, 255, 0.82);
    /* Large step indices (01, 02…) on cards — was ~0.12–0.15 */
    --card-step-number: rgba(234, 184, 81, 0.55);
    /* Readable body copy (paras, cards) */
    --text-para: 17px;
    --text-para-sm: 15px;
    --text-para-card: 16px;
    --leading-para: 1.65;
    --weight-para: 400;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    font-size: var(--text-para);
    line-height: var(--leading-para);
    background: var(--cream);
    color: var(--grey-dark);
    overflow-x: hidden;
  }

  /* ── NOISE TEXTURE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(/%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.4;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    height: 72px;
    background: rgba(250,247,240,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }

  .nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }

  .nav-logo-spotlight-inner {
    --spot-radius: 12px;
    --spot-img-radius: calc(var(--spot-radius) - 5px);
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255,255,255,0.98) 0%, rgba(250,247,240,0.92) 100%);
    border: 1px solid rgba(234,184,81,0.4);
    border-radius: var(--spot-radius);
    overflow: hidden;
    box-shadow:
      0 0 0 1px rgba(234,184,81,0.1),
      0 4px 16px rgba(0,0,0,0.06),
      0 0 24px rgba(234,184,81,0.1),
      inset 0 1px 0 rgba(255,255,255,0.95);
  }

  .nav-logo-spotlight-inner .nav-logo-img {
    object-fit: contain;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: var(--spot-img-radius);
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.12));
  }

  .nav-logo {
    width: 36px;
    height: 36px;
  }

  /* SVG Logo recreation */
  .logo-hex {
    display: inline-block;
    width: 36px;
    height: 36px;
  }

  .nav-brand-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 0.12em;
    color: var(--grey-dark);
  }

  .nav-brand-text span { color: var(--gold); }

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

  .nav-links a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--grey-mid);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--gold); }

  .nav-cta {
    background: var(--gold) !important;
    color: var(--charcoal) !important;
    padding: 10px 24px !important;
    border-radius: 2px !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em !important;
    transition: background 0.2s, transform 0.15s !important;
  }

  .nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 72px 5vw 0;
    position: relative;
    overflow: hidden;
    background: var(--charcoal);
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(234,184,81,0.18) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -100px; left: 10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(234,184,81,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
  }

  .hero-logo-spotlight {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 8px;
    opacity: 0;
    animation: fadeUp 0.85s ease 0.12s forwards;
  }

  .hero-logo-spotlight-inner {
    --spot-radius: 18px;
    --spot-img-radius: calc(var(--spot-radius) - 6px); /* concentric with frame + border */
    flex-shrink: 0;
    width: 92px;
    height: 92px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(234,184,81,0.5);
    border-radius: var(--spot-radius);
    overflow: hidden;
    box-shadow:
      0 0 0 1px rgba(234,184,81,0.12),
      0 12px 36px rgba(0,0,0,0.35),
      0 0 48px rgba(234,184,81,0.18),
      inset 0 1px 0 rgba(255,255,255,0.12);
    animation: heroLogoFloat 6s ease-in-out 1s infinite;
  }

  .hero-logo-spotlight-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--spot-img-radius);
    filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4));
  }

  .hero-logo-spotlight-caption {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 52px);
    letter-spacing: 0.14em;
    color: var(--off-white);
    line-height: 1;
    border-left: 2px solid rgba(234,184,81,0.55);
    padding-left: 20px;
  }

  .hero-logo-spotlight-accent { color: var(--gold); }

  .hero-logo-spotlight-caption::after {
    content: '';
    display: block;
    margin-top: 6px;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
  }

  @keyframes heroLogoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px; height: 1px;
    background: var(--gold);
  }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 7vw, 110px);
    line-height: 0.92;
    letter-spacing: 0.02em;
    color: var(--off-white);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.35s forwards;
  }

  .hero-title .accent { color: var(--gold); }

  .hero-title .block {
    display: block;
  }

  .hero-subtitle {
    font-size: 20px;
    font-weight: var(--weight-para);
    line-height: 1.68;
    color: var(--text-on-dark-muted);
    max-width: 480px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.5s forwards;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.65s forwards;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--charcoal);
    padding: 16px 36px;
    border: none;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
  }

  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(234,184,81,0.35);
  }

  .btn-outline {
    background: transparent;
    color: var(--off-white);
    padding: 15px 36px;
    border: 1px solid rgba(248,245,238,0.25);
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
  }

  .btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  .hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
  }

  .hero-card-stack {
    position: relative;
    width: 380px;
    height: 460px;
  }

  .hero-card {
    position: absolute;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(234,184,81,0.25);
    border-radius: 8px;
    padding: 28px;
    backdrop-filter: blur(10px);
  }

  .hero-card-main {
    width: 340px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.07);
    border-color: rgba(234,184,81,0.4);
    animation: float 4s ease-in-out infinite;
    opacity: 0;
    animation: float 4s ease-in-out infinite, fadeIn 1s ease 1s forwards;
  }

  .hero-card-back1 {
    width: 300px;
    top: 20px;
    left: 30px;
    transform: rotate(-4deg);
    opacity: 0;
    animation: fadeIn 1s ease 1.1s forwards;
  }

  .hero-card-back2 {
    width: 300px;
    bottom: 20px;
    right: 10px;
    transform: rotate(3deg);
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
  }

  .card-label {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
  }

  .card-metric {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    line-height: 1;
    color: var(--off-white);
    letter-spacing: 0.02em;
  }

  .card-metric-sub {
    font-size: 14px;
    color: var(--text-on-dark-soft);
    margin-top: 6px;
    line-height: 1.45;
  }

  .card-bar {
    margin-top: 16px;
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    overflow: hidden;
  }

  .card-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    animation: barGrow 1.5s ease 1.5s both;
  }

  .hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid rgba(248,245,238,0.1);
    opacity: 0;
    animation: fadeUp 0.8s ease 0.8s forwards;
  }

  .hero-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    color: var(--gold);
    letter-spacing: 0.04em;
    line-height: 1;
  }

  .hero-stat-label {
    font-size: 13px;
    color: var(--text-on-dark);
    letter-spacing: 0.06em;
    margin-top: 4px;
    line-height: 1.45;
  }

  /* ── SECTION BASE ── */
  section {
    padding: 100px 5vw;
  }

  .section-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .section-eyebrow::before {
    content: '';
    display: block;
    width: 24px; height: 1px;
    background: var(--gold);
  }

  /* Small caps labels on light backgrounds: easier to read than 10px gold */
  .solution .section-eyebrow,
  .implementation .section-eyebrow,
  .pricing .section-eyebrow,
  .why-yhworks .section-eyebrow,
  .compliance .reveal .section-eyebrow {
    color: var(--charcoal);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
  }

  .solution .section-eyebrow::before,
  .implementation .section-eyebrow::before,
  .pricing .section-eyebrow::before,
  .why-yhworks .section-eyebrow::before,
  .compliance .reveal .section-eyebrow::before {
    background: var(--charcoal);
    opacity: 0.35;
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 0.95;
    letter-spacing: 0.02em;
    color: var(--charcoal);
    margin-bottom: 24px;
  }

  .section-title .accent { color: var(--gold); }

  .section-body {
    font-size: 18px;
    font-weight: var(--weight-para);
    line-height: 1.68;
    color: var(--grey-mid);
    max-width: 38rem;
  }

  /* ── PROBLEM SECTION ── */
  .problems {
    background: var(--charcoal);
    color: var(--off-white);
    position: relative;
    overflow: hidden;
  }

  .problems::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .problems .section-title { color: var(--off-white); }
  .problems .section-body { color: var(--text-on-dark-muted); }

  .problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1px;
    margin-top: 64px;
    background: rgba(234,184,81,0.15);
    border: 1px solid rgba(234,184,81,0.15);
  }

  .problem-item {
    background: var(--charcoal);
    padding: 44px 36px;
    position: relative;
    transition: background 0.3s;
  }

  .problem-item:hover { background: rgba(234,184,81,0.04); }

  .problem-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    color: var(--card-step-number);
    line-height: 1;
    position: absolute;
    top: 24px; right: 28px;
    letter-spacing: -0.02em;
  }

  .problem-icon {
    width: 40px; height: 40px;
    background: rgba(234,184,81,0.1);
    border: 1px solid rgba(234,184,81,0.2);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }

  .problem-icon svg { width: 20px; height: 20px; }

  .problem-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 12px;
    letter-spacing: 0.01em;
  }

  .problem-desc {
    font-size: var(--text-para-card);
    font-weight: var(--weight-para);
    line-height: var(--leading-para);
    color: var(--text-on-dark-muted);
  }

  /* ── SOLUTION / FEATURES ── */
  .solution {
    background: var(--cream);
  }

  .solution-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
  }

  .solution-visual {
    position: relative;
  }

  .solution-badge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .solution-badge {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 28px 24px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }

  .solution-badge::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }

  .solution-badge:hover::before { transform: scaleX(1); }
  .solution-badge:hover { box-shadow: 0 8px 32px var(--shadow); transform: translateY(-3px); }

  .badge-icon {
    font-size: 28px;
    margin-bottom: 14px;
    display: block;
  }

  .badge-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--charcoal);
  }

  .badge-desc {
    font-size: var(--text-para-sm);
    line-height: var(--leading-para);
    color: var(--grey-slate);
    font-weight: var(--weight-para);
  }

  /* ── FEATURES GRID ── */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
  }

  .feature-card {
    background: var(--surface);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 6px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s;
  }

  .feature-card--lead {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: center;
    background: var(--charcoal);
    border-color: rgba(234,184,81,0.3);
    color: var(--off-white);
  }

  .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: var(--border);
  }

  .feature-card--lead:hover {
    box-shadow: 0 12px 40px rgba(234,184,81,0.15);
  }

  .feature-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    color: var(--card-step-number);
    line-height: 1;
    position: absolute;
    top: 16px; right: 20px;
    letter-spacing: -0.02em;
  }

  .feature-tag {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
  }

  .feature-card:not(.feature-card--lead) .feature-tag {
    font-size: 11px;
    letter-spacing: 0.16em;
    color: var(--charcoal);
    font-weight: 600;
  }

  .feature-card--lead .feature-tag {
    color: var(--gold-light);
    font-size: 11px;
  }

  .feature-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 0.01em;
    line-height: 1.2;
  }

  .feature-card--lead .feature-name { color: var(--off-white); }

  .feature-desc {
    font-size: var(--text-para-card);
    line-height: var(--leading-para);
    color: var(--grey-mid);
    font-weight: var(--weight-para);
  }

  .feature-card--lead .feature-desc { color: var(--text-on-dark-muted); }

  .feature-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
  }

  .feature-pill {
    background: rgba(234,184,81,0.1);
    border: 1px solid rgba(234,184,81,0.25);
    color: var(--text-on-dark);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 5px 14px;
    border-radius: 20px;
  }

  /* ── COMPLIANCE ── */
  .compliance {
    background: var(--off-white);
    position: relative;
  }

  .compliance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 64px;
  }

  .compliance-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .compliance-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: all 0.3s;
  }

  .compliance-item:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 20px var(--shadow);
  }

  .compliance-check {
    width: 32px; height: 32px;
    background: var(--gold);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .compliance-check svg { width: 16px; height: 16px; }

  .compliance-item-title {
    font-weight: 700;
    font-size: 16px;
    color: var(--charcoal);
    margin-bottom: 4px;
  }

  .compliance-item-desc {
    font-size: var(--text-para-sm);
    color: var(--grey-mid);
    font-weight: var(--weight-para);
    line-height: var(--leading-para);
  }

  .compliance-visual {
    background: var(--charcoal);
    border-radius: 8px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
  }

  .compliance-visual::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(234,184,81,0.2) 0%, transparent 70%);
  }

  .cv-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: var(--off-white);
    letter-spacing: 0.04em;
    margin-bottom: 8px;
    position: relative;
  }

  .cv-sub {
    font-size: var(--text-para-sm);
    color: var(--text-on-dark);
    margin-bottom: 36px;
    font-weight: var(--weight-para);
    line-height: var(--leading-para);
  }

  .cv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
  }

  .cv-tag {
    background: rgba(234,184,81,0.12);
    border: 1px solid rgba(234,184,81,0.3);
    color: var(--text-on-dark);
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    padding: 8px 16px;
    border-radius: 2px;
  }

  .cv-big-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 120px;
    color: rgba(234,184,81,0.06);
    position: absolute;
    bottom: -20px;
    right: -10px;
    line-height: 1;
    letter-spacing: -0.04em;
    pointer-events: none;
  }

  /* ── ROI SECTION ── */
  .roi {
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
  }

  .roi::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .roi::after {
    content: '';
    position: absolute;
    bottom: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(234,184,81,0.1) 0%, transparent 70%);
  }

  .roi .section-title { color: var(--off-white); }
  .roi .section-body { color: var(--text-on-dark-muted); }

  .roi-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 64px;
    background: rgba(234,184,81,0.15);
    position: relative;
    z-index: 2;
  }

  .roi-metric {
    background: var(--charcoal);
    padding: 48px 36px;
    text-align: center;
    transition: background 0.3s;
  }

  .roi-metric:hover { background: rgba(234,184,81,0.05); }

  .roi-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 68px;
    line-height: 1;
    color: var(--gold);
    letter-spacing: 0.02em;
    margin-bottom: 10px;
  }

  .roi-label {
    font-size: var(--text-para-sm);
    font-weight: 600;
    color: var(--text-on-dark);
    letter-spacing: 0.04em;
    line-height: 1.45;
  }

  .roi-sub {
    font-size: 14px;
    color: var(--text-on-dark-soft);
    margin-top: 6px;
    font-weight: var(--weight-para);
    line-height: 1.45;
  }

  /* ── PRICING ── */
  .pricing {
    background: var(--cream);
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
  }

  .pricing-card {
    background: var(--surface);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 8px;
    padding: 44px 36px;
    position: relative;
    transition: all 0.3s;
  }

  .pricing-card.featured {
    background: var(--charcoal);
    border-color: var(--gold);
    transform: scale(1.04);
    box-shadow: 0 24px 60px rgba(234,184,81,0.2);
  }

  .pricing-card:not(.featured):hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    border-color: var(--border);
  }

  .pricing-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--charcoal);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 20px;
    border-radius: 20px;
  }

  .pricing-tier {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .pricing-card:not(.featured) .pricing-tier {
    color: var(--charcoal);
    font-weight: 600;
  }

  .pricing-card.featured .pricing-tier {
    color: var(--text-on-dark-muted);
    font-weight: 600;
  }

  .pricing-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
  }

  .pricing-card:not(.featured) .pricing-title { color: var(--charcoal); }
  .pricing-card.featured .pricing-title { color: var(--off-white); }

  .pricing-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    letter-spacing: 0.02em;
    color: var(--gold);
    line-height: 1;
    margin: 20px 0;
  }

  .pricing-price-sub {
    font-size: 14px;
    font-weight: var(--weight-para);
    display: block;
    margin-top: 4px;
    margin-bottom: 28px;
  }

  .pricing-card:not(.featured) .pricing-price-sub { color: var(--grey-slate); }
  .pricing-card.featured .pricing-price-sub { color: var(--text-on-dark-soft); }

  .pricing-divider {
    height: 1px;
    margin: 24px 0;
  }

  .pricing-card:not(.featured) .pricing-divider { background: rgba(0,0,0,0.06); }
  .pricing-card.featured .pricing-divider { background: rgba(234,184,81,0.2); }

  .pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: var(--text-para-sm);
    margin-bottom: 14px;
    font-weight: var(--weight-para);
    line-height: var(--leading-para);
  }

  .pricing-card:not(.featured) .pricing-feature { color: var(--grey-mid); }
  .pricing-card.featured .pricing-feature { color: var(--text-on-dark-muted); }

  .pricing-feature::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .pricing-btn {
    display: block;
    text-align: center;
    margin-top: 32px;
    padding: 14px 28px;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s;
  }

  .pricing-btn-outline {
    border: 1px solid var(--border);
    color: var(--gold);
  }

  .pricing-btn-outline:hover {
    background: var(--gold);
    color: var(--charcoal);
  }

  .pricing-btn-filled {
    background: var(--gold);
    color: var(--charcoal);
  }

  .pricing-btn-filled:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(234,184,81,0.3);
  }

  /* ── GTM / IMPLEMENTATION ── */
  .implementation {
    background: var(--off-white);
  }

  .impl-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(0,0,0,0.06);
    margin-top: 64px;
    border: 1px solid rgba(0,0,0,0.06);
  }

  .impl-step {
    background: var(--off-white);
    padding: 44px 36px;
    position: relative;
    transition: background 0.3s;
  }

  .impl-step:hover { background: var(--surface); }

  .impl-step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    color: var(--card-step-number);
    line-height: 1;
    margin-bottom: 8px;
  }

  .impl-step-phase {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--charcoal);
    font-weight: 600;
    margin-bottom: 14px;
  }

  .impl-step-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 14px;
  }

  .impl-step-desc {
    font-size: var(--text-para-card);
    line-height: var(--leading-para);
    color: var(--grey-mid);
    font-weight: var(--weight-para);
  }

  .impl-step-time {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.1em;
    color: var(--grey-dark);
    font-weight: 500;
    text-transform: uppercase;
  }

  /* ── WHY YHWORKS ── */
  .why-yhworks {
    background: var(--cream);
  }

  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 64px;
  }

  .why-points {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .why-point {
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }

  .why-point-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--gold);
    min-width: 36px;
    line-height: 1.1;
  }

  .why-point-title {
    font-weight: 700;
    font-size: 18px;
    color: var(--charcoal);
    margin-bottom: 8px;
  }

  .why-point-desc {
    font-size: var(--text-para-card);
    line-height: var(--leading-para);
    color: var(--grey-mid);
    font-weight: var(--weight-para);
  }

  .why-quote {
    background: var(--charcoal);
    border-radius: 8px;
    padding: 52px 44px;
    position: relative;
    overflow: hidden;
  }

  .why-quote::before {
    content: '"';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 200px;
    color: rgba(234,184,81,0.08);
    position: absolute;
    top: -30px; left: 20px;
    line-height: 1;
    pointer-events: none;
  }

  .why-quote-text {
    font-size: 20px;
    line-height: 1.72;
    color: var(--text-on-dark);
    font-weight: var(--weight-para);
    font-style: italic;
    position: relative;
    margin-bottom: 32px;
  }

  .why-quote-author {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
  }

  /* ── CTA ── */
  .cta-section {
    background: var(--charcoal);
    text-align: center;
    padding: 120px 5vw;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(234,184,81,0.15) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 6vw, 88px);
    line-height: 0.95;
    letter-spacing: 0.02em;
    color: var(--off-white);
    margin-bottom: 24px;
    position: relative;
  }

  .cta-title .accent { color: var(--gold); }

  .cta-body {
    font-size: 19px;
    font-weight: var(--weight-para);
    color: var(--text-on-dark-muted);
    max-width: 34rem;
    margin: 0 auto 48px;
    line-height: 1.68;
    position: relative;
  }

  .cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
  }

  .cta-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 64px auto 0;
    position: relative;
  }

  .cta-option {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(234,184,81,0.2);
    border-radius: 6px;
    padding: 32px 24px;
    text-align: left;
  }

  .cta-option-title {
    font-weight: 700;
    font-size: 16px;
    color: var(--off-white);
    margin-bottom: 8px;
  }

  .cta-option-desc {
    font-size: var(--text-para-sm);
    color: var(--text-on-dark);
    line-height: var(--leading-para);
    font-weight: var(--weight-para);
  }

  /* ── FOOTER ── */
  footer {
    background: #111110;
    padding: 60px 5vw 40px;
    border-top: 1px solid rgba(234,184,81,0.1);
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
  }

  .footer-brand {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
    text-decoration: none;
  }

  .footer-logo-spotlight-inner {
    --spot-radius: 17px;
    --spot-img-radius: calc(var(--spot-radius) - 6px);
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255,255,255,0.11) 0%, rgba(255,255,255,0.04) 100%);
    border: 1px solid rgba(234,184,81,0.48);
    border-radius: var(--spot-radius);
    overflow: hidden;
    box-shadow:
      0 0 0 1px rgba(234,184,81,0.12),
      0 10px 32px rgba(0,0,0,0.5),
      0 0 36px rgba(234,184,81,0.14),
      inset 0 1px 0 rgba(255,255,255,0.1);
  }

  .footer-brand-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 0.12em;
    color: var(--grey-slate);
  }

  .footer-brand-text span { color: var(--gold); }

  .footer-desc {
    font-size: var(--text-para-sm);
    font-weight: var(--weight-para);
    line-height: var(--leading-para);
    color: var(--text-on-dark-muted);
    margin-bottom: 20px;
  }

  .footer-yhworks {
    font-size: 14px;
    color: var(--text-on-dark-soft);
    line-height: var(--leading-para);
  }

  .footer-yhworks a {
    color: var(--gold);
    text-decoration: none;
  }

  .footer-col-title {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }

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

  .footer-links a {
    font-size: var(--text-para-sm);
    font-weight: var(--weight-para);
    color: var(--text-on-dark-muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--gold); }

  .footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-copy {
    font-size: 14px;
    color: var(--text-on-dark-soft);
    line-height: 1.45;
  }

  .footer-reg {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--text-on-dark-soft);
    text-align: right;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 0.9; }
  }

  @keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-12px); }
  }

  @keyframes barGrow {
    from { width: 0; }
    to { width: 75%; }
  }

  /* Scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

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

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; padding-top: 100px; }
    .hero-visual { display: none; }
    .hero-logo-spotlight-inner {
      --spot-radius: 14px;
      width: 76px;
      height: 76px;
      padding: 12px;
    }
    .hero-logo-spotlight-caption { padding-left: 16px; }
    .solution-intro, .compliance-grid, .why-grid { grid-template-columns: 1fr; gap: 40px; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-card--lead { grid-template-columns: 1fr; }
    .roi-metrics { grid-template-columns: 1fr 1fr; }
    .pricing-grid, .impl-steps { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }
    .cta-options { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .footer-logo-spotlight-inner {
      --spot-radius: 15px;
      width: 68px;
      height: 68px;
      padding: 10px;
    }
    .footer-brand { gap: 14px; }
  }

  /* ── VALITRACE LOGO SVG ── */
  .vt-logo-svg {
    width: 40px;
    height: 40px;
  }

  .footer-logo-spotlight-inner .footer-logo-img {
    object-fit: contain;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: var(--spot-img-radius);
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.55));
  }

  button.nav-cta {
    border: none;
    cursor: pointer;
    font: inherit;
    font-family: 'DM Sans', sans-serif;
  }

  button.btn-primary {
    font-family: 'DM Sans', sans-serif;
  }

  button.footer-demo-btn {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    font-size: var(--text-para-sm);
    font-weight: var(--weight-para);
    color: var(--text-on-dark-muted);
    cursor: pointer;
    text-align: left;
  }

  button.footer-demo-btn:hover {
    color: var(--gold);
  }

  .flash {
    position: fixed;
    top: 88px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 950;
    padding: 14px 24px;
    border-radius: 4px;
    font-size: var(--text-para-sm);
    max-width: min(520px, 92vw);
    line-height: 1.45;
  }

  .flash-notice {
    background: var(--charcoal);
    color: var(--off-white);
    border: 1px solid var(--border);
  }

  .flash-alert {
    background: #3a2222;
    color: #f0d0d0;
    border: 1px solid rgba(200,100,100,0.5);
  }

  .demo-modal {
    border: none;
    padding: 0;
    max-width: 440px;
    width: calc(100% - 32px);
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    background: transparent;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }

  .demo-modal::backdrop {
    background: rgba(26, 26, 24, 0.65);
    backdrop-filter: blur(4px);
  }

  .demo-modal-inner {
    background: var(--surface);
    color: var(--grey-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.2);
    padding: 32px;
  }

  .demo-modal-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 0.06em;
    color: var(--charcoal);
    margin-bottom: 8px;
    line-height: 1.1;
  }

  .demo-modal-sub {
    font-size: var(--text-para-sm);
    color: var(--grey-slate);
    margin-bottom: 24px;
    line-height: 1.6;
    font-weight: var(--weight-para);
  }

  .demo-field {
    margin-bottom: 16px;
  }

  .demo-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey-mid);
    margin-bottom: 8px;
  }

  .demo-field input,
  .demo-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(142,145,145,0.35);
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: var(--text-para-sm);
  }

  .demo-field textarea {
    min-height: 100px;
    resize: vertical;
  }

  .demo-form-errors {
    background: rgba(180, 40, 40, 0.08);
    border: 1px solid rgba(180, 40, 40, 0.35);
    color: #8a1f1f;
    padding: 12px 14px;
    border-radius: 4px;
    font-size: var(--text-para-sm);
    line-height: var(--leading-para);
    margin-bottom: 16px;
  }

  .demo-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
    flex-wrap: wrap;
  }

  .btn-secondary {
    background: transparent;
    color: var(--grey-mid);
    padding: 14px 24px;
    border: 1px solid rgba(142,145,145,0.4);
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  .demo-success {
    text-align: center;
    padding: 8px 0 0;
  }

  .demo-success-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: rgba(234,184,81,0.15);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 28px;
  }
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
