:root {
      --ink: #0a0a0f;
      --ink-mid: #1c1c2e;
      --steel: #8891a4;
      --silver: #c8cdd8;
      --paper: #f4f2ee;
      --cream: #faf9f6;
      --forge: #e8410a;
      --forge-dark: #c0340a;
      --forge-glow: rgba(232, 65, 10, 0.18);
      --electric: #00d4ff;
      --electric-dim: rgba(0, 212, 255, 0.12);
      --gold: #f5a623;
      --green: #1db97b;
      --card-bg: rgba(255, 255, 255, 0.04);
      --border: rgba(255, 255, 255, 0.08);
      --border-light: rgba(0, 0, 0, 0.08);
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--ink);
      color: #e8e6e0;
      overflow-x: hidden;
      line-height: 1.6;
    }

    /* ── SECTIONS ── */
    section {
      padding: 100px 5vw;
    }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      display: grid;
      place-items: center;
      padding-top: 140px;
      padding-bottom: 80px;
      position: relative;
      overflow: hidden;
      background: var(--ink);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      background:
        radial-gradient(ellipse 80% 60% at 60% 40%, rgba(232, 65, 10, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(0, 212, 255, 0.07) 0%, transparent 50%);
    }

    .hero-grid-lines {
      position: absolute;
      inset: 0;
      z-index: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(232, 65, 10, 0.15);
      border: 1px solid rgba(232, 65, 10, 0.3);
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 24px;
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--forge);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .hero-badge::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--forge);
      animation: pulse-dot 2s infinite;
    }

    @keyframes pulse-dot {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: 0.5;
        transform: scale(0.7)
      }
    }

    .hero-h1 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2.4rem, 4.5vw, 3.8rem);
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -0.04em;
      color: #fff;
      margin-bottom: 24px;
    }

    .hero-h1 em {
      font-style: normal;
      color: var(--forge);
    }

    .hero-h1 .underline-el {
      position: relative;
      display: inline-block;
    }

    .hero-h1 .underline-el::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--forge);
      border-radius: 2px;
    }

    .hero-sub {
      font-size: 1.05rem;
      color: var(--silver);
      max-width: 480px;
      margin-bottom: 40px;
      line-height: 1.7;
      font-weight: 300;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--forge);
      color: #fff;
      padding: 15px 32px;
      border-radius: 8px;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      font-family: 'DM Sans', sans-serif;
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-primary:hover {
      background: var(--forge-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(232, 65, 10, 0.35);
    }

    .btn-ghost {
      background: transparent;
      color: #fff;
      padding: 15px 32px;
      border-radius: 8px;
      font-size: 0.95rem;
      font-weight: 500;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-ghost:hover {
      border-color: rgba(255, 255, 255, 0.5);
      background: rgba(255, 255, 255, 0.06);
    }

    /* Hero Dashboard mockup */
    .hero-visual {
      position: relative;
    }

    .hero-dash {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 24px;
      backdrop-filter: blur(10px);
    }

    .dash-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .dash-title {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      color: #fff;
    }

    .dash-badge {
      background: rgba(29, 185, 123, 0.2);
      color: var(--green);
      font-size: 0.75rem;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 100px;
    }

    .chart-area {
      height: 140px;
      position: relative;
      margin-bottom: 20px;
      background: rgba(255, 255, 255, 0.02);
      border-radius: 8px;
      overflow: hidden;
    }

    .chart-bars {
      display: flex;
      align-items: flex-end;
      gap: 6px;
      height: 100%;
      padding: 16px 16px 0;
    }

    .bar {
      flex: 1;
      border-radius: 4px 4px 0 0;
      background: linear-gradient(180deg, var(--forge) 0%, rgba(232, 65, 10, 0.3) 100%);
      transition: height 1s ease;
    }

    .bar.electric {
      background: linear-gradient(180deg, var(--electric) 0%, rgba(0, 212, 255, 0.2) 100%);
    }

    .bar.gold {
      background: linear-gradient(180deg, var(--gold) 0%, rgba(245, 166, 35, 0.2) 100%);
    }

    .dash-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .metric-card {
      background: rgba(255, 255, 255, 0.04);
      border-radius: 10px;
      padding: 14px;
      border: 1px solid var(--border);
    }

    .metric-label {
      font-size: 0.72rem;
      color: var(--steel);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 6px;
    }

    .metric-value {
      font-family: 'Syne', sans-serif;
      font-size: 1.4rem;
      font-weight: 800;
      color: #fff;
    }

    .metric-change {
      font-size: 0.75rem;
      color: var(--green);
      font-weight: 600;
      margin-top: 2px;
    }

    /* Floating chips */
    .float-chip {
      position: absolute;
      background: rgba(10, 10, 15, 0.92);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 10px 16px;
      font-size: 0.8rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px;
      backdrop-filter: blur(8px);
      white-space: nowrap;
    }

    .chip-1 {
      top: -20px;
      right: -20px;
      color: var(--green);
      border-color: rgba(29, 185, 123, 0.3);
    }

    .chip-2 {
      bottom: -20px;
      left: -20px;
      color: var(--electric);
      border-color: rgba(0, 212, 255, 0.3);
    }

    .chip-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
    }

    .chip-dot.green {
      background: var(--green);
    }

    .chip-dot.blue {
      background: var(--electric);
    }

    /* ── TRUST BAR ── */
    #trust {
      padding: 60px 5vw;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .trust-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 60px;
      align-items: center;
    }

    .trust-metrics {
      display: flex;
      gap: 48px;
    }

    .trust-metric {
      text-align: center;
    }

    .trust-number {
      font-family: 'Syne', sans-serif;
      font-size: 2.4rem;
      font-weight: 800;
      color: #fff;
      line-height: 1;
      margin-bottom: 4px;
    }

    .trust-number span {
      color: var(--forge);
    }

    .trust-label {
      font-size: 0.82rem;
      color: var(--steel);
      letter-spacing: 0.03em;
    }

    .trust-divider {
      width: 1px;
      height: 60px;
      background: var(--border);
    }

    .trust-logos {
      display: flex;
      gap: 24px;
      align-items: center;
      flex-wrap: wrap;
    }

    .logo-placeholder {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 10px 20px;
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--steel);
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    /* ── SECTION HEADERS ── */
    .section-eyebrow {
      font-size: 0.78rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--forge);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .section-eyebrow::before {
      content: '';
      width: 24px;
      height: 2px;
      background: var(--forge);
    }

    .section-h2 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 20px;
    }

    .section-h2 em {
      font-style: normal;
      color: var(--forge);
    }

    .section-sub {
      font-size: 1.05rem;
      color: var(--silver);
      max-width: 560px;
      line-height: 1.7;
      font-weight: 300;
    }

    /* ── PROBLEMS SECTION ── */
    #problems {
      background: linear-gradient(180deg, var(--ink) 0%, #0d0d18 100%);
    }

    .problems-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .problems-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      margin-top: 64px;
      align-items: center;
    }

    .problem-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .problem-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 20px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      transition: border-color 0.2s;
    }

    .problem-item:hover {
      border-color: rgba(232, 65, 10, 0.3);
    }

    .problem-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(232, 65, 10, 0.12);
      display: grid;
      place-items: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .problem-text h4 {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      color: #fff;
      margin-bottom: 4px;
    }

    .problem-text p {
      font-size: 0.88rem;
      color: var(--steel);
      line-height: 1.5;
    }

    /* comparison visual */
    .comparison-visual {
      display: grid;
      grid-template-rows: 1fr 1fr;
      gap: 16px;
    }

    .compare-card {
      border-radius: 14px;
      padding: 24px;
      border: 1px solid var(--border);
    }

    .compare-card.bad {
      background: rgba(255, 255, 255, 0.03);
      border-color: rgba(255, 80, 80, 0.2);
    }

    .compare-card.good {
      background: rgba(29, 185, 123, 0.05);
      border-color: rgba(29, 185, 123, 0.3);
    }

    .compare-tag {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 12px;
      display: inline-block;
      padding: 4px 10px;
      border-radius: 4px;
    }

    .compare-tag.bad {
      background: rgba(255, 80, 80, 0.15);
      color: #ff6060;
    }

    .compare-tag.good {
      background: rgba(29, 185, 123, 0.15);
      color: var(--green);
    }

    .compare-metrics {
      display: flex;
      gap: 24px;
      margin-top: 12px;
    }

    .cm {}

    .cm-v {
      font-family: 'Syne', sans-serif;
      font-size: 1.5rem;
      font-weight: 800;
    }

    .cm-v.red {
      color: #ff6060;
    }

    .cm-v.green {
      color: var(--green);
    }

    .cm-l {
      font-size: 0.75rem;
      color: var(--steel);
      margin-top: 2px;
    }

    /* ── SERVICES ── */
    #services {
      background: var(--ink-mid);
    }

    .services-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .services-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 60px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .service-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 36px;
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s, transform 0.3s;
      cursor: pointer;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--forge) 0%, transparent 100%);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .service-card:hover {
      border-color: rgba(232, 65, 10, 0.35);
      transform: translateY(-4px);
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .service-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: rgba(232, 65, 10, 0.12);
      display: grid;
      place-items: center;
      font-size: 1.5rem;
      margin-bottom: 24px;
      border: 1px solid rgba(232, 65, 10, 0.2);
    }

    .service-card h3 {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.2rem;
      color: #fff;
      margin-bottom: 12px;
      letter-spacing: -0.02em;
    }

    .service-card p {
      font-size: 0.9rem;
      color: var(--silver);
      line-height: 1.65;
      margin-bottom: 24px;
    }

    .service-benefits {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 28px;
    }

    .benefit-item {
      display: flex;
      gap: 10px;
      align-items: center;
      font-size: 0.83rem;
      color: var(--silver);
    }

    .benefit-item::before {
      content: '→';
      color: var(--forge);
      font-weight: 700;
      flex-shrink: 0;
    }

    .service-link {
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--forge);
      display: flex;
      align-items: center;
      gap: 6px;
      text-decoration: none;
      transition: gap 0.2s;
    }

    .service-link:hover {
      gap: 10px;
    }

    /* UI mockup inside service card */
    .service-mockup {
      background: rgba(255, 255, 255, 0.04);
      border-radius: 10px;
      padding: 16px;
      border: 1px solid var(--border);
      margin-bottom: 24px;
      height: 100px;
      position: relative;
      overflow: hidden;
    }

    .mockup-bar {
      height: 8px;
      border-radius: 4px;
      margin-bottom: 8px;
    }

    .mockup-bar.w-full {
      width: 100%;
    }

    .mockup-bar.w-70 {
      width: 70%;
    }

    .mockup-bar.w-50 {
      width: 50%;
    }

    .mockup-bar.forge {
      background: linear-gradient(90deg, var(--forge), rgba(232, 65, 10, 0.3));
    }

    .mockup-bar.electric {
      background: linear-gradient(90deg, var(--electric), rgba(0, 212, 255, 0.2));
    }

    .mockup-bar.grey {
      background: rgba(255, 255, 255, 0.1);
    }

    .mockup-mini-chart {
      display: flex;
      align-items: flex-end;
      gap: 4px;
      height: 40px;
      position: absolute;
      bottom: 16px;
      right: 16px;
    }

    .mini-bar {
      width: 8px;
      border-radius: 2px 2px 0 0;
      background: var(--forge);
      opacity: 0.7;
    }

    /* ── CASE STUDIES ── */
    #case-studies {
      background: var(--ink);
    }

    .cases-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .cases-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 60px;
    }

    .case-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      transition: border-color 0.3s;
    }

    .case-card:hover {
      border-color: rgba(232, 65, 10, 0.3);
    }

    .case-industry-bar {
      height: 140px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .case-industry-bar.bg1 {
      background: linear-gradient(135deg, #1a0800 0%, #3d1200 100%);
    }

    .case-industry-bar.bg2 {
      background: linear-gradient(135deg, #001a1a 0%, #003d3d 100%);
    }

    .case-industry-bar.bg3 {
      background: linear-gradient(135deg, #0a0020 0%, #200050 100%);
    }

    .case-industry-icon {
      font-size: 3rem;
      opacity: 0.7;
    }

    .case-body {
      padding: 28px;
    }

    .case-tag {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--forge);
      margin-bottom: 12px;
    }

    .case-card h3 {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      color: #fff;
      margin-bottom: 16px;
      line-height: 1.3;
    }

    .case-results {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 20px;
    }

    .result-box {
      background: rgba(255, 255, 255, 0.04);
      border-radius: 10px;
      padding: 14px;
    }

    .result-box .label {
      font-size: 0.7rem;
      color: var(--steel);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 4px;
    }

    .result-box .before {
      font-family: 'Syne', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: #ff6060;
    }

    .result-box .after {
      font-family: 'Syne', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--green);
    }

    .case-growth {
      background: rgba(29, 185, 123, 0.08);
      border: 1px solid rgba(29, 185, 123, 0.2);
      border-radius: 10px;
      padding: 14px;
      text-align: center;
    }

    .growth-num {
      font-family: 'Syne', sans-serif;
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--green);
    }

    .growth-label {
      font-size: 0.78rem;
      color: var(--steel);
      margin-top: 2px;
    }

    /* Mini sparkline */
    .sparkline {
      margin-top: 16px;
    }

    .spark-track {
      height: 40px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 6px;
      position: relative;
      overflow: hidden;
    }

    .spark-fill {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 100%;
      border-radius: 6px;
      background: linear-gradient(90deg, rgba(29, 185, 123, 0.2) 0%, rgba(29, 185, 123, 0.6) 100%);
    }

    .spark-line {
      position: absolute;
      bottom: 8px;
      left: 8px;
      right: 8px;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--green));
      border-radius: 2px;
    }

    /* ── PROCESS ── */
    #process {
      background: linear-gradient(180deg, var(--ink-mid) 0%, var(--ink) 100%);
    }

    .process-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 72px;
      position: relative;
    }

    .process-steps::before {
      content: '';
      position: absolute;
      top: 28px;
      left: 10%;
      right: 10%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--forge) 30%, var(--forge) 70%, transparent);
      z-index: 0;
    }

    .process-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 20px;
      position: relative;
      z-index: 1;
    }

    .step-number {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--ink);
      border: 2px solid var(--forge);
      display: grid;
      place-items: center;
      font-family: 'Syne', sans-serif;
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--forge);
      margin-bottom: 24px;
    }

    .step-icon-bg {
      width: 80px;
      height: 80px;
      border-radius: 20px;
      margin-bottom: 24px;
      display: grid;
      place-items: center;
      font-size: 2rem;
      background: rgba(232, 65, 10, 0.08);
      border: 1px solid rgba(232, 65, 10, 0.2);
    }

    .process-step h4 {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 0.95rem;
      color: #fff;
      margin-bottom: 10px;
    }

    .process-step p {
      font-size: 0.83rem;
      color: var(--steel);
      line-height: 1.6;
    }

    /* ── INDUSTRIES ── */
    #industries {
      background: var(--ink);
    }

    .industries-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .industries-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      margin-top: 60px;
    }

    .industry-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 28px 20px;
      text-align: center;
      transition: all 0.25s;
      cursor: pointer;
    }

    .industry-card:hover {
      background: rgba(232, 65, 10, 0.08);
      border-color: rgba(232, 65, 10, 0.35);
      transform: translateY(-4px);
    }

    .industry-emoji {
      font-size: 2.2rem;
      margin-bottom: 14px;
      display: block;
    }

    .industry-card h4 {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.88rem;
      color: #fff;
      line-height: 1.3;
    }

    .industry-card p {
      font-size: 0.78rem;
      color: var(--steel);
      margin-top: 6px;
    }

    /* ── BLOG ── */
    #blog {
      background: var(--ink-mid);
    }

    .blog-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .blog-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 60px;
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .blog-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      transition: border-color 0.3s, transform 0.3s;
      cursor: pointer;
    }

    .blog-card:hover {
      border-color: rgba(232, 65, 10, 0.3);
      transform: translateY(-4px);
    }

    .blog-image {
      height: 180px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .blog-image.b1 {
      background: linear-gradient(135deg, #0d1a00, #1a3d00);
    }

    .blog-image.b2 {
      background: linear-gradient(135deg, #000d1a, #00233d);
    }

    .blog-image.b3 {
      background: linear-gradient(135deg, #1a0d00, #3d2000);
    }

    .blog-image-icon {
      font-size: 3.5rem;
      opacity: 0.6;
    }

    .blog-cat {
      position: absolute;
      top: 12px;
      left: 12px;
      background: rgba(232, 65, 10, 0.9);
      color: #fff;
      font-size: 0.68rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 4px 10px;
      border-radius: 4px;
    }

    .blog-body {
      padding: 24px;
    }

    .blog-meta {
      font-size: 0.75rem;
      color: var(--steel);
      margin-bottom: 10px;
    }

    .blog-card h3 {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      color: #fff;
      line-height: 1.4;
      margin-bottom: 12px;
    }

    .blog-card p {
      font-size: 0.85rem;
      color: var(--silver);
      line-height: 1.6;
    }

    .blog-read {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 16px;
      font-size: 0.83rem;
      font-weight: 600;
      color: var(--forge);
      cursor: pointer;
      transition: gap 0.2s;
    }

    .blog-read:hover {
      gap: 10px;
    }

    /* ── AUDIT CTA ── */
    #audit {
      background: var(--ink);
      position: relative;
      overflow: hidden;
    }

    .audit-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(232, 65, 10, 0.08) 0%, transparent 70%);
    }

    .audit-inner {
      max-width: 1000px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .audit-form-card {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 40px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-label {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--silver);
      margin-bottom: 8px;
      display: block;
    }

    .form-input {
      width: 100%;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 14px 16px;
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      outline: none;
      transition: border-color 0.2s;
    }

    .form-input:focus {
      border-color: var(--forge);
    }

    .form-input::placeholder {
      color: var(--steel);
    }

    .form-submit {
      width: 100%;
      background: var(--forge);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 16px;
      font-family: 'Syne', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.2s;
    }

    .form-submit:hover {
      background: var(--forge-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(232, 65, 10, 0.35);
    }

    /* Report preview */
    .report-preview {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 24px;
    }

    .report-score {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 24px;
    }

    .score-ring {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: conic-gradient(var(--forge) 0deg 230deg, rgba(255, 255, 255, 0.08) 230deg 360deg);
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .score-inner {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--ink-mid);
      display: grid;
      place-items: center;
    }

    .score-num {
      font-family: 'Syne', sans-serif;
      font-size: 1.1rem;
      font-weight: 800;
      color: #fff;
    }

    .report-rows {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .report-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .report-row-label {
      font-size: 0.83rem;
      color: var(--silver);
    }

    .report-bar-track {
      width: 120px;
      height: 6px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 3px;
      overflow: hidden;
    }

    .report-bar-fill {
      height: 100%;
      border-radius: 3px;
    }

    /* ── FINAL CTA ── */
    #final-cta {
      background: linear-gradient(135deg, #150400 0%, var(--ink) 50%, #000820 100%);
      text-align: center;
      padding: 120px 5vw;
    }

    .final-cta-inner {
      max-width: 700px;
      margin: 0 auto;
    }

    .final-h2 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      font-weight: 800;
      letter-spacing: -0.04em;
      color: #fff;
      line-height: 1.08;
      margin-bottom: 20px;
    }

    .final-h2 em {
      font-style: normal;
      color: var(--forge);
    }

    .final-sub {
      font-size: 1.05rem;
      color: var(--silver);
      margin-bottom: 40px;
      line-height: 1.7;
      font-weight: 300;
    }

    /* ── BLOG ARTICLE PAGE ── */
    #blog-article {
      background: var(--ink);
      display: none;
    }

    /* ── SEO TOOL PAGE ── */
    #seo-tool {
      background: var(--ink);
    }

    .tool-inner {
      max-width: 1000px;
      margin: 0 auto;
    }

    .tool-form-area {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 48px;
      text-align: center;
      margin-top: 60px;
    }

    .url-input-row {
      display: flex;
      gap: 12px;
      max-width: 600px;
      margin: 32px auto 0;
    }

    .url-input {
      flex: 1;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 16px 20px;
      color: #fff;
      font-size: 0.95rem;
      font-family: 'DM Sans', sans-serif;
      outline: none;
      transition: border-color 0.2s;
    }

    .url-input:focus {
      border-color: var(--forge);
    }

    .url-input::placeholder {
      color: var(--steel);
    }

    .analyze-btn {
      background: var(--forge);
      color: #fff;
      border: none;
      padding: 16px 32px;
      border-radius: 10px;
      font-family: 'Syne', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      cursor: pointer;
      white-space: nowrap;
      transition: all 0.2s;
    }

    .analyze-btn:hover {
      background: var(--forge-dark);
      transform: translateY(-2px);
    }

    .report-dashboard {
      margin-top: 48px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .rdb-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px;
    }

    .rdb-card h4 {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      color: #fff;
      margin-bottom: 16px;
    }

    /* ── ABOUT / ARTICLE PAGES ── */
    .page-section {
      padding: 100px 5vw;
    }

    .page-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* ── ARTICLE ── */
    .article-header {
      max-width: 800px;
      margin: 0 auto 60px;
      text-align: center;
    }

    .article-body {
      max-width: 720px;
      margin: 0 auto;
    }

    .article-body h2 {
      font-family: 'Syne', sans-serif;
      font-size: 1.5rem;
      font-weight: 800;
      color: #fff;
      margin: 48px 0 16px;
      letter-spacing: -0.02em;
    }

    .article-body h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
      margin: 32px 0 12px;
    }

    .article-body p {
      color: var(--silver);
      line-height: 1.8;
      margin-bottom: 20px;
      font-size: 1rem;
    }

    .article-body ul {
      padding-left: 24px;
      margin-bottom: 20px;
    }

    .article-body li {
      color: var(--silver);
      line-height: 1.7;
      margin-bottom: 8px;
      font-size: 0.95rem;
    }

    .article-img-placeholder {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border);
      border-radius: 14px;
      height: 240px;
      margin: 32px 0;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 8px;
    }

    .article-img-placeholder .img-label {
      font-size: 0.78rem;
      color: var(--steel);
      text-align: center;
      max-width: 400px;
      line-height: 1.5;
    }

    /* ── NAV PAGES ── */

    /* ── FOOTER ── */
    footer {
      background: #05050a;
      border-top: 1px solid var(--border);
      padding: 72px 5vw 40px;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 60px;
    }

    .footer-brand p {
      color: var(--steel);
      font-size: 0.88rem;
      line-height: 1.7;
      margin-top: 16px;
      max-width: 280px;
    }

    .footer-col h5 {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 16px;
    }

    .footer-col a {
      display: block;
      color: var(--steel);
      text-decoration: none;
      font-size: 0.88rem;
      margin-bottom: 10px;
      transition: color 0.2s;
    }

    .footer-col a:hover {
      color: #fff;
    }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-copy {
      font-size: 0.82rem;
      color: var(--steel);
    }

    /* ── WORLD MAP SVG ── */
    .world-map-section {
      background: var(--ink);
      padding: 80px 5vw;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .world-map-inner {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .world-map-svg {
      margin: 40px auto 0;
      max-width: 900px;
      width: 100%;
      opacity: 0.7;
    }

    .map-dot {
      fill: var(--forge);
      animation: map-pulse 2s infinite;
    }

    .map-dot:nth-child(2n) {
      animation-delay: 0.5s;
    }

    .map-dot:nth-child(3n) {
      animation-delay: 1s;
    }

    @keyframes map-pulse {

      0%,
      100% {
        opacity: 1;
        r: 4
      }

      50% {
        opacity: 0.4;
        r: 6
      }
    }

    /* ── ARTICLE TOPICS ── */
    #seo-topics {
      background: var(--ink-mid);
    }

    .topics-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 40px;
    }

    .topic-item {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 12px;
      transition: border-color 0.2s;
      cursor: pointer;
    }

    .topic-item:hover {
      border-color: rgba(232, 65, 10, 0.3);
    }

    .topic-num {
      font-family: 'DM Mono', monospace;
      font-size: 0.75rem;
      color: var(--forge);
      width: 24px;
      flex-shrink: 0;
    }

    .topic-item p {
      font-size: 0.88rem;
      color: var(--silver);
      line-height: 1.4;
    }

    /* ── ANIMATED COUNTER ── */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-in {
      animation: fadeInUp 0.7s ease forwards;
    }

    .fade-in-d1 {
      animation-delay: 0.1s;
      opacity: 0;
      animation-fill-mode: forwards;
    }

    .fade-in-d2 {
      animation-delay: 0.2s;
      opacity: 0;
      animation-fill-mode: forwards;
    }

    .fade-in-d3 {
      animation-delay: 0.3s;
      opacity: 0;
      animation-fill-mode: forwards;
    }

    /* Scrollbar */
    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: var(--ink);
    }

    ::-webkit-scrollbar-thumb {
      background: rgba(232, 65, 10, 0.4);
      border-radius: 3px;
    }

    /* ── RESPONSIVE ── */
    @media(max-width:900px) {
      .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .trust-inner {
        grid-template-columns: 1fr;
      }

      .trust-metrics {
        flex-wrap: wrap;
        gap: 28px;
      }

      .problems-grid {
        grid-template-columns: 1fr;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .cases-grid {
        grid-template-columns: 1fr;
      }

      .industries-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .blog-grid {
        grid-template-columns: 1fr;
      }

      .audit-inner {
        grid-template-columns: 1fr;
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }

      .report-dashboard {
        grid-template-columns: 1fr;
      }

      .process-steps {
        grid-template-columns: 1fr 1fr;
      }

      .process-steps::before {
        display: none;
      }

      .services-head {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
      }

      .blog-head {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 12px;
      }

      nav .nav-links {
        display: none;
      }

      .topics-grid {
        grid-template-columns: 1fr;
      }
    }
    .form-code {
      display: flex;
      align-items: center;
    }