
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    a, button { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
    img { max-width: 100%; display: block; }

    :root {
      --red: #D4202A;
      --blue: #0056B8;
      --black: #000000;
      --white: #FFFFFF;
      --grey: #F4F4F4;
      --mid-grey: #CCCCCC;
      --dark-grey: #1a1a1a;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--white);
      color: var(--black);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    @keyframes navDrop {
      from { transform: translateY(-100%); opacity: 0; }
      to   { transform: translateY(0); opacity: 1; }
    }
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 60px;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(8px);
      border-bottom: 2px solid var(--blue);
      animation: navDrop 0.7s cubic-bezier(.22,.61,.36,1) both;
    }

    .logo-text {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      line-height: 1;
      font-size: 22px;
      letter-spacing: -0.5px;
    }
    .logo-text .my { color: var(--red); display: block; }
    .logo-text .franchise { color: var(--blue); display: block; }
    .logo-text .guide-row { display: flex; align-items: center; gap: 3px; }
    .logo-text .guide { color: var(--black); }
    .logo-pin {
      width: 16px;
      height: 16px;
      margin-top: 2px;
    }

    nav .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }
    nav .nav-links a {
      text-decoration: none;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--black);
      transition: color 0.2s;
      position: relative;
      padding-bottom: 4px;
    }
    nav .nav-links a:hover { color: var(--blue); }
    nav .nav-links a:not(.nav-cta)::after {
      content: '';
      position: absolute;
      left: 0; bottom: 0;
      width: 0;
      height: 2px;
      background: var(--blue);
      transition: width 0.25s ease;
    }
    nav .nav-links a:not(.nav-cta):hover::after { width: 100%; }
    nav .nav-links li {
      opacity: 0;
      animation: navDrop 0.6s ease both;
    }
    nav .nav-links li:nth-child(1) { animation-delay: .05s; }
    nav .nav-links li:nth-child(2) { animation-delay: .10s; }
    nav .nav-links li:nth-child(3) { animation-delay: .15s; }
    nav .nav-links li:nth-child(4) { animation-delay: .20s; }
    nav .nav-links li:nth-child(5) { animation-delay: .25s; }
    nav .nav-links li:nth-child(6) { animation-delay: .30s; }

    .nav-cta {
      background: var(--red);
      color: var(--white) !important;
      padding: 10px 22px;
      border-radius: 2px;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: #b01820 !important; color: var(--white) !important; }

    /* Mobile hamburger toggle (hidden on desktop) */
    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 34px;
      height: 34px;
      background: none;
      border: none;
      cursor: pointer;
      z-index: 101;
      padding: 0;
    }
    .nav-toggle span {
      display: block;
      width: 100%;
      height: 2.5px;
      background: var(--black);
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

    .nav-scrim {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.4);
      z-index: 99;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .nav-scrim.open { display: block; opacity: 1; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      background: var(--blue);
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 56px;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 130px 60px 70px;
    }

    .hero-photo {
      position: relative;
      z-index: 2;
      animation: fadeUp 1.1s ease both;
      animation-delay: .1s;
    }
    .hero-photo-tag {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
      text-align: right;
      margin-bottom: 14px;
    }
    .hero-photo-frame {
      aspect-ratio: 4/3;
      overflow: hidden;
      position: relative;
      border: 1px solid rgba(255,255,255,0.2);
    }
    .hero-photo-frame img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center 30%;
      display: block;
    }
    .hero-photo-frame::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(0,86,184,0) 55%, rgba(0,0,0,0.35) 100%);
      pointer-events: none;
    }
    .hero-photo-cap {
      margin-top: 12px;
      font-size: 11px;
      font-weight: 600;
      color: rgba(255,255,255,0.5);
      text-align: right;
      letter-spacing: 0.5px;
    }
    @media (max-width: 900px) {
      .hero { grid-template-columns: 1fr; }
      .hero-photo { order: -1; }
      .hero-photo-tag { text-align: left; }
      .hero-photo-cap { text-align: left; }
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: rgba(255,255,255,0.04);
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: -80px; left: 30%;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: rgba(212,32,42,0.15);
      pointer-events: none;
    }

    /* dotted path line */
    .hero-dots {
      position: absolute;
      right: 60px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 10px;
      opacity: 0.25;
    }
    .hero-dots span {
      display: block;
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--white);
    }

    .hero-content {
      max-width: 620px;
      position: relative;
      z-index: 2;
      animation: fadeUp 0.9s ease both;
    }

    .hero-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      margin-bottom: 24px;
    }

    .hero h1 {
      font-size: clamp(30px, 4.2vw, 46px);
      font-weight: 900;
      line-height: 1.2;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 28px;
    }

    .hero h1 .accent { color: var(--red); }
    .hero h1 .accent-line {
      display: block;
      position: relative;
    }

    .hero-sub {
      font-size: 17px;
      font-weight: 400;
      line-height: 1.7;
      color: rgba(255,255,255,0.82);
      max-width: 560px;
      margin-bottom: 44px;
    }

    .hero-positioning {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-bottom: 40px;
      margin-top: -28px;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--red);
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 16px 36px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: background 0.2s, transform 0.2s;
    }
    .btn-primary:hover { background: #b01820; transform: translateY(-2px); }

    .btn-outline {
      background: transparent;
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 14px 36px;
      border: 2px solid rgba(255,255,255,0.5);
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: border-color 0.2s, color 0.2s, transform 0.2s;
    }
    .btn-outline:hover { border-color: var(--white); transform: translateY(-2px); }

    /* ── SPLIT CTA ── */
    .cta-split { display: flex; flex-direction: column; gap: 14px; }

    .cta-split-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
    }

    .cta-split-buttons {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .btn-split {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 18px 24px;
      text-decoration: none;
      border: 1.5px solid rgba(255,255,255,0.2);
      background: rgba(255,255,255,0.05);
      backdrop-filter: blur(6px);
      transition: background 0.25s, border-color 0.25s, transform 0.25s;
      max-width: 420px;
    }
    .btn-split:hover { transform: translateX(6px); }
    .btn-split.investor:hover { background: var(--red); border-color: var(--red); }
    .btn-split.brand:hover { background: var(--blue); border-color: var(--blue); }

    .btn-split-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--white);
    }
    .btn-split-icon svg { width: 18px; height: 18px; }

    .btn-split-text {
      display: flex;
      flex-direction: column;
      gap: 3px;
      flex: 1;
    }
    .btn-split-title {
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--white);
    }
    .btn-split-sub {
      font-size: 10px;
      font-weight: 500;
      color: rgba(255,255,255,0.5);
      letter-spacing: 0.3px;
    }

    .btn-split-arrow {
      width: 18px;
      height: 18px;
      color: rgba(255,255,255,0.4);
      flex-shrink: 0;
      transition: color 0.2s;
    }
    .btn-split:hover .btn-split-arrow { color: var(--white); }

    /* ── MISSION STRIP ── */
    .mission-strip {
      background: var(--black);
      padding: 40px 60px;
      display: flex;
      align-items: center;
      gap: 32px;
      overflow: hidden;
    }

    .mission-strip .strip-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red);
      white-space: nowrap;
      flex-shrink: 0;
    }

    .strip-divider {
      width: 40px;
      height: 2px;
      background: var(--red);
      flex-shrink: 0;
    }

    .mission-strip p {
      font-size: 15px;
      font-weight: 600;
      color: var(--white);
      line-height: 1.6;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* ── ABOUT ── */
    .about {
      padding: 100px 60px;
      background: var(--white);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .section-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 16px;
    }

    .about h2 {
      font-size: clamp(28px, 4vw, 46px);
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1.1;
      color: var(--black);
      margin-bottom: 28px;
    }
    .about h2 span { color: var(--blue); }

    .about p {
      font-size: 15px;
      line-height: 1.8;
      color: #444;
      margin-bottom: 16px;
    }

    .about-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .stat-box {
      border-left: 4px solid var(--blue);
      padding: 20px 24px;
      background: var(--grey);
    }
    .stat-box.red { border-left-color: var(--red); }

    .stat-box .stat-val {
      font-size: 32px;
      font-weight: 900;
      color: var(--blue);
      line-height: 1;
      margin-bottom: 6px;
    }
    .stat-box.red .stat-val { color: var(--red); }

    .stat-box .stat-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #666;
    }

    /* ── DIVISIONS ── */
    .divisions {
      background: var(--grey);
      padding: 100px 60px;
    }

    .divisions-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .divisions-header h2 {
      font-size: clamp(28px, 4vw, 50px);
      font-weight: 900;
      text-transform: uppercase;
      color: var(--black);
      line-height: 1.1;
      margin-bottom: 16px;
    }
    .divisions-header h2 span { color: var(--blue); }

    .divisions-header p {
      font-size: 15px;
      color: #555;
      max-width: 500px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .divisions-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    .division-card {
      background: var(--white);
      padding: 48px 40px;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s;
    }
    .division-card:hover { transform: translateY(-6px); }

    .division-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
    }
    .division-card.media::before { background: var(--red); }
    .division-card.advisory::before { background: var(--blue); }
    .division-card.training::before { background: var(--black); }

    .division-num {
      font-size: 72px;
      font-weight: 900;
      line-height: 1;
      margin-bottom: 24px;
      opacity: 0.06;
      position: absolute;
      top: 20px; right: 24px;
    }
    .media .division-num { color: var(--red); }
    .advisory .division-num { color: var(--blue); }
    .training .division-num { color: var(--black); }

    .division-tag {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      margin-bottom: 14px;
      display: inline-block;
      padding: 4px 10px;
    }
    .media .division-tag { background: rgba(212,32,42,0.1); color: var(--red); }
    .advisory .division-tag { background: rgba(0,86,184,0.1); color: var(--blue); }
    .training .division-tag { background: rgba(0,0,0,0.07); color: var(--black); }

    .division-card h3 {
      font-size: 22px;
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 16px;
      line-height: 1.2;
    }

    .division-card .division-quote {
      font-size: 13px;
      font-style: italic;
      font-weight: 600;
      color: #555;
      border-left: 3px solid var(--mid-grey);
      padding-left: 14px;
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .division-card p {
      font-size: 14px;
      line-height: 1.75;
      color: #555;
      margin-bottom: 24px;
    }

    .division-for {
      margin-top: 20px;
    }
    .division-for .for-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #999;
      margin-bottom: 10px;
    }
    .division-for ul {
      list-style: none;
      padding: 0;
    }
    .division-for ul li {
      font-size: 13px;
      font-weight: 600;
      color: #333;
      padding: 6px 0;
      border-bottom: 1px solid #eee;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .division-for ul li::before {
      content: '';
      display: block;
      width: 6px; height: 6px;
      border-radius: 50%;
      flex-shrink: 0;
    }
    .media .division-for ul li::before { background: var(--red); }
    .advisory .division-for ul li::before { background: var(--blue); }
    .training .division-for ul li::before { background: var(--black); }

    /* ── WHO THIS IS FOR ── */
    .who-for {
      background: var(--black);
      padding: 100px 60px;
    }

    .who-for-header {
      margin-bottom: 56px;
    }

    .who-for-header h2 {
      font-size: clamp(26px, 4vw, 44px);
      font-weight: 900;
      text-transform: uppercase;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 0;
      margin-top: 12px;
    }
    .who-for-header h2 span { color: var(--red); }

    .who-for-header .section-label { color: rgba(255,255,255,0.4); }

    .who-for-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    .who-card {
      background: #111;
      padding: 44px 36px;
      border-top: 3px solid transparent;
      transition: border-color 0.3s, transform 0.3s;
      position: relative;
    }
    .who-card:nth-child(1) { border-top-color: var(--red); }
    .who-card:nth-child(2) { border-top-color: var(--blue); }
    .who-card:nth-child(3) { border-top-color: #fff; }
    .who-card:hover { transform: translateY(-4px); background: #161616; }

    .who-icon {
      margin-bottom: 24px;
      width: 44px; height: 44px;
    }
    .who-icon svg { width: 100%; height: 100%; }

    .who-card h3 {
      font-size: 17px;
      font-weight: 900;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 14px;
      line-height: 1.2;
    }

    .who-card p {
      font-size: 14px;
      line-height: 1.8;
      color: rgba(255,255,255,0.55);
      font-weight: 400;
    }

    @media (max-width: 900px) {
      .who-for { padding: 60px 24px; }
      .who-for-grid { grid-template-columns: 1fr; gap: 12px; }
    }

    /* ── HOW WE HELP ── */
    .how-help {
      background: var(--white);
      padding: 100px 60px;
    }

    .how-help-header {
      margin-bottom: 64px;
    }
    .how-help-header h2 {
      font-size: clamp(26px, 4vw, 46px);
      font-weight: 900;
      text-transform: uppercase;
      color: var(--black);
      line-height: 1.1;
      margin-top: 12px;
    }
    .how-help-header h2 span { color: var(--blue); }

    .how-help-item {
      display: grid;
      grid-template-columns: 100px 1fr;
      gap: 40px;
      padding: 56px 0;
      border-top: 1px solid #e8e8e8;
      align-items: start;
    }
    .how-help-item.alt { background: transparent; }

    .how-num {
      font-size: 56px;
      font-weight: 900;
      color: #eee;
      line-height: 1;
      padding-top: 4px;
    }

    .how-tag {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 10px;
    }

    .how-content h3 {
      font-size: 22px;
      font-weight: 900;
      text-transform: uppercase;
      color: var(--black);
      margin-bottom: 16px;
      line-height: 1.2;
    }

    .how-content > p {
      font-size: 15px;
      line-height: 1.8;
      color: #555;
      margin-bottom: 28px;
      max-width: 680px;
    }

    .how-learn {
      background: var(--grey);
      border-left: 4px solid var(--blue);
      padding: 24px 28px;
      margin-bottom: 20px;
      max-width: 600px;
    }

    .how-learn-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 14px;
    }

    .how-learn ul { list-style: none; }
    .how-learn ul li {
      font-size: 14px;
      color: #333;
      font-weight: 600;
      padding: 7px 0;
      border-bottom: 1px solid #e0e0e0;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .how-learn ul li:last-child { border-bottom: none; }
    .how-learn ul li::before {
      content: '';
      display: block;
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--blue);
      flex-shrink: 0;
    }

    .how-footnote {
      font-size: 13px !important;
      font-style: italic;
      color: #888 !important;
      border-left: 3px solid var(--mid-grey);
      padding-left: 14px;
      margin-top: 4px !important;
    }

    /* ── WHY SECTION ── */
    .why-section {
      background: var(--grey);
      padding: 90px 60px;
    }

    .why-inner {
      max-width: 780px;
    }

    .why-inner h2 {
      font-size: clamp(26px, 4vw, 46px);
      font-weight: 900;
      text-transform: uppercase;
      color: var(--black);
      line-height: 1.1;
      margin-top: 12px;
      margin-bottom: 28px;
    }
    .why-inner h2 span { color: var(--blue); }
    .why-inner p {
      font-size: 16px;
      line-height: 1.85;
      color: #444;
      margin-bottom: 16px;
    }

    /* ── FOUNDER ── */
    .founder-section {
      background: var(--blue);
      padding: 100px 60px;
    }

    .founder-inner {
      display: grid;
      grid-template-columns: 240px 1fr;
      gap: 56px;
      align-items: start;
    }

    .founder-text .section-label { color: rgba(255,255,255,0.5); }

    .founder-text h2 {
      font-size: clamp(24px, 3.5vw, 40px);
      font-weight: 900;
      text-transform: uppercase;
      color: var(--white);
      line-height: 1.1;
      margin-top: 12px;
      margin-bottom: 24px;
    }
    .founder-text h2 span { color: var(--red); }

    .founder-text p {
      font-size: 15px;
      line-height: 1.8;
      color: rgba(255,255,255,0.75);
      margin-bottom: 14px;
    }

    .founder-creds {
      display: flex;
      gap: 32px;
      margin-top: 36px;
      flex-wrap: wrap;
    }

    .cred-item {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .cred-val {
      font-size: 26px;
      font-weight: 900;
      color: var(--white);
      line-height: 1;
    }
    .cred-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
    }

    .founder-photo-block {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .founder-photo-placeholder {
      width: 100%;
      aspect-ratio: 3/4;
      position: relative;
      overflow: hidden;
      border-radius: 2px;
    }

    .photo-overlay {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      text-align: center;
      padding: 24px;
    }
    .photo-overlay p {
      font-size: 14px;
      font-weight: 700;
      color: rgba(255,255,255,0.5);
      margin: 0;
      text-transform: uppercase;
      letter-spacing: 2px;
    }
    .photo-overlay span {
      font-size: 11px;
      color: rgba(255,255,255,0.3);
      font-weight: 400;
    }

    .founder-name-tag {
      background: var(--red);
      padding: 20px 28px;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .fname {
      font-size: 20px;
      font-weight: 900;
      text-transform: uppercase;
      color: var(--white);
      letter-spacing: 1px;
    }
    .ftitle {
      font-size: 11px;
      font-weight: 600;
      color: rgba(255,255,255,0.75);
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .fmfa {
      font-size: 10px;
      font-weight: 600;
      color: rgba(255,255,255,0.5);
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-top: 2px;
    }

    @media (max-width: 900px) {
      .how-help { padding: 60px 24px; }
      .how-help-item { grid-template-columns: 1fr; gap: 16px; }
      .how-num { font-size: 36px; }
      .why-section { padding: 60px 24px; }
      .founder-section { padding: 60px 24px; }
      .founder-inner { grid-template-columns: 1fr; gap: 40px; }
      .founder-creds { gap: 20px; }
    }

    /* ── CTA ── */
    .cta-section {
      background: var(--blue);
      padding: 100px 60px;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: -120px; right: -80px;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: rgba(255,255,255,0.04);
    }

    .cta-inner {
      max-width: 680px;
      position: relative;
      z-index: 2;
    }

    .cta-section h2 {
      font-size: clamp(30px, 5vw, 56px);
      font-weight: 900;
      text-transform: uppercase;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 20px;
    }
    .cta-section h2 .accent { color: var(--red); }

    .cta-section p {
      font-size: 16px;
      color: rgba(255,255,255,0.8);
      line-height: 1.7;
      margin-bottom: 48px;
      max-width: 500px;
    }

    /* Contact Form */
    .contact-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      max-width: 600px;
    }

    .form-success {
      grid-column: 1 / -1;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.3);
      padding: 16px 20px;
      text-align: center;
    }
    .form-success p {
      font-size: 14px !important;
      font-weight: 700 !important;
      color: var(--white) !important;
      margin: 0 !important;
      letter-spacing: 1px;
    }

    .contact-form .full-width { grid-column: 1 / -1; }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .form-group label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.25);
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      padding: 14px 16px;
      outline: none;
      transition: border-color 0.2s, background 0.2s;
      border-radius: 0;
      -webkit-appearance: none;
    }
    .form-group select option { background: var(--blue); color: var(--white); }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--white);
      background: rgba(255,255,255,0.15);
    }
    .form-group textarea { resize: vertical; min-height: 110px; }

    .form-submit {
      grid-column: 1 / -1;
      background: var(--red);
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      padding: 18px;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
    }
    .form-submit:hover { background: #b01820; transform: translateY(-2px); }

    .footer-social {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .social-icon {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.6);
      transition: background 0.2s, color 0.2s, transform 0.2s;
      text-decoration: none;
    }
    .social-icon svg { width: 17px; height: 17px; }
    .social-icon:hover { background: var(--red); color: var(--white); border-color: var(--red); transform: translateY(-3px); }
    .social-icon.whatsapp-icon:hover { background: #25D366; border-color: #25D366; }

    .form-reassurance {
      grid-column: 1 / -1;
      font-size: 11px;
      font-weight: 600;
      color: rgba(255,255,255,0.45);
      letter-spacing: 0.5px;
      margin-top: -4px;
    }

    /* ── BACK TO TOP ── */
    .back-to-top {
      position: fixed;
      bottom: 100px;
      right: 28px;
      z-index: 998;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      border: 1.5px solid rgba(255,255,255,0.2);
      backdrop-filter: blur(8px);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s, transform 0.3s, background 0.2s;
      box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    }
    .back-to-top.visible {
      opacity: 1;
      pointer-events: auto;
    }
    .back-to-top:hover {
      background: var(--red);
      border-color: var(--red);
      transform: translateY(-3px);
    }
    .back-to-top svg { width: 18px; height: 18px; }

    /* ── FLOATING WHATSAPP ── */
    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 999;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #25D366;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,0.45);
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .wa-float svg { width: 28px; height: 28px; }
    .wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }

    .wa-tooltip {
      position: absolute;
      right: 68px;
      background: var(--black);
      color: var(--white);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 8px 14px;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s;
    }
    .wa-float:hover .wa-tooltip { opacity: 1; }

    /* ── FOOTER ── */
    footer {
      background: var(--dark-grey);
      padding: 48px 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 24px;
    }

    .footer-logo .logo-text { font-size: 18px; }

    .footer-links {
      display: flex;
      gap: 28px;
      list-style: none;
      flex-wrap: wrap;
    }
    .footer-links a {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--white); }

    .footer-hashtags {
      font-size: 11px;
      font-weight: 600;
      color: rgba(255,255,255,0.25);
      letter-spacing: 0.5px;
    }

    .footer-copy {
      font-size: 11px;
      color: rgba(255,255,255,0.25);
      letter-spacing: 0.5px;
    }

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

    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Fade from left */
    .reveal-left {
      opacity: 0;
      transform: translateX(-50px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .reveal-left.visible { opacity: 1; transform: translateX(0); }

    /* Fade from right */
    .reveal-right {
      opacity: 0;
      transform: translateX(50px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .reveal-right.visible { opacity: 1; transform: translateX(0); }

    /* Scale up */
    .reveal-scale {
      opacity: 0;
      transform: scale(0.9);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal-scale.visible { opacity: 1; transform: scale(1); }

    /* Stagger children */
    .stagger-children .stagger-item {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .stagger-children.visible .stagger-item:nth-child(1) { opacity:1; transform:translateY(0); transition-delay:0.05s; }
    .stagger-children.visible .stagger-item:nth-child(2) { opacity:1; transform:translateY(0); transition-delay:0.15s; }
    .stagger-children.visible .stagger-item:nth-child(3) { opacity:1; transform:translateY(0); transition-delay:0.25s; }
    .stagger-children.visible .stagger-item:nth-child(4) { opacity:1; transform:translateY(0); transition-delay:0.35s; }
    .stagger-children.visible .stagger-item:nth-child(5) { opacity:1; transform:translateY(0); transition-delay:0.45s; }

    /* Stat hover */
    .stat-box { transition: transform 0.3s, box-shadow 0.3s; }
    .stat-box:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
    .stat-val { transition: transform 0.3s, color 0.3s; }
    .stat-box:hover .stat-val { transform: scale(1.12); color: var(--red); }
    .stat-box.red:hover .stat-val { color: var(--white); }

    /* How-help item accent on hover */
    .how-help-item { transition: box-shadow 0.3s; }
    .how-help-item:hover { box-shadow: 4px 0 0 var(--red) inset; }
    .how-help-item.alt:hover { box-shadow: 4px 0 0 var(--blue) inset; }
    .how-num { transition: color 0.3s, transform 0.4s; }
    .how-help-item:hover .how-num { color: var(--red); transform: scale(1.1); }
    .how-help-item.alt:hover .how-num { color: var(--blue); }

    /* Testimonial lift */
    .tcard { transition: transform 0.3s, box-shadow 0.3s; }
    .tcard:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(0,0,0,0.13); }

    /* FAQ hover */
    .faq-item { transition: background 0.2s; }
    .faq-item:hover { background: rgba(255,255,255,0.04); padding-left: 6px; transition: padding-left 0.2s, background 0.2s; }

    /* Founder photo zoom */
    .founder-photo-placeholder { overflow: hidden; }
    .founder-photo-placeholder img { transition: transform 0.6s ease; }
    .founder-photo-placeholder:hover img { transform: scale(1.04); }

    /* Download CTA pulse */
    @keyframes ctaPulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(212,32,42,0.4); }
      50% { box-shadow: 0 0 0 8px rgba(212,32,42,0); }
    }
    .download-cta { animation: ctaPulse 2.5s ease infinite; }
    .download-cta:hover { animation: none; }

    /* Scroll progress bar */
    .scroll-progress {
      position: fixed;
      top: 0; left: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--red), var(--blue));
      z-index: 9999;
      width: 0%;
      transition: width 0.1s linear;
    }

    /* ── TRUSTED BY MARQUEE ── */
    .trusted-by {
      background: var(--grey);
      padding: 80px 60px 60px;
      overflow: hidden;
    }

    .trusted-header {
      margin-bottom: 48px;
    }
    .trusted-header h2 {
      font-size: clamp(24px, 3.5vw, 40px);
      font-weight: 900;
      text-transform: uppercase;
      color: var(--black);
      line-height: 1.1;
      margin-top: 12px;
    }
    .trusted-header h2 span { color: var(--blue); }

    .logo-marquee {
      width: 100%;
      overflow: hidden;
      position: relative;
      mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    }

    .logo-track {
      display: flex;
      align-items: center;
      gap: 60px;
      width: max-content;
      animation: marquee 28s linear infinite;
    }
    .logo-track:hover { animation-play-state: paused; }

    @keyframes marquee {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .logo-item {
      flex-shrink: 0;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 10px;
    }

    .logo-item img {
      height: 50px;
      width: auto;
      max-width: 160px;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.6;
      transition: filter 0.3s, opacity 0.3s;
    }
    .logo-item:hover img {
      filter: grayscale(0%);
      opacity: 1;
    }

    /* TreeAMS has black bg — invert it */
    .logo-item img.logo-dark {
      filter: grayscale(100%) invert(1);
      background: transparent;
    }
    .logo-item:hover img.logo-dark {
      filter: invert(1);
    }

    /* ── DOWNLOAD CTA ── */
    .download-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 20px;
      background: transparent;
      border: 2px solid var(--red);
      color: var(--red);
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 12px 22px;
      text-decoration: none;
      transition: background 0.2s, color 0.2s, transform 0.2s;
    }
    .download-cta:hover {
      background: var(--red);
      color: var(--white);
      transform: translateY(-2px);
    }

    /* ── TESTIMONIALS ── */
    .testimonials {
      background: var(--white);
      padding: 100px 60px;
    }

    .testimonials-header {
      margin-bottom: 56px;
    }
    .testimonials-header h2 {
      font-size: clamp(26px, 4vw, 44px);
      font-weight: 900;
      text-transform: uppercase;
      color: var(--black);
      line-height: 1.1;
      margin-top: 12px;
    }
    .testimonials-header h2 span { color: var(--blue); }

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

    .tcard {
      background: var(--grey);
      padding: 36px 32px;
      border-top: 4px solid var(--blue);
      display: flex;
      flex-direction: column;
      gap: 20px;
      transition: transform 0.3s;
    }
    .tcard:hover { transform: translateY(-4px); }
    .tcard:nth-child(1) { border-top-color: var(--red); }
    .tcard:nth-child(2) { border-top-color: var(--blue); }
    .tcard:nth-child(3) { border-top-color: var(--black); }

    .tcard-stars {
      color: #F5A623;
      font-size: 16px;
      letter-spacing: 2px;
    }

    .tcard-body {
      font-size: 14px;
      line-height: 1.8;
      color: #444;
      font-style: italic;
      flex: 1;
    }

    .tcard-author {
      display: flex;
      align-items: center;
      gap: 14px;
      padding-top: 16px;
      border-top: 1px solid #e0e0e0;
    }

    .tcard-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--blue);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .tcard:nth-child(1) .tcard-avatar { background: var(--red); }
    .tcard:nth-child(3) .tcard-avatar { background: var(--black); }

    .tcard-name {
      display: block;
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--black);
    }
    .tcard-title {
      display: block;
      font-size: 11px;
      color: #888;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-top: 2px;
    }

    /* ── FAQ ── */
    .faq-section {
      background: var(--black);
      padding: 100px 60px;
    }

    .faq-header { margin-bottom: 60px; }
    .faq-header h2 {
      font-size: clamp(26px, 4vw, 44px);
      font-weight: 900;
      text-transform: uppercase;
      color: var(--white);
      line-height: 1.1;
      margin-top: 12px;
    }
    .faq-header h2 span { color: var(--red); }

    .faq-columns {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }

    .faq-col-header {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 20px;
      margin-bottom: 4px;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--white);
    }
    .faq-col-header svg { width: 18px; height: 18px; flex-shrink: 0; }
    .faq-col-header.investor { background: var(--red); }
    .faq-col-header.brand { background: var(--blue); }

    .faq-list { border-top: 1px solid rgba(255,255,255,0.08); }

    .faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }

    .faq-q {
      width: 100%;
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 0;
      text-align: left;
      font-family: 'Montserrat', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: var(--white);
      line-height: 1.4;
      transition: color 0.2s;
    }
    .faq-q:hover { color: var(--red); }
    .faq-col:nth-child(2) .faq-q:hover { color: #5b9cf6; }

    .faq-chevron {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      color: rgba(255,255,255,0.3);
      transition: transform 0.3s, color 0.2s;
    }
    .faq-q[aria-expanded="true"] .faq-chevron {
      transform: rotate(180deg);
      color: var(--red);
    }
    .faq-col:nth-child(2) .faq-q[aria-expanded="true"] .faq-chevron { color: #5b9cf6; }

    .faq-a {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.35s ease, padding 0.3s ease;
    }
    .faq-a.open { max-height: 500px; padding-bottom: 20px; }
    .faq-a p {
      font-size: 13px;
      line-height: 1.8;
      color: rgba(255,255,255,0.6);
      margin-bottom: 10px;
    }
    .faq-a p:last-child { margin-bottom: 0; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 16px 20px; }

      .hero { padding: 100px 20px 60px; min-height: auto; }
      .hero h1 { font-size: clamp(36px, 10vw, 56px); }
      .hero-sub { font-size: 15px; }
      .hero-positioning { font-size: 11px; }
      .hero-dots { display: none; }
      .hero-actions { flex-direction: column; gap: 12px; }
      .btn-split { max-width: 100%; padding: 16px 18px; }
      .btn-split-title { font-size: 12px; }
      .btn-split-sub { font-size: 9px; }

      .about { grid-template-columns: 1fr; padding: 60px 20px; gap: 40px; }
      .about h2 { font-size: clamp(24px, 7vw, 36px); }
      .about-stats { grid-template-columns: 1fr 1fr; gap: 16px; }

      .divisions { padding: 60px 20px; }
      .divisions-grid { grid-template-columns: 1fr; gap: 16px; }
      .divisions-header h2 { font-size: clamp(24px, 7vw, 36px); }

      .faq-section { padding: 60px 20px; }
      .faq-columns { grid-template-columns: 1fr; gap: 32px; }
      .faq-q { font-size: 12px; }

      .trusted-by { padding: 60px 0 40px; }
      .trusted-header { padding: 0 20px; }
      .logo-item img { height: 38px; }
      .logo-track { gap: 40px; }

      .testimonials { padding: 60px 20px; }
      .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
      .tcard { padding: 28px 24px; }
      .download-cta { font-size: 11px; padding: 12px 16px; }

      .how-help { padding: 60px 20px; }
      .how-help-header h2 { font-size: clamp(22px, 6vw, 34px); }
      .how-help-item { grid-template-columns: 1fr; gap: 12px; padding: 36px 0; }
      .how-num { font-size: 36px; }
      .how-content h3 { font-size: 18px; }
      .how-learn { padding: 18px 20px; }

      .why-section { padding: 60px 20px; }
      .why-inner h2 { font-size: clamp(22px, 6vw, 34px); }
      .why-inner p { font-size: 15px; }

      .founder-section { padding: 60px 20px; }
      .founder-inner { grid-template-columns: 1fr; gap: 32px; }
      .founder-photo-placeholder { aspect-ratio: 4/3; max-height: 320px; }
      .founder-name-tag { padding: 16px 20px; }
      .fname { font-size: 17px; }
      .founder-text h2 { font-size: clamp(22px, 6vw, 32px); }
      .founder-text p { font-size: 14px; }

      .mission-strip { padding: 30px 20px; flex-direction: column; align-items: flex-start; gap: 16px; }

      .cta-section { padding: 60px 20px; }
      .cta-section h2 { font-size: clamp(24px, 7vw, 36px); }
      .contact-form { grid-template-columns: 1fr; }
      .contact-form .full-width { grid-column: 1; }
      .form-submit { grid-column: 1; }

      footer { flex-direction: column; align-items: flex-start; padding: 40px 20px; gap: 20px; }
      .footer-links { gap: 16px; }
      .footer-social { gap: 10px; }
      .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
      .wa-float svg { width: 24px; height: 24px; }
      .wa-tooltip { display: none; }
      .back-to-top { bottom: 84px; right: 20px; width: 38px; height: 38px; }
    }

    @media (max-width: 480px) {
      .hero h1 { font-size: clamp(30px, 11vw, 44px); }
      .about-stats { grid-template-columns: 1fr 1fr; }
      .stat-val { font-size: 24px; }
      .how-help-item { padding: 28px 0; }
      .founder-photo-placeholder { aspect-ratio: 1/1; max-height: 260px; }
      .division-card { padding: 32px 24px; }
      .who-for-grid { gap: 10px; }
      .who-card { padding: 32px 24px; }
      .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
      .video-shorts-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
      .fit-card { padding: 28px 22px; }
      .fit-card li { font-size: 13px; padding: 9px 0 9px 24px; }
    }
  
/* ── ADDED: SUBPAGE HEADER (For Brands, Academy, etc.) ── */
.page-hero {
  background: var(--blue);
  padding: 150px 60px 70px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.page-hero .breadcrumb {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 18px; position: relative; z-index: 2;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.85); text-decoration: underline; text-underline-offset: 2px; }
.page-hero .section-label { color: rgba(255,255,255,0.5); position: relative; z-index: 2; }
.page-hero h1 {
  color: #fff; font-weight: 900; text-transform: uppercase; line-height: 1.15;
  font-size: clamp(28px, 4vw, 46px); margin: 10px 0 20px; max-width: 780px; position: relative; z-index: 2;
}
.page-hero h1 span { color: var(--red); }
.page-hero .lede {
  color: rgba(255,255,255,0.82); font-size: 16px; line-height: 1.75; max-width: 640px; position: relative; z-index: 2;
}

/* ── ADDED: ACCREDITATION BADGES (HRD Corp) ── */
.accred-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 6px; }
.accred-badge {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--mid-grey); background: var(--white);
  padding: 7px 12px; border-radius: 3px;
  font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  color: #333;
}
.accred-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.accred-badge.claimable .dot { background: var(--red); }
.who-for .accred-badge, .founder-section .accred-badge { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.85); }

