*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --black: #070c1a;
      --surface: #0d1424;
      --surface2: #121b30;
      --navy: #1a2f6b;
      --navy-mid: #1e3a8a;
      --navy-bright: #2251c5;
      --silver: #9ca8bb;
      --silver-light: #c8d2e0;
      --white: #eef2f8;
      --muted: #566070;
      --border: rgba(156,168,187,0.1);
      --border-mid: rgba(156,168,187,0.16);
    }
    html { scroll-behavior: smooth; }
    body {
      background: var(--black);
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      line-height: 1.6;
      overflow-x: hidden;
    }
    img { max-width: 100%; height: auto; }
    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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      opacity: 0.022; pointer-events: none; z-index: 999;
    }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0.9rem 2.5rem;
      border-bottom: 1px solid var(--border);
      background: rgba(7,12,26,0.92);
      backdrop-filter: blur(14px);
      animation: fadeDown 0.6s ease both;
    }
    .nav-logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
    .nav-logo img { height: 36px; width: auto; }
    .nav-logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 0.95rem; letter-spacing: 0.13em; color: var(--white); line-height: 1.1; }
    .nav-logo-text span { display: block; font-size: 0.58rem; letter-spacing: 0.28em; color: var(--silver); }
    .nav-links { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; justify-content: flex-end; }
    .nav-links a:not(.nav-cta) {
      color: var(--silver); text-decoration: none; font-size: 0.68rem;
      letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.2s;
    }
    .nav-links a:not(.nav-cta):hover { color: var(--white); }
    .nav-cta {
      font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--white); text-decoration: none;
      border: 1px solid var(--border-mid); padding: 0.55rem 1.3rem;
      transition: background 0.22s, border-color 0.22s;
    }
    .nav-cta:hover { background: var(--navy); border-color: var(--navy-mid); }

    /* HERO */
    .hero {
      min-height: 100vh; display: flex; align-items: center;
      padding: 6.5rem 2.5rem 5rem; position: relative; overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 70% at 85% 25%, rgba(26,47,107,0.6) 0%, transparent 65%),
        radial-gradient(ellipse 35% 45% at 5% 80%, rgba(30,58,138,0.18) 0%, transparent 60%);
      pointer-events: none;
    }
    .hero-bg::after {
      content: '';
      position: absolute; top: 0; left: 58%;
      width: 1px; height: 100%;
      background: linear-gradient(to bottom, transparent 5%, var(--silver) 40%, var(--silver-light) 65%, transparent 95%);
      opacity: 0.1; transform: rotate(10deg);
    }
    .hero-inner {
      max-width: 1100px; margin: 0 auto; width: 100%;
      display: grid; grid-template-columns: 1fr 320px;
      gap: 5rem; align-items: center; position: relative; z-index: 1;
    }
    .hero-eyebrow {
      font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--silver); margin-bottom: 1.5rem;
      animation: fadeUp 0.7s 0.2s ease both;
    }
    h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(4.2rem, 11vw, 9.5rem);
      line-height: 0.88; letter-spacing: 0.02em; color: var(--white);
      animation: fadeUp 0.7s 0.35s ease both;
    }
    h1 em { font-style: normal; color: var(--silver-light); }
    .h1-topic {
      display: block; margin-bottom: 1.35rem; font-family: 'DM Sans', sans-serif;
      font-size: 0.7rem; line-height: 1.4; letter-spacing: 0.28em;
      text-transform: uppercase; color: var(--silver); font-weight: 500;
    }

    .hero-tagline {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(1.1rem, 2.5vw, 1.8rem);
      letter-spacing: 0.06em;
      color: var(--silver-light);
      line-height: 1.4;
      margin-top: 1.5rem;
      animation: fadeUp 0.7s 0.45s ease both;
    }
    .hero-sub {
      max-width: 500px; margin-top: 2rem; font-size: 1.05rem;
      color: var(--silver); line-height: 1.75;
      animation: fadeUp 0.7s 0.5s ease both;
    }
    .hero-actions {
      margin-top: 3rem; display: flex; align-items: center;
      gap: 2rem; flex-wrap: wrap;
      animation: fadeUp 0.7s 0.65s ease both;
    }
    .btn-primary {
      display: inline-block; background: var(--navy-mid); color: #fff;
      text-decoration: none; font-size: 0.78rem; font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase;
      padding: 1rem 2.5rem; border: 1px solid rgba(156,168,187,0.2);
      transition: background 0.2s, transform 0.15s; position: relative; overflow: hidden;
    }
    .btn-primary::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, transparent 60%);
    }
    .btn-primary:hover { background: #2556c9; transform: translateY(-2px); }
    .btn-outline {
      display: inline-block; color: var(--white); text-decoration: none;
      font-size: 0.78rem; font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase;
      padding: 1rem 2.2rem; border: 1px solid var(--border-mid);
      transition: background 0.2s, border-color 0.2s, transform 0.15s;
    }
    .btn-outline:hover { background: var(--surface2); border-color: var(--silver); transform: translateY(-2px); }
    .hero-note { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.06em; }
    .hero-module-note {
      width: 100%; max-width: 560px; color: var(--silver);
      font-size: 0.82rem; line-height: 1.65; margin-top: -1rem;
    }
    .hero-module-note strong { color: var(--silver-light); font-weight: 500; }

    /* PAGE DIRECTORY */
    .page-directory-wrap { border-top: 1px solid var(--border); background: var(--black); }
    .page-directory h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: 0.04em; margin-bottom: 2.5rem;
    }
    .page-link-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--border-mid); }
    .page-link-card {
      display: block; min-height: 180px; padding: 2rem; color: var(--white); text-decoration: none;
      border-right: 1px solid var(--border-mid); border-bottom: 1px solid var(--border-mid);
      background: rgba(13,20,36,0.28); transition: background 0.25s, transform 0.2s;
    }
    .page-link-card:nth-child(3n) { border-right: none; }
    .page-link-card:nth-child(n+4):nth-child(-n+6) { border-bottom: none; }
    .page-link-card.pro-link-card {
      grid-column: 1 / -1; min-height: 140px; border-right: none; border-bottom: none;
      background: linear-gradient(100deg, rgba(30,58,138,0.34), rgba(13,20,36,0.35));
    }
    .page-link-card:hover { background: var(--surface); transform: translateY(-2px); }
    .page-link-card span {
      display: block; font-size: 0.62rem; letter-spacing: 0.28em;
      text-transform: uppercase; color: var(--silver); margin-bottom: 1rem;
    }
    .page-link-card strong {
      display: block; font-family: 'Bebas Neue', sans-serif;
      font-size: 1.55rem; letter-spacing: 0.05em; line-height: 1.05; margin-bottom: 0.8rem;
    }
    .page-link-card p { color: var(--muted); font-size: 0.86rem; line-height: 1.65; }

    .sla-pro-home-wrap { border-top: 1px solid var(--border-mid); border-bottom: 1px solid var(--border-mid); background: #080f20; }
    .sla-pro-home { max-width: 1100px; }
    .sla-pro-home-heading { display: grid; grid-template-columns: 1fr minmax(320px, 0.8fr); gap: 4rem; align-items: end; }
    .sla-pro-home-heading h1, .sla-pro-home-heading h2 { font-family: 'Bebas Neue', sans-serif; font-size: 6.5rem; line-height: 0.86; letter-spacing: 0.03em; }
    .sla-pro-home-heading h1 span, .sla-pro-home-heading h2 span { display: block; color: #5ec99b; font-family: 'DM Sans', sans-serif; font-size: 1.7rem; font-weight: 700; letter-spacing: 0.08em; line-height: 1.15; text-transform: uppercase; margin-top: 1rem; }
    .sla-pro-home-summary { border-left: 2px solid #5ec99b; padding-left: 1.5rem; }
    .sla-pro-home-summary strong { display: block; color: var(--white); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.75rem; }
    .sla-pro-home-summary p { color: var(--silver); font-size: 1rem; line-height: 1.75; }
    .sla-pro-home-features { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--border-mid); border-bottom: 1px solid var(--border-mid); margin-top: 3rem; }
    .sla-pro-home-features > div { padding: 1.5rem; border-right: 1px solid var(--border-mid); }
    .sla-pro-home-features > div:last-child { border-right: 0; }
    .sla-pro-home-features strong { display: block; color: var(--white); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
    .sla-pro-home-features p { color: var(--muted); font-size: 0.82rem; line-height: 1.65; margin-top: 0.65rem; }
    .sla-pro-home-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
    .sla-pro-home-actions span { color: var(--muted); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; margin-left: auto; }

    .page-hero { padding-top: 9rem; }
    .contact-wrap { border-top: 1px solid var(--border); background: var(--black); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
    .contact-grid h1, .contact-grid h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.8rem, 6vw, 5rem); line-height: 0.95; letter-spacing: 0.03em; margin-bottom: 1.25rem;
    }
    .contact-grid p { color: var(--silver); line-height: 1.75; margin-bottom: 1.4rem; }
    .contact-list { border: 1px solid var(--border-mid); }
    .contact-list a {
      display: block; color: var(--white); text-decoration: none; padding: 1.35rem 1.5rem;
      border-bottom: 1px solid var(--border-mid); transition: background 0.2s;
    }
    .contact-list a:last-child { border-bottom: none; }
    .contact-list a:hover { background: var(--surface); }

    /* Hero right: logo + stats */
    .hero-right {
      display: flex; flex-direction: column; align-items: center; gap: 2.5rem;
      animation: fadeUp 0.7s 0.8s ease both;
    }
    .hero-right img {
      width: 100%; max-width: 260px;
      filter: drop-shadow(0 12px 50px rgba(26,47,107,0.9)) drop-shadow(0 0 80px rgba(30,58,138,0.4));
    }
    .hero-pro-announcement { display: block; width: 100%; color: var(--white); text-align: center; text-decoration: none; padding: 1.4rem 0; border-top: 1px solid rgba(94,201,155,0.45); border-bottom: 1px solid rgba(94,201,155,0.45); transition: background 0.2s, transform 0.2s; }
    .hero-pro-announcement:hover { background: rgba(30,58,138,0.22); transform: translateY(-2px); }
    .hero-pro-announcement span { display: block; color: var(--silver); font-size: 0.58rem; font-style: normal; letter-spacing: 0.18em; text-transform: uppercase; }
    .hero-pro-announcement strong { display: block; font-family: 'Bebas Neue', sans-serif; color: var(--white); font-size: 3.4rem; font-weight: 400; letter-spacing: 0.04em; line-height: 0.95; margin-top: 0.6rem; }
    .hero-pro-announcement em { display: block; color: #5ec99b; font-size: 0.78rem; font-style: normal; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 0.55rem; }
    .hero-pro-announcement small { display: block; color: var(--muted); font-size: 0.56rem; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 0.7rem; }
    .hero-stats { display: flex; gap: 2.5rem; }
    .hstat strong {
      display: block; font-family: 'Bebas Neue', sans-serif;
      font-size: 2.5rem; line-height: 1; color: var(--silver-light);
    }
    .hstat span {
      font-size: 0.63rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
    }

    /* TICKER */
    .strip {
      border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
      padding: 1.1rem 0; overflow: hidden; background: var(--surface);
    }
    .strip-inner {
      display: flex; gap: 4rem;
      animation: marquee 22s linear infinite; white-space: nowrap;
    }
    .strip-item {
      font-family: 'Bebas Neue', sans-serif; font-size: 0.82rem;
      letter-spacing: 0.22em; color: var(--muted); flex-shrink: 0;
    }
    .strip-item span { color: var(--silver-light); margin-right: 0.75rem; }
    @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

    /* SECTIONS */
    section { max-width: 1100px; margin: 0 auto; padding: 6rem 2.5rem; }
    .section-label {
      font-size: 0.63rem; letter-spacing: 0.32em; text-transform: uppercase;
      color: var(--silver); margin-bottom: 0.9rem;
    }

    /* PROBLEM */
    .problem-wrap { border-top: 1px solid var(--border); }
    .problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
    .problem h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 0.95; letter-spacing: 0.03em;
    }
    .problem h2 em { font-style: normal; color: var(--silver-light); display: block; }
    .problem-body p { color: var(--silver); margin-bottom: 1.2rem; font-size: 0.97rem; line-height: 1.75; }

    /* METHOD */
    .method-wrap { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .method h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: 0.04em; margin-bottom: 0.4rem;
    }
    .method-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 3.5rem; max-width: 500px; }
    .pillars { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--border-mid); }
    .pillar {
      padding: 2.25rem 1.75rem; border-right: 1px solid var(--border-mid);
      position: relative; overflow: hidden; transition: background 0.3s;
    }
    .pillar:last-child { border-right: none; }
    .pillar::after {
      content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
      background: linear-gradient(to right, var(--navy-mid), var(--silver-light));
      transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
    }
    .pillar:hover { background: var(--surface2); }
    .pillar:hover::after { transform: scaleX(1); }
    .pillar-num { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--navy-bright); opacity: 0.5; line-height: 1; margin-bottom: 1.1rem; }
    .pillar h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.15rem; letter-spacing: 0.06em; margin-bottom: 0.65rem; color: var(--white); }
    .pillar p { font-size: 0.81rem; color: var(--muted); line-height: 1.65; }

    /* CURRICULUM */
    .curriculum-wrap { border-bottom: 1px solid var(--border); background: var(--black); }
    .curriculum-header {
      display: grid; grid-template-columns: 1fr minmax(280px, 440px);
      gap: 3rem; align-items: end; margin-bottom: 3rem;
    }
    .curriculum h1, .curriculum h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: 0.04em; line-height: 0.95;
    }
    .curriculum-header p:last-child { color: var(--silver); font-size: 0.93rem; line-height: 1.75; }
    .curriculum-grid { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--border-mid); }
    .curriculum-item {
      min-height: 150px; padding: 1.75rem 1.35rem;
      border-right: 1px solid var(--border-mid); border-bottom: 1px solid var(--border-mid);
      background: rgba(13,20,36,0.28); transition: background 0.25s, transform 0.2s;
    }
    .curriculum-item:nth-child(5n) { border-right: none; }
    .curriculum-item:nth-last-child(-n+5) { border-bottom: none; }
    .curriculum-item:hover { background: var(--surface); transform: translateY(-2px); }
    .curriculum-num {
      font-family: 'Bebas Neue', sans-serif; font-size: 1.45rem;
      color: var(--navy-bright); opacity: 0.58; line-height: 1; margin-bottom: 0.9rem;
    }
    .curriculum-item h3 {
      font-family: 'Bebas Neue', sans-serif; font-size: 1.05rem;
      letter-spacing: 0.06em; line-height: 1.15; color: var(--white);
    }
    .curriculum-cta {
      display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 2rem;
    }

    /* FOR WHO */
    .forwho h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: 0.04em; margin-bottom: 3rem; }
    .forwho-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border-mid); }
    .forwho-card { padding: 2.5rem; border-right: 1px solid var(--border-mid); border-bottom: 1px solid var(--border-mid); }
    .forwho-card:nth-child(even) { border-right: none; }
    .forwho-card:nth-last-child(-n+2) { border-bottom: none; }
    .forwho-card-label { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--silver); margin-bottom: 1rem; }
    .forwho-card p { color: var(--silver); font-size: 0.93rem; line-height: 1.75; }

    .faq-wrap { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .faq-section h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: 0.04em; line-height: 0.95; margin-bottom: 2.5rem;
    }
    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border-mid); }
    .faq-item { padding: 2rem; border-right: 1px solid var(--border-mid); border-bottom: 1px solid var(--border-mid); }
    .faq-item:nth-child(even) { border-right: none; }
    .faq-item:nth-last-child(-n+2) { border-bottom: none; }
    .faq-item h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.35rem; letter-spacing: 0.05em; line-height: 1.1; margin-bottom: 0.8rem; }
    .faq-item p { color: var(--silver); font-size: 0.9rem; line-height: 1.7; }

    /* CTA */
    .cta-wrap {
      background: linear-gradient(140deg, #0b1430 0%, #1a2f6b 55%, #0d1a40 100%);
      position: relative; overflow: hidden;
      border-top: 1px solid rgba(156,168,187,0.12);
    }
    .cta-wrap::before {
      content: 'SLA'; position: absolute; right: -0.05em; top: 50%; transform: translateY(-50%);
      font-family: 'Bebas Neue', sans-serif; font-size: clamp(10rem, 25vw, 22rem);
      color: rgba(255,255,255,0.035); line-height: 1; pointer-events: none;
    }
    .cta-wrap::after {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(to right, transparent, var(--silver-light), transparent);
      opacity: 0.3;
    }
    .cta {
      max-width: 1100px; margin: 0 auto; padding: 6rem 2.5rem;
      position: relative; z-index: 1;
      display: grid; grid-template-columns: 1fr auto; gap: 5rem; align-items: center;
    }
    .cta h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.8rem, 6vw, 5.5rem); line-height: 0.95; letter-spacing: 0.02em;
      color: #fff; margin-bottom: 1.25rem;
    }
    .cta p { color: var(--silver); max-width: 430px; font-size: 0.97rem; line-height: 1.7; }
    .cta-right { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; }
    .cta-right img { width: 150px; filter: drop-shadow(0 12px 48px rgba(26,47,107,0.9)); }
    .btn-silver {
      display: inline-block;
      background: linear-gradient(135deg, #b8c4d4 0%, #dce4f0 50%, #9ca8bb 100%);
      color: #07111f; text-decoration: none;
      font-size: 0.77rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
      padding: 1rem 2.25rem; white-space: nowrap;
      transition: transform 0.15s, box-shadow 0.15s;
    }
    .btn-silver:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
    .cta-free { font-size: 0.68rem; color: var(--muted); letter-spacing: 0.06em; }

    /* FOOTER */
    footer {
      border-top: 1px solid var(--border); padding: 2rem 2.5rem;
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
    }
    .footer-left { display: flex; align-items: center; gap: 0.75rem; }
    .footer-left img { width: auto; height: 30px; max-width: 44px; object-fit: contain; flex: 0 0 auto; }
    .footer-logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 0.88rem; letter-spacing: 0.1em; color: var(--white); line-height: 1.1; }
    .footer-logo-text span { display: block; font-size: 0.58rem; letter-spacing: 0.22em; color: var(--muted); }
    .footer-note { font-size: 0.7rem; color: var(--muted); }
    .footer-links { display: flex; gap: 1rem; flex-wrap: wrap; }
    .footer-links a { color: var(--silver); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; }
    .footer-links a:hover { color: var(--white); }

    /* ANIMATIONS */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    @media (max-width: 960px) {
      .pillars { grid-template-columns: 1fr 1fr 1fr; }
      .pillar { border-right: none; border-bottom: 1px solid var(--border-mid); }
      .pillar:last-child { border-bottom: none; }
      .curriculum-header { grid-template-columns: 1fr; gap: 1.2rem; }
      .curriculum-grid { grid-template-columns: 1fr 1fr; }
      .curriculum-item:nth-child(5n) { border-right: 1px solid var(--border-mid); }
      .curriculum-item:nth-child(even) { border-right: none; }
      .curriculum-item:nth-last-child(-n+5) { border-bottom: 1px solid var(--border-mid); }
      .curriculum-item:nth-last-child(-n+2) { border-bottom: none; }
      .cta { grid-template-columns: 1fr; }
      .cta-right { align-items: flex-start; }
    }
    /* BIO */
    .bio-wrap { border-top: 1px solid var(--border); background: var(--surface); }
    .bio-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 6rem; align-items: center; }
    .bio-left { position: relative; }
    .bio-portrait {
      width: 100%; aspect-ratio: 3/4; max-width: 340px;
      background: linear-gradient(160deg, var(--surface2) 0%, #0b1530 100%);
      border: 1px solid var(--border-mid);
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
    }
    .bio-portrait-inner {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 7rem; color: var(--navy-mid); opacity: 0.4; letter-spacing: 0.05em;
      line-height: 1; user-select: none;
    }
    /* Silver corner accents */
    .bio-portrait::before, .bio-portrait::after {
      content: ''; position: absolute; width: 28px; height: 28px;
      border-color: var(--silver-light); border-style: solid; opacity: 0.4;
    }
    .bio-portrait::before { top: 12px; left: 12px; border-width: 1px 0 0 1px; }
    .bio-portrait::after  { bottom: 12px; right: 12px; border-width: 0 1px 1px 0; }
    .bio-badge {
      position: absolute; bottom: -1px; left: -1px; right: -1px;
      padding: 1.25rem 1.5rem;
      background: linear-gradient(to top, rgba(7,12,26,0.98) 60%, transparent);
    }
    .bio-badge-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 0.06em; color: var(--white); }
    .bio-badge-title { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--silver); margin-top: 0.2rem; }
    .bio-right {}
    .bio-right h1, .bio-right h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 0.95; letter-spacing: 0.03em; margin-bottom: 1.75rem;
    }
    .bio-right h1 em, .bio-right h2 em { font-style: normal; color: var(--silver-light); }
    .bio-right p { color: var(--silver); font-size: 0.97rem; line-height: 1.8; margin-bottom: 1.2rem; }
    .bio-right p:last-of-type { margin-bottom: 2rem; }
    .bio-credentials { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }
    .bio-cred { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
    .bio-cred strong { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; color: var(--silver-light); letter-spacing: 0.06em; margin-bottom: 0.2rem; font-weight: 400; }

    /* BLOG */
    .blog-wrap { border-top: 1px solid var(--border); }
    .blog-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }
    .blog-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: 0.04em; }
    .blog-header-right { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--silver); text-decoration: none; border-bottom: 1px solid var(--border-mid); padding-bottom: 0.15rem; transition: color 0.2s, border-color 0.2s; }
    .blog-header-right:hover { color: var(--white); border-color: var(--silver); }
    .blog-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1px; border: 1px solid var(--border-mid); }
    .blog-card { padding: 2.25rem 2rem; border-right: 1px solid var(--border-mid); position: relative; overflow: hidden; transition: background 0.25s; cursor: pointer; text-decoration: none; display: block; color: inherit; }
    .blog-card:last-child { border-right: none; }
    .blog-card:hover { background: var(--surface2); }
    .blog-card::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(to right, var(--navy-mid), var(--silver-light));
      transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
    }
    .blog-card:hover::after { transform: scaleX(1); }
    .blog-tag { font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--silver); margin-bottom: 1rem; }
    .blog-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 0.04em; line-height: 1.1; margin-bottom: 0.9rem; color: var(--white); }
    .blog-card:first-child h3 { font-size: 2rem; }
    .blog-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.5rem; }
    .blog-meta { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: auto; }
    .blog-arrow { display: inline-block; margin-left: 0.4rem; transition: transform 0.2s; }
    .blog-card:hover .blog-arrow { transform: translateX(3px); }

    /* VIDEOS */
    .videos-wrap { background: var(--surface); border-top: 1px solid var(--border); }
    .videos-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; gap: 1.5rem; flex-wrap: wrap; }
    .videos-header h1, .videos-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: 0.04em; }
    .videos-header p { color: var(--muted); max-width: 430px; font-size: 0.9rem; line-height: 1.7; }
    .video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--border-mid); background: var(--border-mid); }
    .video-card { background: var(--surface); padding: 1.25rem; }
    .video-frame {
      position: relative; width: 100%; aspect-ratio: 16 / 9;
      background: var(--black); border: 1px solid var(--border);
      overflow: hidden;
    }
    .video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
    .video-card h3 {
      font-family: 'Bebas Neue', sans-serif; font-size: 1.15rem;
      letter-spacing: 0.06em; margin-top: 1rem; color: var(--white);
    }
    .video-card p { color: var(--muted); font-size: 0.78rem; line-height: 1.6; margin-top: 0.45rem; }

    /* FOUNDATION MODULE */
    .module-wrap { border-top: 1px solid var(--border); background: var(--black); }
    .module-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 4rem; align-items: start; }
    .module h1, .module h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.8rem, 6vw, 5rem); line-height: 0.95; letter-spacing: 0.03em;
      margin-bottom: 1.5rem;
    }
    .module h1 em, .module h2 em { font-style: normal; color: var(--silver-light); }
    .module-lede { color: var(--silver); font-size: 1rem; line-height: 1.8; margin-bottom: 1.25rem; max-width: 560px; }
    .module-list { list-style: none; margin-top: 2rem; border-top: 1px solid var(--border); }
    .module-list li {
      color: var(--silver); font-size: 0.9rem; line-height: 1.6;
      padding: 0.85rem 0 0.85rem 1.5rem; border-bottom: 1px solid var(--border);
      position: relative;
    }
    .module-list li::before {
      content: ''; position: absolute; left: 0; top: 1.45rem;
      width: 7px; height: 7px; background: var(--silver-light);
    }
    .module-form {
      border: 1px solid var(--border-mid); background: var(--surface);
      padding: 2rem; position: sticky; top: 6rem;
    }
    .module-form h3 {
      font-family: 'Bebas Neue', sans-serif; font-size: 2rem;
      letter-spacing: 0.05em; line-height: 1; margin-bottom: 0.8rem;
    }
    .module-form p { color: var(--muted); font-size: 0.86rem; line-height: 1.65; margin-bottom: 1.5rem; }
    .form-field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
    .form-field label { color: var(--silver); font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; }
    .form-field input {
      width: 100%; background: var(--black); color: var(--white);
      border: 1px solid var(--border-mid); padding: 0.95rem 1rem;
      font: inherit; font-size: 0.95rem; outline: none;
    }
    .form-field input:focus { border-color: var(--silver); }
    .form-hidden { display: none; }
    .module-submit {
      width: 100%; border: 0; cursor: pointer; margin-top: 0.5rem;
      background: linear-gradient(135deg, #b8c4d4 0%, #dce4f0 50%, #9ca8bb 100%);
      color: #07111f; font-size: 0.77rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase; padding: 1rem 1.25rem;
      transition: transform 0.15s, box-shadow 0.15s;
    }
    .module-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.35); }
    .form-note { color: var(--muted); font-size: 0.68rem; line-height: 1.6; margin-top: 1rem; }

    @media (max-width: 900px) {
      .bio-grid { grid-template-columns: 1fr; gap: 3rem; }
      .bio-portrait { max-width: 260px; }
      .blog-grid { grid-template-columns: 1fr; }
      .blog-card { border-right: none; border-bottom: 1px solid var(--border-mid); }
      .blog-card:last-child { border-bottom: none; }
      .video-grid { grid-template-columns: 1fr; }
      .module-grid { grid-template-columns: 1fr; gap: 3rem; }
      .module-form { position: static; }
      .page-link-grid { grid-template-columns: 1fr 1fr; }
      .page-link-card:nth-child(3n) { border-right: 1px solid var(--border-mid); }
      .page-link-card:nth-child(even) { border-right: none; }
      .page-link-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--border-mid); }
      .page-link-card:nth-last-child(-n+2) { border-bottom: none; }
      .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    }
    @media (max-width: 768px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links { width: 100%; justify-content: flex-start; gap: 0.85rem; }
      .hero { padding: 4.5rem 1.5rem 4rem; }
      .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
      section { padding: 4rem 1.5rem; }
      .problem-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .pillars { grid-template-columns: 1fr 1fr; }
      .curriculum-grid { grid-template-columns: 1fr; }
      .curriculum-item { min-height: 0; border-right: none !important; }
      .curriculum-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border-mid); }
      .curriculum-item:last-child { border-bottom: none; }
      .forwho-grid { grid-template-columns: 1fr; }
      .forwho-card { border-right: none; }
      .forwho-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--border-mid); }
      .forwho-card:last-child { border-bottom: none; }
      .faq-grid { grid-template-columns: 1fr; }
      .faq-item { border-right: none; }
      .faq-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border-mid); }
      .faq-item:last-child { border-bottom: none; }
      .page-link-grid { grid-template-columns: 1fr; }
      .page-link-card { border-right: none !important; }
      .page-link-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--border-mid); }
      .page-link-card:last-child { border-bottom: none; }
      .page-link-card.pro-link-card { grid-column: auto; }
      .sla-pro-home-heading, .sla-pro-home-features { grid-template-columns: 1fr; gap: 1.5rem; }
      .sla-pro-home-heading h2 { font-size: 3.5rem; }
      .sla-pro-home-heading h2 span { font-size: 1.15rem; }
      .sla-pro-home-features > div { border-right: 0; border-bottom: 1px solid var(--border-mid); }
      .sla-pro-home-features > div:last-child { border-bottom: 0; }
      .sla-pro-home-actions { align-items: stretch; flex-direction: column; }
      .sla-pro-home-actions a { text-align: center; }
      .sla-pro-home-actions span { margin-left: 0; text-align: center; }
      footer { flex-direction: column; align-items: flex-start; }
    }
