    * { margin: 0; padding: 0; box-sizing: border-box; }
    :root {
      --bg: #0a0a12;
      --panel: #0f0f1e;
      --panel-soft: #151527;
      --line: #1e1e3a;
      --line-strong: #7c3aed;
      --purple: #7c3aed;
      --purple-soft: #a78bfa;
      --blue: #38bdf8;
      --text: #e0e0f0;
      --muted: #7070a0;
      --muted-strong: #9090b0;
    }
    html { scroll-behavior: smooth; background: var(--bg); }
    body {
      background: transparent;
      color: var(--text);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.5;
      overflow-x: clip;
      min-height: 100vh;
      position: relative;
      isolation: isolate;
      --cursor-aura-x: 50vw;
      --cursor-aura-y: 22vh;
      --cursor-aura-opacity: 0;
      --cursor-aura-blue: 0;
      --cursor-aura-purple: 0;
      --cursor-aura-soft: 0;
    }
    body::before,
    body::after {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
    }
    body::before {
      z-index: -2;
      background:
        radial-gradient(circle at 13% 8%, rgba(56,189,248,0.13), transparent 29%),
        radial-gradient(circle at 88% 10%, rgba(124,58,237,0.2), transparent 34%),
        radial-gradient(circle at 58% 104%, rgba(56,189,248,0.08), transparent 34%),
        linear-gradient(112deg, transparent 0 18%, rgba(56,189,248,0.04) 23%, transparent 31%),
        linear-gradient(68deg, transparent 0 56%, rgba(124,58,237,0.08) 64%, transparent 74%),
        repeating-linear-gradient(90deg, rgba(56,189,248,0.035) 0 1px, transparent 1px 82px),
        repeating-linear-gradient(0deg, rgba(124,58,237,0.028) 0 1px, transparent 1px 76px),
        var(--bg);
      background-size: 100% 100%, 100% 100%, 100% 100%, 180% 180%, 190% 190%, auto, auto, auto;
      animation: backgroundDrift 22s ease-in-out infinite;
    }
    body::after {
      z-index: -1;
      background:
        radial-gradient(ellipse at 50% 0%, transparent 0%, rgba(10,10,18,0.18) 38%, rgba(10,10,18,0.78) 82%),
        repeating-linear-gradient(180deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 5px);
      opacity: 0.86;
    }
    body.has-cursor-aura::after {
      background:
        radial-gradient(circle at var(--cursor-aura-x) var(--cursor-aura-y), rgba(56,189,248,var(--cursor-aura-blue)) 0, rgba(124,58,237,var(--cursor-aura-purple)) 18%, rgba(10,10,18,0) 36%),
        radial-gradient(circle at var(--cursor-aura-x) var(--cursor-aura-y), rgba(167,139,250,var(--cursor-aura-soft)) 0, rgba(10,10,18,0) 24%),
        radial-gradient(ellipse at 50% 0%, transparent 0%, rgba(10,10,18,0.18) 38%, rgba(10,10,18,0.78) 82%),
        repeating-linear-gradient(180deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 5px);
    }
    body::selection { background: rgba(124,58,237,0.45); color: #fff; }
    img { max-width: 100%; height: auto; }

    .nav {
      position: sticky; top: 0; z-index: 100;
      background: rgba(10,10,18,0.92);
      border-bottom: 1px solid #1e1e3a;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 clamp(1rem, 2.4vw, 2rem); height: 60px;
      backdrop-filter: blur(8px);
    }
    .nav-logo { font-size: 18px; font-weight: 500; color: #a78bfa; letter-spacing: 1px; }
    .nav-links { display: flex; gap: clamp(0.85rem, 1.7vw, 2rem); }
    .nav-links a { color: #9090b0; font-size: 14px; text-decoration: none; transition: color 0.2s; cursor: pointer; min-height: 44px; display: inline-flex; align-items: center; }
    .nav-links a:hover { color: #a78bfa; }
    .nav-cta {
      background: #7c3aed; color: #fff; border: none;
      padding: 8px 20px; border-radius: 6px; font-size: 14px;
      cursor: pointer; transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
      min-height: 44px;
    }
    .nav-cta:hover { background: #6d28d9; box-shadow: 0 0 24px rgba(124,58,237,0.45); transform: translateY(-1px); }

    .hero {
      min-height: 90vh; display: flex; flex-direction: column;
      align-items: center; justify-content: center; text-align: center;
      padding: 4rem 2rem;
      background:
        radial-gradient(ellipse at 50% 0%, rgba(26,10,58,0.62) 0%, rgba(10,10,18,0.84) 68%),
        linear-gradient(180deg, rgba(10,10,18,0.18), rgba(10,10,18,0.74));
      border-bottom: 1px solid #1e1e3a;
      position: relative; overflow: hidden;
    }
    .hero::before,
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    .hero::before {
      z-index: 0;
      inset: -18% -12%;
      background:
        linear-gradient(108deg, transparent 9%, rgba(56,189,248,0.0) 31%, rgba(56,189,248,0.18) 45%, rgba(124,58,237,0.18) 53%, transparent 66%),
        linear-gradient(72deg, transparent 18%, rgba(167,139,250,0.0) 38%, rgba(167,139,250,0.14) 50%, transparent 63%),
        radial-gradient(circle at 50% 34%, rgba(56,189,248,0.16), transparent 26%),
        radial-gradient(circle at 42% 46%, rgba(124,58,237,0.22), transparent 24%);
      filter: blur(16px);
      opacity: 0.82;
      transform: translate3d(-3%, 0, 0) rotate(-1deg);
      animation: heroTubeFlow 15s ease-in-out infinite;
    }
    .hero::after {
      z-index: 0;
      background:
        linear-gradient(90deg, transparent, rgba(56,189,248,0.1), transparent),
        repeating-linear-gradient(90deg, rgba(56,189,248,0.045) 0 1px, transparent 1px 96px),
        repeating-linear-gradient(0deg, rgba(124,58,237,0.04) 0 1px, transparent 1px 86px);
      mask-image: radial-gradient(ellipse at 50% 42%, #000 0 40%, transparent 78%);
      opacity: 0.55;
      animation: gridPulse 9s ease-in-out infinite;
    }
    .hero > * {
      position: relative;
      z-index: 1;
    }
    .hero > .tube-cursor-canvas {
      position: absolute;
      inset: 0;
      z-index: 0;
      width: 100%;
      height: 100%;
      display: block;
      opacity: 0;
      pointer-events: none;
      mix-blend-mode: screen;
      filter: saturate(1.08) brightness(0.82);
      transition: opacity 0.8s ease;
    }
    .hero.tubes-ready > .tube-cursor-canvas {
      opacity: 0.72;
    }
    .hero.tubes-ready::before {
      opacity: 0.34;
    }
    .hero.tubes-ready::after {
      opacity: 0.24;
    }
    .hero-logo-mark {
      width: min(172px, 42vw);
      height: auto;
      margin-bottom: 0;
      filter: drop-shadow(0 0 28px rgba(56,189,248,0.28)) drop-shadow(0 18px 30px rgba(0,0,0,0.42));
      position: relative;
      z-index: 2;
      animation: heroMarkFloat 5.5s ease-in-out infinite;
    }
    .hero-logo-system {
      position: relative;
      width: min(320px, 78vw);
      min-height: 228px;
      display: grid;
      place-items: center;
      margin-bottom: 1.1rem;
      isolation: isolate;
    }
    .hero-logo-system::before {
      content: "";
      position: absolute;
      inset: 26px 42px;
      border: 1px solid rgba(124,58,237,0.22);
      border-radius: 999px;
      transform: rotate(-10deg);
      box-shadow: inset 0 0 28px rgba(56,189,248,0.08), 0 0 28px rgba(124,58,237,0.08);
    }
    .hero-logo-system::after {
      content: "";
      position: absolute;
      width: 68%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(56,189,248,0.42), rgba(124,58,237,0.35), transparent);
      transform: translateY(18px) rotate(-7deg);
      filter: blur(0.2px);
      opacity: 0.7;
    }
    .rank-orb {
      position: absolute;
      z-index: 3;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 76px;
      height: 76px;
      padding: 0;
      border: none;
      background: transparent;
      filter: drop-shadow(0 0 18px rgba(56,189,248,0.34)) drop-shadow(0 14px 18px rgba(0,0,0,0.36));
    }
    .rank-icon {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }
    .rank-orb::before {
      content: none;
    }
    .rank-orb::after {
      content: none;
    }
    .rank-orb-sovereign {
      top: 18px;
      right: 12px;
      animation: rankFloatSovereign 6.8s ease-in-out infinite;
    }
    .rank-orb-sovereign::before {
      content: none;
    }
    .rank-orb-challenger {
      left: 8px;
      bottom: 26px;
      animation: rankFloatChallenger 7.4s ease-in-out infinite;
    }
    .rank-orb-challenger::before {
      content: none;
    }
    .rank-trail {
      position: absolute;
      z-index: 0;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, transparent, rgba(56,189,248,0.65), rgba(124,58,237,0.32), transparent);
      opacity: 0.65;
      filter: blur(0.3px);
      transform-origin: center;
    }
    .rank-trail-one {
      width: 128px;
      left: 22px;
      top: 91px;
      transform: rotate(-5deg);
      animation: trailSweepOne 4.8s ease-in-out infinite;
    }
    .rank-trail-two {
      width: 104px;
      right: 24px;
      bottom: 76px;
      transform: rotate(-5deg);
      animation: trailSweepTwo 5.4s ease-in-out infinite;
    }
    @keyframes heroMarkFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
    @keyframes rankFloatSovereign { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-14px,10px); } }
    @keyframes rankFloatChallenger { 0%,100% { transform: translate(0,0); } 50% { transform: translate(16px,-8px); } }
    @keyframes trailSweepOne { 0%,100% { opacity: 0.25; transform: translateX(-8px) rotate(-5deg); } 50% { opacity: 0.82; transform: translateX(12px) rotate(-5deg); } }
    @keyframes trailSweepTwo { 0%,100% { opacity: 0.22; transform: translateX(10px) rotate(-5deg); } 50% { opacity: 0.72; transform: translateX(-12px) rotate(-5deg); } }
    @keyframes backgroundDrift {
      0%,100% { background-position: 0 0, 0 0, 0 0, 0% 46%, 100% 50%, 0 0, 0 0, 0 0; }
      50% { background-position: 0 0, 0 0, 0 0, 100% 54%, 0% 50%, 20px 0, 0 18px, 0 0; }
    }
    @keyframes heroTubeFlow {
      0%,100% { transform: translate3d(-4%, 0, 0) rotate(-1deg); opacity: 0.74; }
      50% { transform: translate3d(4%, -2%, 0) rotate(1deg); opacity: 0.95; }
    }
    @keyframes gridPulse { 0%,100% { opacity: 0.36; } 50% { opacity: 0.62; } }
    .rank-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(124,58,237,0.15); border: 1px solid #7c3aed;
      color: #a78bfa; border-radius: 20px; padding: 6px 16px;
      font-size: 13px; font-weight: 500; margin-bottom: 1.5rem;
      letter-spacing: 0.5px;
    }
    .rank-dot { width: 8px; height: 8px; border-radius: 50%; background: #7c3aed; animation: pulse 1.8s infinite; }
    @keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
    .hero h1 { font-size: 56px; font-weight: 700; line-height: 1.1; margin-bottom: 1rem; }
    .hero h1 span { color: #a78bfa; }
    .hero p { font-size: 18px; color: #7070a0; max-width: 520px; line-height: 1.7; margin-bottom: 2rem; }
    .trust-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.35rem; }
    .trust-badge {
      border: 1px solid rgba(124,58,237,0.5);
      background: rgba(15,15,30,0.78);
      color: #e0e0f0;
      border-radius: 999px;
      padding: 0.55rem 0.9rem;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.04em;
      box-shadow: 0 0 22px rgba(124,58,237,0.16);
    }
    .credibility-line {
      max-width: 680px;
      margin: -0.9rem auto 1.25rem;
      color: #aeb8d8;
      font-size: 14px;
      line-height: 1.7;
    }
    .urgency-line { color: #c4b5fd; font-size: 14px; font-weight: 600; margin-top: -0.75rem; margin-bottom: 1.35rem; }
    .hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
    .btn-primary {
      background: #7c3aed; color: #fff; border: none;
      padding: 14px 32px; border-radius: 8px; font-size: 15px;
      cursor: pointer; font-weight: 700; transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
      min-height: 46px;
    }
    .btn-primary:hover { background: #6d28d9; box-shadow: 0 0 28px rgba(124,58,237,0.5); transform: translateY(-2px); }
    .btn-secondary {
      background: transparent; color: #a78bfa;
      border: 1px solid #7c3aed;
      padding: 14px 32px; border-radius: 8px; font-size: 15px;
      cursor: pointer; font-weight: 700; transition: all 0.2s;
      min-height: 46px;
    }
    .btn-secondary:hover { background: rgba(124,58,237,0.1); box-shadow: 0 0 22px rgba(124,58,237,0.28); transform: translateY(-2px); }

    .stats-row {
      display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
      padding: 2.5rem 2rem;
      border-bottom: 1px solid #1e1e3a;
      background: #0d0d1a;
    }
    .stat { text-align: center; }
    .stat-val { font-size: 28px; font-weight: 700; color: #a78bfa; }
    .stat-lbl { font-size: 13px; color: #6060a0; margin-top: 4px; }

    section { padding: 5rem 2rem; max-width: 900px; margin: 0 auto; animation: sectionFade 0.7s ease both; }
    @keyframes sectionFade { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
    .section-tag { font-size: 12px; color: #a78bfa; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.75rem; }
    .section-title { font-size: 32px; font-weight: 600; color: #e0e0f0; margin-bottom: 1rem; }
    .section-sub { font-size: 16px; color: #7070a0; line-height: 1.7; max-width: 600px; }

    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
    .about-card { background: #0f0f1e; border: 1px solid #1e1e3a; border-radius: 12px; padding: 1.5rem; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; }
    .about-card:hover { border-color: rgba(124,58,237,0.65); box-shadow: 0 0 24px rgba(124,58,237,0.14); transform: translateY(-2px); }
    .about-card h3 { font-size: 15px; font-weight: 500; color: #a78bfa; margin-bottom: 0.5rem; }
    .about-card p { font-size: 14px; color: #7070a0; line-height: 1.7; }
    .about-stat-strip {
      max-width: 980px;
      margin: 0 auto;
      padding: 0 2rem 2.5rem;
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 0.85rem;
    }
    .about-stat-card {
      min-height: 118px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 0.4rem;
      padding: 1rem;
      border: 1px solid transparent;
      border-radius: 14px;
      background:
        linear-gradient(rgba(15,15,30,0.88), rgba(15,15,30,0.88)) padding-box,
        linear-gradient(135deg, rgba(56,189,248,0.46), rgba(124,58,237,0.56), rgba(167,139,250,0.34)) border-box;
      box-shadow: 0 12px 30px rgba(0,0,0,0.2), 0 0 22px rgba(124,58,237,0.08);
    }
    .about-stat-card strong {
      color: #e8e5ff;
      font-size: 24px;
      line-height: 1.05;
    }
    .about-stat-card span {
      color: #8f96c3;
      font-size: 12px;
      line-height: 1.45;
    }
    .achievement-gallery {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
      margin-top: 2rem;
      align-items: stretch;
    }
    .achievement-intro {
      grid-column: 1 / -1;
      margin: 0 0 0.25rem;
      color: #9090b0;
      font-size: 14px;
      line-height: 1.7;
      max-width: 760px;
    }
    .achievement-card {
      margin: 0;
      overflow: hidden;
      border: 1px solid rgba(124,58,237,0.3);
      border-radius: 12px;
      background: linear-gradient(180deg, rgba(15,15,30,0.96), rgba(10,10,18,0.96));
      box-shadow: 0 14px 34px rgba(0,0,0,0.22), 0 0 20px rgba(124,58,237,0.08);
    }
    .achievement-card img {
      width: 100%;
      height: 280px;
      display: block;
      object-fit: contain;
      object-position: center;
      background:
        radial-gradient(circle at 50% 40%, rgba(56,189,248,0.12), transparent 38%),
        #070711;
    }
    .achievement-card figcaption {
      padding: 0.85rem 1rem;
      color: #c4b5fd;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-align: center;
      text-transform: uppercase;
      border-top: 1px solid rgba(124,58,237,0.22);
    }

    .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
    #book-coaching, #coaching-faq { scroll-margin-top: 82px; }
    #book-coaching { max-width: 1180px; }
    .payment-grid { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
    .service-card {
      background: #0f0f1e; border: 1px solid #1e1e3a;
      border-radius: 12px; padding: 1.75rem;
      transition: border-color 0.2s, transform 0.2s;
      cursor: default; position: relative;
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }
    .service-card:hover { border-color: #7c3aed; transform: translateY(-3px); box-shadow: 0 0 28px rgba(124,58,237,0.16); }
    .service-card.featured { border-color: #7c3aed; }
    .badge-popular {
      position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
      background: #7c3aed; color: #fff; font-size: 11px; padding: 3px 14px;
      border-radius: 10px; white-space: nowrap;
    }
    .service-icon { font-size: 24px; margin-bottom: 1rem; }
    .service-name { font-size: 17px; font-weight: 600; color: #e0e0f0; margin-bottom: 0.5rem; }
    .service-desc { font-size: 13px; color: #7070a0; line-height: 1.6; margin-bottom: 1.25rem; }
    .service-benefits {
      display: grid;
      gap: 0.45rem;
      margin: 0.9rem 0 0;
      padding-left: 1.1rem;
    }
    .service-benefits li {
      color: #9090b0;
      line-height: 1.45;
    }
    .service-card-actions { margin-top: auto; }
    .service-price { font-size: 26px; font-weight: 700; color: #a78bfa; }
    .service-price span { font-size: 14px; color: #6060a0; font-weight: 400; }
    .service-btn {
      display: block; width: 100%; margin-top: 1.25rem;
      background: transparent; color: #a78bfa; border: 1px solid #7c3aed;
      padding: 10px; border-radius: 7px; font-size: 14px; cursor: pointer;
      transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
      min-height: 44px;
      text-decoration: none;
      text-align: center;
    }
    .service-btn:hover { background: rgba(124,58,237,0.15); box-shadow: 0 0 18px rgba(124,58,237,0.28); transform: translateY(-1px); }
    .service-card.featured .service-btn { background: #7c3aed; color: #fff; border-color: transparent; }
    .service-card.featured .service-btn:hover { background: #6d28d9; box-shadow: 0 0 24px rgba(124,58,237,0.45); }
    .payment-grid .service-btn {
      background: linear-gradient(120deg, #6d28d9 0%, #8b5cf6 48%, #38bdf8 100%);
      color: #fff;
      border-color: rgba(255,255,255,0.14);
      box-shadow: 0 8px 22px rgba(0,0,0,0.28), 0 0 16px rgba(124,58,237,0.22);
      font-weight: 700;
    }
    .payment-grid .service-btn:hover {
      background-position: 100% 50%;
      box-shadow: 0 10px 24px rgba(0,0,0,0.32), 0 0 22px rgba(56,189,248,0.26);
    }
    .payment-grid .paypal-btn,
    .service-card.featured .paypal-btn {
      margin-top: 0.65rem;
      background:
        linear-gradient(rgba(15,15,30,0.96), rgba(15,15,30,0.96)) padding-box,
        linear-gradient(120deg, rgba(56,189,248,0.55), rgba(167,139,250,0.52)) border-box;
      color: #c9d8ff;
      border-color: transparent;
      box-shadow: none;
      font-weight: 700;
    }
    .payment-grid .paypal-btn:hover,
    .service-card.featured .paypal-btn:hover {
      background:
        linear-gradient(rgba(20,20,38,0.98), rgba(20,20,38,0.98)) padding-box,
        linear-gradient(120deg, rgba(56,189,248,0.72), rgba(167,139,250,0.68)) border-box;
      color: #fff;
      box-shadow: 0 8px 22px rgba(0,0,0,0.2), 0 0 18px rgba(56,189,248,0.16);
    }
    .payment-note {
      margin: 1.4rem 0 0;
      padding: 0.85rem 1rem;
      border: 1px solid rgba(124,58,237,0.28);
      border-radius: 8px;
      background: rgba(15,15,30,0.72);
      color: #9090b0;
      font-size: 13px;
      line-height: 1.6;
    }
    .currency-note {
      margin-top: 0.75rem;
      border-color: rgba(56,189,248,0.22);
      background: rgba(10,23,38,0.52);
      color: #aeb8d8;
    }

    .blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
    .blog-grid.featured { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); align-items: stretch; }
    .blog-card {
      background: #0f0f1e; border: 1px solid #1e1e3a;
      border-radius: 12px; padding: 1.5rem;
      display: flex; flex-direction: column; min-height: 250px;
      transition: border-color 0.2s, transform 0.2s;
    }
    .blog-card.free-post { min-height: auto; }
    .blog-card.paid-plan { border-color: #7c3aed; background: linear-gradient(180deg, rgba(124,58,237,0.14), #0f0f1e 42%); }
    .blog-card:hover { border-color: #7c3aed; transform: translateY(-3px); }
    .blog-meta { display: flex; justify-content: space-between; gap: 1rem; color: #6060a0; font-size: 12px; margin-bottom: 1rem; }
    .blog-category { color: #a78bfa; text-transform: uppercase; letter-spacing: 1px; }
    .blog-title { color: #e0e0f0; font-size: 19px; line-height: 1.35; font-weight: 600; margin-bottom: 0.75rem; }
    .blog-desc { color: #7070a0; font-size: 14px; line-height: 1.7; flex: 1; }
    .blog-body { color: #9090b0; font-size: 14px; line-height: 1.75; display: grid; gap: 1rem; }
    .blog-body strong { color: #e0e0f0; }
    .blog-list { display: grid; gap: 0.75rem; margin-top: 0.5rem; }
    .blog-list div { border-left: 2px solid #7c3aed; padding-left: 0.85rem; color: #9090b0; font-size: 14px; line-height: 1.65; }
    .blog-link { color: #a78bfa; font-size: 14px; font-weight: 500; text-decoration: none; margin-top: 1.25rem; }
    .blog-link:hover { color: #c4b5fd; }
    .blog-note {
      margin-top: 1.5rem; background: rgba(124,58,237,0.1); border: 1px solid #2a1f4a;
      border-radius: 12px; padding: 1.25rem; color: #9090b0; font-size: 14px; line-height: 1.7;
    }

    .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
    .testi-card { background: #0f0f1e; border: 1px solid #1e1e3a; border-radius: 12px; padding: 1.5rem; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; }
    .testi-card:hover { border-color: rgba(124,58,237,0.65); transform: translateY(-2px); box-shadow: 0 0 22px rgba(124,58,237,0.14); }
    .testi-stars { color: #a78bfa; font-size: 14px; margin-bottom: 0.75rem; }
    .testi-text { font-size: 14px; color: #9090b0; line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
    .testi-author { font-size: 13px; color: #6060a0; }
    .testi-author strong { color: #a78bfa; display: block; }

    .contact-box {
      background: #0f0f1e; border: 1px solid #1e1e3a; border-radius: 16px;
      padding: 2.5rem; margin-top: 3rem;
    }
    .contact-box input, .contact-box textarea, .contact-box select {
      width: 100%; background: #1a1a2e; border: 1px solid #2a2a4a;
      color: #e0e0f0; border-radius: 8px; padding: 12px 14px;
      font-size: 14px; margin-bottom: 1rem; outline: none;
      transition: border-color 0.2s; font-family: inherit;
      min-height: 46px;
    }
    .contact-box input:focus, .contact-box textarea:focus, .contact-box select:focus { border-color: #7c3aed; }
    .contact-box textarea { height: 110px; resize: vertical; }
    .contact-box select option { background: #1a1a2e; }
    .contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .submit-btn {
      width: 100%; background: #7c3aed; color: #fff; border: none;
      padding: 14px; border-radius: 8px; font-size: 15px; font-weight: 500;
      cursor: pointer; transition: background 0.2s;
      min-height: 46px;
    }
    .submit-btn:hover { background: #6d28d9; box-shadow: 0 0 24px rgba(124,58,237,0.45); }
    .social-links { display: flex; justify-content: center; gap: 1.5rem; margin-top: 2rem; flex-wrap: wrap; }
    .social-link {
      display: flex; align-items: center; gap: 8px;
      color: #7070a0; font-size: 14px; text-decoration: none;
      border: 1px solid #1e1e3a; border-radius: 8px; padding: 10px 18px;
      transition: border-color 0.2s, color 0.2s;
      min-height: 44px;
    }
    .social-link:hover { border-color: #7c3aed; color: #a78bfa; box-shadow: 0 0 18px rgba(124,58,237,0.18); }

    hr.divider { border: none; border-top: 1px solid #1e1e3a; }

    footer {
      text-align: center; padding: 2rem;
      border-top: 1px solid #1e1e3a;
      font-size: 13px; color: #404060;
      background: #0a0a12;
    }
    .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin: 0 0 1.25rem; }
    .footer-links a { color: #6060a0; text-decoration: none; font-size: 13px; transition: color 0.2s; }
    .footer-links a:hover { color: #a78bfa; }
    .footer-social {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.85rem;
      margin: -0.35rem 0 1.2rem;
    }
    .footer-social a {
      color: #8f96c3;
      text-decoration: none;
      border: 1px solid rgba(124,58,237,0.25);
      border-radius: 999px;
      padding: 0.45rem 0.85rem;
      background: rgba(15,15,30,0.56);
      transition: color 0.2s, border-color 0.2s, box-shadow 0.2s;
    }
    .footer-social a:hover {
      color: #c4b5fd;
      border-color: rgba(56,189,248,0.38);
      box-shadow: 0 0 16px rgba(56,189,248,0.12);
    }
    .floating-cta {
      position: fixed;
      right: 1.25rem;
      bottom: 1.25rem;
      z-index: 120;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: linear-gradient(135deg, #7c3aed, #38bdf8);
      color: #fff;
      border: 1px solid rgba(255,255,255,0.16);
      border-radius: 999px;
      padding: 0.85rem 1rem;
      font-size: 14px;
      font-weight: 800;
      text-decoration: none;
      box-shadow: 0 0 30px rgba(124,58,237,0.45), 0 12px 32px rgba(0,0,0,0.35);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .floating-cta:hover { transform: translateY(-3px); box-shadow: 0 0 36px rgba(56,189,248,0.42), 0 16px 36px rgba(0,0,0,0.4); }
    a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
      outline: 2px solid var(--blue);
      outline-offset: 3px;
      box-shadow: 0 0 0 5px rgba(56,189,248,0.16);
    }

    @media (max-width: 760px) {
      .nav { height: auto; min-height: 60px; padding: 0.75rem 1rem; align-items: center; gap: 0.55rem 0.75rem; }
      .nav, .nav-links { flex-wrap: wrap; }
      .nav-links { order: 3; width: 100%; flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; gap: 0.45rem; scrollbar-width: none; }
      .nav-links::-webkit-scrollbar { display: none; }
      .nav-links a { flex: 0 0 auto; font-size: 12px; min-height: 36px; padding: 0.15rem 0; }
      .nav-cta { flex: 0 0 auto; min-height: 40px; padding-left: 11px; padding-right: 11px; font-size: 13px; }
      .hero-btns { width: 100%; }
      .hero-btns .btn-primary, .hero-btns .btn-secondary { flex: 1 1 220px; }
      section { padding: 4rem 1rem; }
      .hero h1 { font-size: 42px; }
      .hero { padding: 4.5rem 1rem 4rem; }
      .hero-logo-system { width: min(272px, 86vw); min-height: 202px; margin-bottom: 0.85rem; }
      .hero-logo-mark { width: min(138px, 46vw); }
      .rank-orb { width: 62px; height: 62px; }
      .rank-orb-sovereign { right: 0; top: 12px; }
      .rank-orb-challenger { left: 0; bottom: 18px; }
      .stats-row { gap: 1.35rem; padding: 2rem 1rem; }
      .contact-box { padding: 1.5rem; }
      .blog-grid.featured { grid-template-columns: 1fr; }
      .about-grid, .contact-row { grid-template-columns: 1fr; }
      .about-stat-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0 1rem 2rem; }
      .achievement-gallery { grid-template-columns: 1fr; }
      .achievement-card img { height: 240px; }
      .floating-cta { display: none; }
      footer { padding-bottom: 2rem; }
    }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation: none !important; transition: none !important; }
    }

.nav-brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; min-width: fit-content; }
.nav-mark { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 18px rgba(56,189,248,0.25); }
.brand-stack { display: flex; align-items: baseline; gap: 0.45rem; flex-wrap: wrap; }
.brand-name { font-size: 17px; font-weight: 700; color: #a78bfa; letter-spacing: 0.02em; text-transform: none; }
.brand-by { font-size: 12px; color: #7070a0; letter-spacing: 0.02em; }
.nav-cta { text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
.btn-primary, .btn-secondary { text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
.seo-grid, .content-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.content-card { background: #0f0f1e; border: 1px solid #1e1e3a; border-radius: 12px; padding: 1.5rem; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; }
.content-card:hover { border-color: rgba(124,58,237,0.65); box-shadow: 0 0 24px rgba(124,58,237,0.14); transform: translateY(-2px); }
.content-card h3 { font-size: 17px; color: #e0e0f0; margin-bottom: 0.65rem; }
.content-card p { font-size: 14px; color: #7070a0; line-height: 1.7; }
.content-card a { color: #a78bfa; display: inline-flex; margin-top: 1rem; font-size: 14px; font-weight: 700; text-decoration: none; }
.page-hero { max-width: 980px; margin: 0 auto; padding: 6rem 2rem 4rem; text-align: center; }
.page-hero .hero-logo-mark { width: min(124px, 36vw); }
.page-kicker { color: #a78bfa; font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1rem; }
.page-hero h1 { font-size: 48px; line-height: 1.08; margin-bottom: 1rem; }
.page-hero p { max-width: 720px; margin: 0 auto 1.7rem; color: #9090b0; font-size: 17px; line-height: 1.75; }
.breadcrumb { max-width: 980px; margin: 0 auto; padding: 1.25rem 2rem 0; color: #6060a0; font-size: 13px; }
.breadcrumb a { color: #a78bfa; text-decoration: none; }
.page-section { padding: 4rem 2rem; max-width: 980px; }
.page-section h2 { color: #e0e0f0; font-size: 30px; margin-bottom: 1rem; }
.page-section h3 { color: #a78bfa; font-size: 18px; margin: 1.6rem 0 0.55rem; }
.page-section p, .page-section li { color: #9090b0; line-height: 1.8; font-size: 15px; }
.page-section ul, .article ul { margin: 1rem 0 0; padding-left: 1.25rem; }
.cta-band { background: linear-gradient(135deg, rgba(124,58,237,0.18), rgba(56,189,248,0.08)); border: 1px solid rgba(124,58,237,0.45); border-radius: 14px; padding: 1.6rem; margin-top: 2rem; }
.cta-band h2, .cta-band h3 { margin-top: 0; }
.article { max-width: 860px; margin: 0 auto; padding: 2rem 2rem 5rem; }
.article h1 { font-size: 44px; line-height: 1.1; margin-bottom: 1rem; }
.article h2 { color: #e0e0f0; font-size: 28px; margin: 2.4rem 0 0.8rem; }
.article h3 { color: #a78bfa; font-size: 19px; margin: 1.6rem 0 0.55rem; }
.article p, .article li { color: #9090b0; font-size: 16px; line-height: 1.85; }
.article-meta { color: #6060a0; font-size: 13px; margin-bottom: 1.25rem; }
.article a, .page-section a { color: #a78bfa; text-decoration: none; font-weight: 700; }
.article-cta { margin-top: 2.5rem; background: #0f0f1e; border: 1px solid #7c3aed; border-radius: 14px; padding: 1.5rem; }
.mini-link-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.2rem; }
.mini-link-row a { color: #e0e0f0; border: 1px solid #1e1e3a; border-radius: 999px; padding: 0.55rem 0.85rem; text-decoration: none; font-size: 13px; }
.mini-link-row a:hover { border-color: #7c3aed; color: #a78bfa; }

@media (max-width: 760px) {
  .nav-brand { flex: 0 1 auto; min-width: 0; }
  .brand-stack { flex-direction: column; align-items: flex-start; gap: 0.05rem; line-height: 1.05; }
  .brand-name { font-size: 14px; }
  .brand-by { font-size: 11px; }
  .page-hero { padding: 4rem 1rem 3rem; }
  .page-hero h1, .article h1 { font-size: 36px; }
  .page-section, .article { padding-left: 1rem; padding-right: 1rem; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 34px; }
  .page-hero h1, .article h1 { font-size: 32px; }
  .rank-badge { border-radius: 16px; justify-content: center; flex-wrap: wrap; line-height: 1.4; }
  .hero p, .page-hero p { font-size: 16px; }
  .hero-btns .btn-primary, .hero-btns .btn-secondary { width: 100%; flex-basis: 100%; padding-left: 18px; padding-right: 18px; }
  .stats-row { display: grid; grid-template-columns: 1fr 1fr; }
  .stat-val { font-size: 22px; }
  .about-stat-strip { grid-template-columns: 1fr; }
  .about-stat-card { min-height: 96px; }
  .floating-cta { font-size: 13px; padding: 0.78rem 0.9rem; }
}

@media (max-width: 380px) {
  .nav {
    justify-content: space-between;
    gap: 0.45rem;
  }

  .brand-name {
    font-size: 13px;
  }

  .nav-cta {
    font-size: 12px;
    padding-left: 9px;
    padding-right: 9px;
  }

  .hero {
    padding-top: 2.8rem;
    padding-bottom: 2.5rem;
  }

  .hero-logo-system {
    min-height: 158px;
  }

  .hero-logo-mark {
    width: min(124px, 42vw);
  }

  .rank-orb {
    width: 56px;
    height: 56px;
  }

  .rank-orb-sovereign {
    top: 10px;
  }

  .rank-orb-challenger {
    bottom: 12px;
  }

  .hero h1 {
    font-size: 31px;
  }

  .rank-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .trust-badge {
    font-size: 11px;
    padding: 0.45rem 0.65rem;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.58;
  }
}

.payment-grid .paypal-btn,
.service-card.featured .paypal-btn {
  margin-top: 0.65rem;
  background: linear-gradient(120deg, #103b8f 0%, #1d4ed8 42%, #38bdf8 100%);
  background-size: 170% 170%;
  color: #fff;
  border-color: rgba(255,255,255,0.12);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06) inset,
    0 8px 20px rgba(0,0,0,0.24),
    0 0 16px rgba(56,189,248,0.18);
  font-weight: 700;
}

.payment-grid .paypal-btn:hover,
.service-card.featured .paypal-btn:hover {
  background-position: 100% 50%;
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1) inset,
    0 10px 24px rgba(0,0,0,0.3),
    0 0 24px rgba(56,189,248,0.3);
}

.payment-grid .paypal-btn,
.service-card.featured .paypal-btn {
  margin-top: 0.65rem;
  background:
    linear-gradient(rgba(15,15,30,0.96), rgba(15,15,30,0.96)) padding-box,
    linear-gradient(120deg, rgba(56,189,248,0.55), rgba(167,139,250,0.52)) border-box;
  color: #c9d8ff;
  border-color: transparent;
  box-shadow: none;
  font-weight: 700;
}

.payment-grid .paypal-btn:hover,
.service-card.featured .paypal-btn:hover {
  background:
    linear-gradient(rgba(20,20,38,0.98), rgba(20,20,38,0.98)) padding-box,
    linear-gradient(120deg, rgba(56,189,248,0.72), rgba(167,139,250,0.68)) border-box;
  color: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,0.2), 0 0 18px rgba(56,189,248,0.16);
}


.faq-list { display: grid; gap: 0.85rem; margin-top: 2rem; }
.faq-item { background: #0f0f1e; border: 1px solid #1e1e3a; border-radius: 12px; padding: 1rem 1.15rem; }
    .faq-item summary { color: #e0e0f0; cursor: pointer; font-weight: 700; line-height: 1.5; }
    .faq-item p { color: #9090b0; font-size: 14px; line-height: 1.75; margin-top: 0.75rem; }
    .section-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.5rem; }
    .legal-page h2 { color: #e0e0f0; font-size: 22px; margin: 1.6rem 0 0.6rem; }
    .legal-page p { color: #9090b0; font-size: 15px; line-height: 1.75; max-width: 760px; }
    .legal-page h2:first-child { margin-top: 0; }

.faq-page {
  max-width: 980px;
}

.faq-page .faq-list {
  gap: 1rem;
}

.faq-page .faq-item {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(15,15,30,0.9), rgba(15,15,30,0.9)) padding-box,
    linear-gradient(120deg, rgba(124,58,237,0.42), rgba(56,189,248,0.28)) border-box;
  border-color: transparent;
}

.faq-page .faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(56,189,248,0.08), transparent 38%, rgba(124,58,237,0.06));
  opacity: 0.7;
}

.faq-page .faq-item summary,
.faq-page .faq-item p {
  position: relative;
}

.faq-support-card {
  margin-top: 2rem;
  padding: 1.4rem;
  border-radius: 8px;
  border: 1px solid rgba(56,189,248,0.26);
  background: linear-gradient(135deg, rgba(124,58,237,0.16), rgba(15,15,30,0.8) 42%, rgba(56,189,248,0.08));
}

.faq-support-card h2 {
  margin-top: 0;
}

/* Premium radiant CTA system */
:is(.nav-cta, .btn-primary, .submit-btn, .floating-cta, .service-card.featured .service-btn) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(120deg, #6d28d9 0%, #8b5cf6 34%, #38bdf8 68%, #7c3aed 100%);
  background-size: 220% 220%;
  color: #fff;
  border-color: rgba(255,255,255,0.18);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08) inset,
    0 0 22px rgba(124,58,237,0.34),
    0 10px 28px rgba(0,0,0,0.28);
  text-shadow: 0 1px 12px rgba(255,255,255,0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  animation: radiantGradient 8s ease infinite;
}

:is(.nav-cta, .btn-primary, .submit-btn, .floating-cta, .service-card.featured .service-btn)::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background:
    radial-gradient(circle at var(--glow-x, 28%) 18%, rgba(255,255,255,0.55), transparent 24%),
    linear-gradient(110deg, transparent 12%, rgba(255,255,255,0.24) 34%, transparent 56%);
  transform: translateX(-42%);
  opacity: 0.42;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.35s ease;
}

:is(.nav-cta, .btn-primary, .submit-btn, .floating-cta, .service-card.featured .service-btn)::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent 48%);
  pointer-events: none;
}

:is(.nav-cta, .btn-primary, .submit-btn, .floating-cta, .service-card.featured .service-btn):hover {
  background-position: 100% 50%;
  filter: saturate(1.12) brightness(1.05);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.12) inset,
    0 0 30px rgba(56,189,248,0.44),
    0 0 44px rgba(124,58,237,0.34),
    0 16px 34px rgba(0,0,0,0.34);
}

:is(.nav-cta, .btn-primary, .submit-btn, .floating-cta, .service-card.featured .service-btn):hover::before {
  opacity: 0.82;
  transform: translateX(34%);
}

.btn-primary:hover,
.submit-btn:hover,
.service-card.featured .service-btn:hover {
  transform: translateY(-2px);
}

.nav-cta:hover {
  transform: translateY(-1px);
}

.floating-cta:hover {
  transform: translateY(-3px);
}

:is(.btn-secondary, .service-btn, .social-link, .mini-link-row a) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(#0f0f1e, #0f0f1e) padding-box,
    linear-gradient(120deg, rgba(124,58,237,0.85), rgba(56,189,248,0.65), rgba(167,139,250,0.8)) border-box;
  border-color: transparent;
  box-shadow: 0 0 18px rgba(124,58,237,0.12);
}

:is(.btn-secondary, .service-btn, .social-link, .mini-link-row a)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0%, rgba(56,189,248,0.16) 42%, rgba(124,58,237,0.16) 58%, transparent 100%);
  transform: translateX(-105%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.25s ease;
}

:is(.btn-secondary, .service-btn, .social-link, .mini-link-row a):hover {
  color: #f5f3ff;
  border-color: transparent;
  box-shadow:
    0 0 24px rgba(56,189,248,0.2),
    0 0 30px rgba(124,58,237,0.18);
}

:is(.btn-secondary, .service-btn, .social-link, .mini-link-row a):hover::before {
  transform: translateX(0);
  opacity: 1;
}

@keyframes radiantGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Authentic coaching polish */
section {
  max-width: 980px;
}

.hero p {
  max-width: 640px;
  color: #9696bc;
}

.rank-badge {
  background: rgba(15,15,30,0.64);
  border-color: rgba(167,139,250,0.48);
  color: #c4b5fd;
}

.trust-row {
  margin-bottom: 1.15rem;
}

.trust-badge {
  background: rgba(12,12,22,0.72);
  border-color: rgba(124,58,237,0.36);
  box-shadow: none;
  font-size: 12px;
}

.stats-row {
  background: rgba(9,9,17,0.72);
}

.method-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.method-card,
.session-steps article {
  background: rgba(15,15,30,0.76);
  border: 1px solid rgba(124,58,237,0.22);
  border-radius: 8px;
  padding: 1.35rem;
  box-shadow: 0 14px 34px rgba(0,0,0,0.18);
}

.method-card-wide {
  grid-row: span 2;
  padding: 1.65rem;
}

.method-card h3,
.session-steps h3 {
  color: #e9e7ff;
  font-size: 18px;
  margin-bottom: 0.6rem;
}

.method-card p,
.session-steps p {
  color: #9090b0;
  font-size: 14px;
  line-height: 1.75;
}

.method-card a {
  color: #a78bfa;
  display: inline-flex;
  margin-top: 1rem;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: 2rem;
  align-items: start;
  margin-top: 4rem;
}

.focus-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.focus-list span {
  color: #ded8ff;
  background: rgba(15,15,30,0.72);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 999px;
  padding: 0.62rem 0.85rem;
  font-size: 14px;
}

.session-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.4rem;
}

.session-steps span {
  display: inline-block;
  color: #38bdf8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 0.7rem;
}

.content-card,
.about-card,
.service-card,
.blog-card,
.testi-card,
.faq-item {
  border-radius: 8px;
  background: rgba(15,15,30,0.82);
  border-color: rgba(124,58,237,0.2);
  box-shadow: none;
}

.content-card:hover,
.about-card:hover,
.service-card:hover,
.blog-card:hover,
.testi-card:hover {
  border-color: rgba(167,139,250,0.42);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  transform: translateY(-1px);
}

.service-card.featured {
  border-color: rgba(56,189,248,0.58);
  background: rgba(15,15,30,0.86);
  box-shadow: 0 0 0 1px rgba(56,189,248,0.06) inset, 0 14px 34px rgba(0,0,0,0.18), 0 0 24px rgba(56,189,248,0.12);
}

@property --pricing-aura-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

#book-coaching .service-card.featured {
  isolation: isolate;
  overflow: visible;
  z-index: 0;
}

#book-coaching .service-card.featured::before,
#book-coaching .service-card.featured::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
}

#book-coaching .service-card.featured::before {
  inset: -2px;
  z-index: -1;
  padding: 1px;
  background:
    conic-gradient(
      from var(--pricing-aura-angle),
      rgba(56,189,248,0.14) 0deg,
      rgba(124,58,237,0.7) 58deg,
      rgba(56,189,248,0.96) 116deg,
      rgba(167,139,250,0.62) 168deg,
      rgba(18,58,125,0.24) 228deg,
      rgba(124,58,237,0.72) 292deg,
      rgba(56,189,248,0.14) 360deg
    );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.86;
  filter: drop-shadow(0 0 8px rgba(56,189,248,0.35));
  animation: pricing-aura-spin 7.5s linear infinite;
}

#book-coaching .service-card.featured::after {
  inset: -16px;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 18%, rgba(124,58,237,0.24), transparent 34%),
    radial-gradient(circle at 82% 72%, rgba(56,189,248,0.26), transparent 38%),
    linear-gradient(135deg, rgba(124,58,237,0.16), rgba(56,189,248,0.1));
  opacity: 0.62;
  filter: blur(16px);
  animation: pricing-aura-breathe 4.8s ease-in-out infinite;
}

@keyframes pricing-aura-spin {
  to { --pricing-aura-angle: 360deg; }
}

@keyframes pricing-aura-breathe {
  0%, 100% {
    opacity: 0.48;
    transform: scale(0.985);
  }
  50% {
    opacity: 0.72;
    transform: scale(1.015);
  }
}

@media (max-width: 760px) {
  #book-coaching .service-card.featured::before {
    opacity: 0.68;
    filter: drop-shadow(0 0 6px rgba(56,189,248,0.26));
  }

  #book-coaching .service-card.featured::after {
    inset: -10px;
    opacity: 0.38;
    filter: blur(12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  #book-coaching .service-card.featured::before,
  #book-coaching .service-card.featured::after {
    animation: none !important;
  }

  #book-coaching .service-card.featured::before {
    --pricing-aura-angle: 145deg;
    opacity: 0.58;
  }

  #book-coaching .service-card.featured::after {
    opacity: 0.36;
    transform: none;
  }
}

.badge-popular {
  background: #1a1a2e;
  border: 1px solid rgba(56,189,248,0.45);
  color: #c4b5fd;
}

.service-icon {
  opacity: 0.86;
}

.testi-text {
  font-style: normal;
}

.contact-box,
.blog-note,
.cta-band,
.article-cta {
  border-radius: 8px;
  box-shadow: none;
}

:is(.nav-cta, .btn-primary, .submit-btn, .floating-cta, .service-card.featured .service-btn) {
  border-radius: 7px;
  background: linear-gradient(120deg, #6d28d9 0%, #8b5cf6 48%, #38bdf8 100%);
  background-size: 160% 160%;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.07) inset,
    0 8px 22px rgba(0,0,0,0.28),
    0 0 16px rgba(124,58,237,0.22);
  text-shadow: none;
  animation: none;
}

:is(.nav-cta, .btn-primary, .submit-btn, .floating-cta, .service-card.featured .service-btn)::before {
  opacity: 0.24;
}

:is(.nav-cta, .btn-primary, .submit-btn, .floating-cta, .service-card.featured .service-btn):hover {
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1) inset,
    0 10px 24px rgba(0,0,0,0.32),
    0 0 20px rgba(56,189,248,0.24);
}

:is(.btn-secondary, .service-btn, .social-link, .mini-link-row a) {
  border-radius: 7px;
  background:
    linear-gradient(rgba(15,15,30,0.94), rgba(15,15,30,0.94)) padding-box,
    linear-gradient(120deg, rgba(124,58,237,0.58), rgba(56,189,248,0.42)) border-box;
  box-shadow: none;
}

:is(.btn-secondary, .service-btn, .social-link, .mini-link-row a):hover {
  box-shadow: 0 8px 22px rgba(0,0,0,0.2);
}

@media (max-width: 760px) {
  .hero {
    padding-top: 3.6rem;
    padding-bottom: 3rem;
  }

  .hero-logo-system {
    min-height: 188px;
    margin-bottom: 0.55rem;
  }

  .rank-badge {
    margin-bottom: 1rem;
  }

  .trust-row {
    margin-bottom: 0.9rem;
  }

  .hero p {
    margin-bottom: 1rem;
  }

  .urgency-line {
    margin-bottom: 0.8rem;
  }

  .hero .hero-btns {
    gap: 0.65rem;
  }

  .hero .hero-btns .btn-primary,
  .hero .hero-btns .btn-secondary {
    flex: 1 1 calc(50% - 0.4rem);
    width: auto;
    padding-left: 12px;
    padding-right: 12px;
  }

  .method-grid,
  .section-split,
  .session-steps {
    grid-template-columns: 1fr;
  }

  .section-split {
    gap: 1rem;
    margin-top: 3rem;
  }

  .method-card-wide {
    grid-row: auto;
  }
}

@media (max-width: 380px) {
  .nav {
    justify-content: space-between;
    gap: 0.45rem;
  }

  .brand-name {
    font-size: 13px;
  }

  .nav-cta {
    font-size: 12px;
    padding-left: 9px;
    padding-right: 9px;
  }

  .hero {
    padding-top: 2.8rem;
    padding-bottom: 2.5rem;
  }

  .hero-logo-system {
    min-height: 158px;
    margin-bottom: 0.4rem;
  }

  .hero-logo-mark {
    width: min(124px, 42vw);
  }

  .rank-orb {
    width: 56px;
    height: 56px;
  }

  .rank-orb-sovereign {
    top: 10px;
  }

  .rank-orb-challenger {
    bottom: 12px;
  }

  .hero h1 {
    font-size: 31px;
  }

  .rank-badge {
    font-size: 12px;
    padding: 6px 12px;
    margin-bottom: 0.8rem;
  }

  .trust-badge {
    font-size: 11px;
    padding: 0.45rem 0.65rem;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.58;
    margin-bottom: 0.85rem;
  }
}

#book-coaching .payment-grid .paypal-btn,
#book-coaching .service-card.featured .paypal-btn {
  margin-top: 0.65rem;
  background: linear-gradient(120deg, #103b8f 0%, #1d4ed8 42%, #38bdf8 100%);
  background-size: 170% 170%;
  color: #fff;
  border-color: rgba(255,255,255,0.12);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06) inset,
    0 8px 20px rgba(0,0,0,0.24),
    0 0 16px rgba(56,189,248,0.18);
  font-weight: 700;
}

#book-coaching .payment-grid .paypal-btn:hover,
#book-coaching .service-card.featured .paypal-btn:hover {
  background-position: 100% 50%;
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1) inset,
    0 10px 24px rgba(0,0,0,0.3),
    0 0 24px rgba(56,189,248,0.3);
}

#book-coaching .service-card.featured .service-btn:not(.paypal-btn) {
  background: linear-gradient(120deg, #6d28d9 0%, #8b5cf6 48%, #38bdf8 100%);
  background-size: auto;
  background-position: 0% 0%;
  color: #fff;
  border-color: rgba(255,255,255,0.14);
}

#book-coaching .service-card.featured .service-btn:not(.paypal-btn):hover,
#book-coaching .service-card.featured .service-btn:not(.paypal-btn):focus-visible {
  background-position: 100% 50%;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1) inset,
    0 10px 24px rgba(0,0,0,0.32),
    0 0 22px rgba(56,189,248,0.26);
}