/* ── ADDED: SUBPAGE INTRO WITH PHOTO + IN-STEP PHOTO ── */
.intro-with-photo {
  display: grid; grid-template-columns: 1fr 280px; gap: 48px; align-items: center;
  padding: 80px 60px 60px;
}
.intro-photo-frame { width: 100%; max-width: 280px; aspect-ratio: 1/1; overflow: hidden; border: 1px solid var(--mid-grey); justify-self: end; }
.intro-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display:block; }
.intro-photo-cap { margin-top: 10px; font-size: 11px; color: #888; text-align: right; letter-spacing: .3px; max-width: 280px; margin-left: auto; }
.step-photo { margin-top: 22px; max-width: 380px; }
.step-photo img { width: 100%; border: 1px solid var(--mid-grey); display: block; }
.step-photo-cap { margin-top: 8px; font-size: 11px; color: #888; }

/* ── ADDED: step content + side photo split (Audit / Academy / Mastermind) ── */
.how-content-split { display: grid; grid-template-columns: 1fr 260px; gap: 32px; align-items: start; }
.how-content-split .split-photo { justify-self: end; width: 100%; max-width: 260px; }
.how-content-split .split-photo img { width: 100%; border: 1px solid var(--mid-grey); display: block; }
.how-content-split .split-photo .step-photo-cap { margin-top: 8px; font-size: 11px; color: #888; }
@media (max-width: 900px) {
  .how-content-split { grid-template-columns: 1fr; }
  .how-content-split .split-photo { justify-self: start; max-width: 320px; margin-top: 8px; }
}
@media (max-width: 900px) {
  .intro-with-photo { grid-template-columns: 1fr; padding: 60px 20px 20px; gap: 24px; }
  .intro-photo-frame { max-width: 280px; justify-self: start; }
  .intro-photo-cap { text-align: left; margin-left: 0; }
}

/* ── ADDED: ANIMATED ENGAGEMENT-PATH TIMELINE ── */
.timeline-section { background: var(--white); padding: 70px 60px 30px; }
.timeline-wrap { max-width: 1400px; }
.timeline-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
}
.timeline-track::before {
  content: '';
  position: absolute;
  top: 29px; left: 20px; right: 20px;
  height: 3px;
  background: #e6e6e6;
  z-index: 0;
}
.timeline-fill {
  position: absolute;
  top: 29px; left: 20px;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--red));
  z-index: 1;
  transition: width 1.6s cubic-bezier(.22,.61,.36,1);
}
.timeline-track.visible .timeline-fill { width: calc(100% - 40px); }
.timeline-node {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 19%;
}
.timeline-dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid #d8d8d8;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 13px; color: #bbb;
  transition: all 0.5s ease;
  transition-delay: var(--tl-delay, 0s);
}
.timeline-track.visible .timeline-node:nth-child(1) .timeline-dot { --tl-delay: .15s; }
.timeline-track.visible .timeline-node:nth-child(2) .timeline-dot { --tl-delay: .45s; }
.timeline-track.visible .timeline-node:nth-child(3) .timeline-dot { --tl-delay: .75s; }
.timeline-track.visible .timeline-node:nth-child(4) .timeline-dot { --tl-delay: 1.05s; }
.timeline-track.visible .timeline-node:nth-child(5) .timeline-dot { --tl-delay: 1.35s; }
.timeline-track.visible .timeline-dot {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: scale(1.12);
}
.timeline-track.visible .timeline-node:last-child .timeline-dot {
  background: var(--red);
  border-color: var(--red);
}
.timeline-tag {
  margin-top: 14px;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--blue);
}
.timeline-node:last-child .timeline-tag { color: var(--red); }
.timeline-label {
  margin-top: 4px;
  font-size: 12.5px; font-weight: 800; text-transform: uppercase;
  color: var(--black); line-height: 1.3; max-width: 120px;
}
@media (max-width: 900px) {
  .timeline-section { padding: 50px 20px 10px; }
  .timeline-track { flex-direction: column; align-items: flex-start; gap: 28px; }
  .timeline-track::before { top: 0; bottom: 0; left: 19px; right: auto; width: 3px; height: auto; }
  .timeline-fill { top: 0; left: 19px; width: 3px; height: 0%; }
  .timeline-track.visible .timeline-fill { height: 100%; width: 3px; }
  .timeline-node { width: 100%; flex-direction: row; text-align: left; gap: 16px; }
  .timeline-label { max-width: none; }
}

/* ── ADDED: WHO THIS IS FOR / NOT FOR FIT CHECK ── */
.fit-section { background: var(--grey); padding: 70px 60px 90px; }
.fit-header { margin-bottom: 40px; }
.fit-header h2 { font-size: clamp(24px, 3.5vw, 38px); font-weight: 900; text-transform: uppercase; color: var(--black); line-height: 1.15; margin-top: 12px; }
.fit-header h2 span { color: var(--blue); }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.fit-card { background: var(--white); padding: 36px 32px; border-top: 4px solid var(--blue); }
.fit-card.not { border-top-color: var(--red); }
.fit-card h3 { font-size: 15px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; color: var(--black); margin-bottom: 18px; }
.fit-card ul { list-style: none; }
.fit-card li {
  font-size: 14px; color: #444; line-height: 1.6;
  padding: 11px 0 11px 28px; position: relative;
  border-bottom: 1px solid #eee;
}
.fit-card li:last-child { border-bottom: none; }
.fit-card li::before {
  content: '✓'; position: absolute; left: 0; top: 11px;
  font-weight: 900; color: var(--blue); font-size: 13px;
}
.fit-card.not li::before { content: '✕'; color: var(--red); }
@media (max-width: 900px) {
  .fit-section { padding: 50px 20px 60px; }
  .fit-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ── ADDED: WIDE PHOTO BAND (full-width group/workshop photos) ── */
.wide-photo-section { background: var(--white); padding: 80px 60px 90px; }
.wide-photo-section .section-label { margin-bottom: 16px; }
.wide-photo-section h2 { font-size: clamp(26px, 4vw, 42px); font-weight: 900; text-transform: uppercase; color: var(--black); line-height: 1.15; margin-bottom: 18px; }
.wide-photo-section h2 span { color: var(--blue); }
.wide-photo-section > p { font-size: 15px; line-height: 1.8; color: #444; max-width: 640px; margin-bottom: 32px; }
.wide-photo-frame { width: 100%; max-width: 480px; aspect-ratio: 3/4; overflow: hidden; border: 1px solid var(--mid-grey); margin: 0 auto; }
.wide-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.wide-photo-cap { margin-top: 10px; font-size: 11px; color: #888; letter-spacing: .3px; text-align: center; }
@media (max-width: 900px) {
  .wide-photo-section { padding: 50px 20px 60px; }
  .wide-photo-frame { max-width: 360px; }
}
@media (max-width: 520px) {
  .wide-photo-frame { max-width: 300px; }
}

/* ── ADDED: TOPICS GRID (2 columns on desktop, so cards don't run empty edge-to-edge) ── */
.topics-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.topic-card { background: var(--white); padding: 36px 32px; border: 1px solid var(--mid-grey); border-left: 4px solid var(--blue); }
.topic-card:nth-child(2), .topic-card:nth-child(3) { border-left-color: var(--red); }
.topic-card .how-tag { display: block; }
.topic-card h3 { font-size: 19px; font-weight: 900; text-transform: uppercase; color: var(--black); margin: 10px 0 14px; line-height: 1.25; }
.topic-card p { font-size: 14.5px; line-height: 1.8; color: #555; }
@media (max-width: 900px) {
  .topics-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 28px; }
  .topic-card { padding: 28px 24px; }
}

/* ── ADDED: TAG CLOUD ── */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-pill {
  border: 1px solid var(--mid-grey); padding: 9px 18px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase; color: #444; border-radius: 999px; background: var(--white);
}
@media (max-width: 900px) {
  .page-hero { padding: 120px 20px 50px; }
}

/* ── ADDED: client logo inside testimonial card ── */
.tcard-logo {
  margin-top: -6px;
  padding-top: 14px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
}
.tcard-logo img { max-height: 26px; width: auto; object-fit: contain; }

/* ── ADDED: about/why emphasis + bullet list ── */
.pull-line {
  display: block;
  font-weight: 700;
  color: var(--blue);
  margin: 6px 0 10px;
}
.why-list { list-style: none; margin: 22px 0; max-width: 620px; }
.why-list li {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  padding: 10px 0 10px 24px;
  position: relative;
  border-bottom: 1px solid #e0e0e0;
}
.why-list li:last-child { border-bottom: none; }
.why-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
}
.why-inner .closing-line {
  font-weight: 700;
  color: var(--black);
}

/* ── ADDED: Why MYFranchiseGuide — two-column layout with USP widget grid ── */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}
.why-grid .why-copy p { font-size: 15px; line-height: 1.8; color: #444; margin-bottom: 16px; max-width: 560px; }
.usp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.usp-card {
  background: var(--white);
  border-left: 4px solid var(--blue);
  padding: 24px 22px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.usp-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,.08); }
.usp-card:nth-child(2), .usp-card:nth-child(3) { border-left-color: var(--red); }
.usp-card .usp-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 10px;
}
.usp-card:nth-child(2) .usp-label, .usp-card:nth-child(3) .usp-label { color: var(--red); }
.usp-card h4 {
  font-size: 15px; font-weight: 900; text-transform: uppercase; line-height: 1.25;
  color: var(--black); margin-bottom: 8px;
}
.usp-card p { font-size: 12.5px; color: #555; line-height: 1.6; margin: 0; }
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .usp-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .usp-grid { grid-template-columns: 1fr; }
}

/* ── ADDED FOR NEW HOMEPAGE: VIDEO TESTIMONIAL SLOT ── */
.video-testimonial {
  background: var(--black);
  padding: 60px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: center;
}
.video-slot {
  aspect-ratio: 9/16;
  max-height: 480px;
  background: #141414;
  border: 1.5px dashed rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.video-slot .play-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.video-slot .play-icon svg { width: 20px; height: 20px; color: #fff; }
.video-slot .video-label {
  position: absolute; bottom: 18px; left: 18px; right: 18px;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.4); text-align: center;
}
.video-testimonial-text .section-label { color: rgba(255,255,255,0.4); }
.video-testimonial-text h2 { color: #fff; font-size: clamp(24px,3.5vw,38px); font-weight:900; text-transform:uppercase; line-height:1.15; margin: 12px 0 20px; }
.video-testimonial-text h2 span { color: var(--red); }
.video-testimonial-text p { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.8; max-width: 560px; }
@media (max-width: 900px) {
  .video-testimonial { grid-template-columns: 1fr; padding: 60px 24px; gap: 32px; }
  .video-slot { max-height: 360px; margin: 0 auto; max-width: 280px; }
}

/* ── ADDED: MORE VIDEO TESTIMONIAL SHORTS GRID ── */
.video-shorts-section { background: var(--white); padding: 20px 60px 100px; }
.video-shorts-header { margin-bottom: 36px; }
.video-shorts-header h2 { font-size: clamp(22px,3vw,34px); font-weight:900; text-transform:uppercase; color:var(--black); line-height:1.1; margin-top:12px; }
.video-shorts-header h2 span { color: var(--blue); }
.video-shorts-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.video-shorts-grid .short-frame {
  position: relative; aspect-ratio: 9/16; background:#000; overflow:hidden;
  border:1px solid var(--mid-grey); display:block; text-decoration:none;
}
.video-shorts-grid .short-frame img { width:100%; height:100%; object-fit:cover; display:block; transition: transform .4s ease; }
.video-shorts-grid .short-frame:hover img { transform: scale(1.05); }
.video-shorts-grid .short-frame::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 40%, rgba(0,0,0,.55) 100%);
}
.video-shorts-grid .short-frame .play-icon {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:48px; height:48px; z-index:2;
}
.video-shorts-grid .short-frame .short-label {
  position:absolute; left:12px; right:12px; bottom:12px; z-index:2;
  color:#fff; font-size:11px; font-weight:700; letter-spacing:.5px; text-transform:uppercase;
}
@media (max-width: 900px) {
  .video-shorts-section { padding: 10px 20px 60px; }
  .video-shorts-grid { grid-template-columns: 1fr 1fr; }
}

/* ── ADDED FOR NEW HOMEPAGE: PHOTO GALLERY (WORKSHOPS / IN THE ROOM) ── */
.gallery-section { background: var(--grey); padding: 90px 60px; }
.gallery-header { margin-bottom: 44px; }
.gallery-header h2 { font-size: clamp(24px,3.5vw,40px); font-weight:900; text-transform:uppercase; color:var(--black); line-height:1.1; margin-top:12px; }
.gallery-header h2 span { color: var(--red); }
.gallery-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { position:relative; overflow:hidden; aspect-ratio: 3/4; background:#ddd; }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-cap {
  position:absolute; left:0; right:0; bottom:0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color:#fff; font-size:11px; font-weight:700; letter-spacing:0.5px;
  padding: 28px 14px 12px; text-transform:none;
}
@media (max-width: 900px) {
  .gallery-section { padding: 60px 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

/* ── ADDED: real mobile navigation — slide-in panel triggered by hamburger ── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  nav .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 100px 32px 40px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.18);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(.22,.61,.36,1);
    z-index: 100;
    overflow-y: auto;
  }
  nav .nav-links.open { transform: translateX(0); }

  nav .nav-links li {
    opacity: 1;
    animation: none;
    width: 100%;
  }
  nav .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    width: 100%;
  }
  nav .nav-links a.nav-cta {
    margin-top: 20px;
    text-align: center;
    border-bottom: none;
  }
}

/* ── ADDED: CHECKLIST LANDING PAGE (namespaced "ck-" to avoid clashing with existing page sections) ── */
.ck-hero {
  background: var(--blue);
  padding: 150px 60px 80px;
  position: relative;
  overflow: hidden;
}
.ck-hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(255,255,255,0.04); pointer-events: none;
}
.ck-hero::after {
  content: ''; position: absolute; bottom: -80px; left: 30%;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(212,32,42,0.15); pointer-events: none;
}
.ck-hero-inner {
  max-width: 1200px; margin: 0 auto; position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(0,1.1fr) minmax(320px,420px);
  gap: 56px; align-items: start;
}
.ck-hero-content .section-label { color: rgba(255,255,255,0.5); }
.ck-hero-content h1 {
  font-size: clamp(36px, 6vw, 64px); font-weight: 900; line-height: 1.05;
  text-transform: uppercase; color: var(--white); margin: 10px 0 24px;
}
.ck-hero-content h1 .accent { color: var(--red); }
.ck-hero-subhead { font-size: 18px; font-weight: 700; line-height: 1.5; color: var(--white); max-width: 620px; margin-bottom: 16px; }
.ck-hero-sub { font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.82); max-width: 540px; margin-bottom: 28px; }
.ck-hero-positioning { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 32px; }

.social-proof {
  display: block; max-width: 600px; font-size: 14.5px; font-weight: 500; line-height: 1.7;
  color: var(--white); position: relative;
  border: 1px solid rgba(255,255,255,0.24); border-left: 4px solid var(--red);
  padding: 22px 24px 20px 26px; background: rgba(255,255,255,0.08);
}
.social-proof .testimonial-label {
  display: block; margin-bottom: 8px; font-size: 10px; font-weight: 800;
  letter-spacing: 1.6px; text-transform: uppercase; color: rgba(255,255,255,0.58);
}
.social-proof .testimonial-author {
  display: block; margin-top: 12px; font-size: 11px; font-weight: 800;
  letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,0.68);
}

.checklist-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.18);
  padding: 32px 28px; backdrop-filter: blur(6px);
}
.checklist-card h2 { font-size: 26px; font-weight: 900; line-height: 1.1; text-transform: uppercase; color: var(--white); margin-bottom: 14px; }
.checklist-card > p { font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.7; margin-bottom: 20px; }
.contact-form.single-col { grid-template-columns: 1fr; }

.ck-about { background: var(--white); padding: 90px 60px; }
.ck-about-inner { max-width: 1200px; margin: 0 auto; }
.ck-about-layout { display: grid; grid-template-columns: minmax(0,1fr) minmax(280px,420px); gap: 48px; align-items: start; }
.ck-about-copy h2 { font-size: clamp(26px,4vw,42px); font-weight: 900; text-transform: uppercase; line-height: 1.15; color: var(--black); margin-bottom: 22px; }
.ck-about-copy p { font-size: 16px; line-height: 1.85; color: #333; margin-bottom: 16px; max-width: 720px; }

.video-placeholder {
  background: var(--black); min-height: 320px; border: none;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.video-placeholder iframe { display: block; width: 100%; height: 100%; min-height: 320px; border: 0; }

.ck-why { background: var(--grey); padding: 90px 60px; }
.ck-why-inner { max-width: 1200px; margin: 0 auto; }
.ck-why-inner h2 { font-size: clamp(26px,4vw,42px); font-weight: 900; text-transform: uppercase; color: var(--black); line-height: 1.15; margin-bottom: 8px; }
.ck-why-grid { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(0,0.9fr) minmax(0,0.9fr); gap: 24px; align-items: start; margin-top: 32px; }
.ck-why-copy p { font-size: 15.5px; line-height: 1.85; color: #333; }

.list-card { background: var(--white); padding: 28px 26px; border-top: 5px solid var(--blue); }
.list-card.negative { border-top-color: var(--red); }
.list-card h3 { font-size: 15px; font-weight: 900; text-transform: uppercase; margin-bottom: 16px; }
.list-card ul { list-style: none; display: grid; gap: 12px; }
.list-card li { position: relative; padding-left: 18px; font-size: 14px; line-height: 1.65; color: #333; }
.list-card li::before { content: ''; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; background: var(--blue); }
.list-card.negative li::before { background: var(--red); }

.ck-cta { background: var(--blue); padding: 90px 60px; position: relative; overflow: hidden; }
.ck-cta::before { content: ''; position: absolute; top: -120px; right: -80px; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,0.04); }
.ck-cta-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.ck-cta-inner h2 { font-size: clamp(28px,4.5vw,46px); font-weight: 900; text-transform: uppercase; color: var(--white); line-height: 1.15; margin-bottom: 18px; }
.ck-cta-inner h2 .accent { color: var(--red); }
.ck-cta-inner p { font-size: 15px; color: rgba(255,255,255,0.78); line-height: 1.8; max-width: 480px; }
.ck-cta-note { margin-top: 32px; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 24px; }
.ck-cta-note h3 { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 10px; }
.ck-cta-note p { font-size: 13px; color: rgba(255,255,255,0.7); }
.ck-cta-right { display: flex; align-items: center; justify-content: center; }

.ck-teaser { background: var(--white); padding: 90px 60px; }
.ck-teaser-inner { max-width: 1200px; margin: 0 auto; }
.ck-teaser-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.ck-teaser-copy h2 { font-size: clamp(24px,3.5vw,36px); font-weight: 900; text-transform: uppercase; color: var(--black); line-height: 1.2; margin-bottom: 16px; }
.ck-teaser-copy p { font-size: 15px; line-height: 1.8; color: #444; margin-bottom: 12px; max-width: 560px; }
.ck-teaser-cta { display: flex; align-items: center; justify-content: center; }
.ck-teaser-cta .btn-primary { width: 100%; max-width: 340px; text-align: center; }

@media (max-width: 1100px) {
  .ck-hero-inner, .ck-about-layout, .ck-why-grid, .ck-cta-inner, .ck-teaser-layout { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .ck-hero { padding: 120px 20px 60px; }
  .ck-about, .ck-why, .ck-cta, .ck-teaser { padding: 60px 20px; }
  .video-placeholder { min-height: 260px; }
  .video-placeholder iframe { min-height: 260px; }
  .ck-cta-inner { gap: 32px; }
  .ck-teaser-layout { gap: 28px; }
}

/* ── ADDED: ENTERPRISE PARTNERSHIPS PAGE ── */
.ep-intro { background: var(--white); padding: 70px 60px 10px; }
.ep-intro-inner { max-width: 900px; margin: 0 auto; }
.ep-intro-inner p { font-size: 15.5px; line-height: 1.85; color: #444; margin-bottom: 20px; }
.ep-intro-inner p:last-child { margin-bottom: 0; }

.ep-case { background: var(--dark-grey); padding: 90px 60px; }
.ep-case-inner { max-width: 1200px; margin: 0 auto; }
.ep-case .section-label { color: rgba(255,255,255,0.5); }
.ep-case h2 { font-size: clamp(26px, 4vw, 42px); font-weight: 900; text-transform: uppercase; color: var(--white); line-height: 1.15; margin-bottom: 18px; }
.ep-case h2 span { color: var(--red); }
.ep-case-lede { font-size: 15.5px; line-height: 1.8; color: rgba(255,255,255,0.7); max-width: 680px; margin-bottom: 30px; }

.ep-quote { border-left: 4px solid var(--red); padding: 4px 0 4px 26px; margin-bottom: 30px; max-width: 680px; }
.ep-quote p { font-size: 18px; font-style: italic; line-height: 1.6; color: var(--white); margin: 0; }

.ep-case-note { font-size: 14.5px; line-height: 1.8; color: rgba(255,255,255,0.7); max-width: 680px; margin-bottom: 44px; }

.ep-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 56px; }
.ep-stats .stat-box { background: var(--white); }
.ep-stats .stat-box .stat-label { color: #555; }

.ep-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 760px; margin: 0 auto; }
.ep-photo-frame { aspect-ratio: 3/4; overflow: hidden; border: 1px solid rgba(255,255,255,0.15); }
.ep-photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ep-photo-cap { margin-top: 10px; font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.3px; text-align: center; }

.ep-cta { background: var(--blue); padding: 80px 60px; text-align: center; }
.ep-cta h2 { font-size: clamp(24px, 3.6vw, 36px); font-weight: 900; text-transform: uppercase; color: var(--white); margin-bottom: 24px; }
.ep-cta .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 900px) {
  .ep-intro { padding: 50px 20px 6px; }
  .ep-case { padding: 60px 20px; }
  .ep-stats { grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 40px; }
  .ep-photos { grid-template-columns: 1fr 1fr; gap: 14px; }
  .ep-cta { padding: 56px 20px; }
}
@media (max-width: 520px) {
  .ep-photos { grid-template-columns: 1fr; }
}
