 :root {
            --goldCore: #c9a04a;
            --goldDeep: #a17d33;
            --goldLight: #e8d5a3;
            --onyx: #0a0c14;
            --charcoal: #121620;
            --darkGrey: #1a1f2b;
            --lightGrey: #6a7a8a;
            --cream: #f0f4fc;
            --whiteCard: #eaf0fa;
            --borderGold: #b8953e;
            --shadowGold: rgba(201, 160, 74, 0.3);
            --gridColor: rgba(201, 160, 74, 0.05);
            --blueAccent: #3b6f9a;
            --blueGlow: rgba(59, 111, 154, 0.15);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--onyx);
            color: #dce4f0;
            line-height: 1.7;
            margin: 0;
            padding: 0;
        }

        .GlobalWrapper {
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
            background: var(--onyx);
            overflow-x: hidden;
            position: relative;
        }

        .GlobalWrapper::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                radial-gradient(2px 2px at 20px 30px, rgba(201, 160, 74, 0.3), transparent),
                radial-gradient(2px 2px at 40px 70px, rgba(59, 111, 154, 0.25), transparent),
                radial-gradient(2px 2px at 50px 160px, rgba(201, 160, 74, 0.2), transparent),
                radial-gradient(2px 2px at 90px 40px, rgba(59, 111, 154, 0.2), transparent),
                radial-gradient(2px 2px at 130px 80px, rgba(201, 160, 74, 0.3), transparent),
                radial-gradient(2px 2px at 160px 30px, rgba(59, 111, 154, 0.15), transparent);
            background-size: 200px 200px;
            pointer-events: none;
            z-index: 0;
            opacity: 0.7;
        }

        .GlobalWrapper::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at 30% 40%, rgba(59, 111, 154, 0.06), transparent 60%),
                        radial-gradient(ellipse at 70% 80%, rgba(201, 160, 74, 0.04), transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        .GlobalWrapper > * {
            position: relative;
            z-index: 1;
        }

        .HeroSection {
            position: relative;
            overflow: hidden;
            background: radial-gradient(ellipse at 20% 30%, rgba(59, 111, 154, 0.12), transparent 60%),
                        radial-gradient(ellipse at 80% 70%, rgba(201, 160, 74, 0.08), transparent 50%),
                        linear-gradient(145deg, #0a0c14 0%, #121620 100%);
            width: 100%;
            border-bottom: 2px solid var(--goldCore);
        }

        .HeroSection::after {
            content: '';
            position: absolute;
            top: -40%;
            right: -20%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(59, 111, 154, 0.07), transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .HeroGrid {
            display: grid;
            grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
            gap: 36px;
            align-items: center;
            max-width: 1280px;
            margin: 0 auto;
            padding: 48px 40px 32px;
            position: relative;
            z-index: 2;
        }

        .HeroCopy {
            padding-bottom: 16px;
        }

        .HeroBadge {
            display: inline-block;
            padding: 7px 18px;
            border-radius: 999px;
            background: rgba(59, 111, 154, 0.2);
            border: 1px solid var(--goldCore);
            font-size: 0.9rem;
            color: var(--goldLight);
            font-weight: 700;
            letter-spacing: 0.3px;
            backdrop-filter: blur(4px);
        }

        .HeroTitle {
            margin: 18px 0 12px;
            font-size: 3.2rem;
            line-height: 1.15;
            letter-spacing: -0.02em;
            font-weight: 800;
            color: var(--goldCore);
            text-shadow: 0 0 40px rgba(201, 160, 74, 0.12);
        }

        .HeroSub {
            margin: 0;
            font-size: 1.3rem;
            line-height: 1.4;
            font-weight: 700;
            color: var(--goldLight);
        }

        .HeroDesc {
            margin: 18px 0 0;
            font-size: 1rem;
            color: #b0c0d0;
            line-height: 1.7;
            max-width: 540px;
        }

        .HeroCta {
            display: inline-block;
            margin-top: 24px;
            padding: 12px 28px;
            border-radius: 999px;
            background: var(--goldCore);
            color: #0f0f0f;
            font-size: 0.95rem;
            font-weight: 800;
            text-decoration: none;
            box-shadow: 0 10px 22px var(--shadowGold);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .HeroCta:hover {
            transform: translateY(-3px);
            background: var(--goldDeep);
            box-shadow: 0 14px 30px var(--shadowGold);
        }

        .HeroPhoto {
            position: relative;
            min-height: 340px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .HeroPhotoShell {
            width: 100%;
            max-width: 400px;
            border-radius: 40px 0 40px 0;
            overflow: hidden;
            border: 6px solid var(--goldCore);
            background: var(--charcoal);
            box-shadow: 0 0 60px rgba(59, 111, 154, 0.15);
        }

        .HeroPhotoShell img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .ContentContainer {
            max-width: 1280px;
            margin: 0 auto;
            padding: 48px 40px 64px;
        }

        .AlertBar {
            background: linear-gradient(135deg, rgba(20, 28, 42, 0.9), rgba(30, 40, 58, 0.9));
            border: 1px solid var(--goldCore);
            border-radius: 28px;
            padding: 20px 24px;
            text-align: center;
            box-shadow: inset 0 1px 0 rgba(201, 160, 74, 0.15), 0 8px 32px rgba(0,0,0,0.4);
            margin-bottom: 32px;
            backdrop-filter: blur(8px);
        }

        .AlertBar strong {
            display: block;
            font-size: 1.3rem;
            color: var(--goldLight);
            margin-bottom: 6px;
        }

        .AlertBar span {
            color: var(--goldCore);
            font-weight: 800;
        }

        .TwoCol {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            margin-bottom: 48px;
        }

        .ProfileCard {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 24px;
            background: rgba(22, 30, 44, 0.8);
            border: 1px solid rgba(58, 80, 110, 0.5);
            border-radius: 28px;
            padding: 24px;
            box-shadow: 0 12px 28px rgba(0,0,0,0.5);
            backdrop-filter: blur(8px);
        }

        .ProfileAvatar {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--goldCore);
            flex-shrink: 0;
            box-shadow: 0 0 30px rgba(201, 160, 74, 0.15);
        }

        .ProfileText strong {
            display: block;
            font-size: 1.2rem;
            margin-bottom: 8px;
            color: var(--goldLight);
        }

        .ProfileText p {
            margin: 0;
            color: #b0c0d0;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .FeatureCard {
            flex: 1;
            background: linear-gradient(180deg, rgba(20, 28, 42, 0.8), rgba(16, 22, 36, 0.8));
            border: 1px solid rgba(58, 80, 110, 0.5);
            border-radius: 28px;
            padding: 24px;
            backdrop-filter: blur(8px);
            box-shadow: 0 8px 32px rgba(0,0,0,0.3);
        }

        .SectionChip {
            display: inline-block;
            margin: 0 0 18px;
            padding: 8px 20px;
            border-radius: 999px;
            background: var(--goldCore);
            color: #0f0f0f;
            font-size: 0.95rem;
            font-weight: 700;
        }

        .FeatureList {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .FeatureList li {
            position: relative;
            padding: 12px 0 12px 34px;
            border-bottom: 1px dashed rgba(58, 80, 110, 0.4);
            color: #b0c0d0;
            font-size: 0.96rem;
        }

        .FeatureList li::before {
            content: "◆";
            position: absolute;
            left: 10px;
            top: 12px;
            color: var(--goldCore);
            font-weight: 800;
            font-size: 1.2rem;
        }

        .ActionNote {
            margin: 20px 0 0;
            padding: 16px;
            border-radius: 20px;
            background: linear-gradient(135deg, rgba(20, 28, 42, 0.9), rgba(30, 40, 58, 0.9));
            border: 1px solid var(--goldCore);
            text-align: center;
            color: var(--goldLight);
            font-weight: 700;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

        .ImageGridTwo {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 36px 0 40px;
        }

        .ImageGridTwo .imgCard {
            border-radius: 24px;
            overflow: hidden;
            border: 2px solid var(--goldCore);
            background: #1a1f2b;
            aspect-ratio: 16/9;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--goldLight);
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: 0 8px 32px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
        }

        .ImageGridTwo .imgCard:hover {
            transform: scale(1.02);
        }

        .ImageGridTwo .imgCard img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .CourseGrid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 28px;
            margin: 40px 0 48px;
        }

        .CourseCard {
            background: rgba(22, 30, 44, 0.9);
            border-radius: 28px;
            padding: 24px 22px;
            border: 1px solid rgba(58, 80, 110, 0.5);
            box-shadow: 0 8px 18px rgba(0,0,0,0.3);
            transition: 0.3s ease;
            backdrop-filter: blur(4px);
        }

        .CourseCard:hover {
            border-color: var(--goldCore);
            box-shadow: 0 12px 40px rgba(201, 160, 74, 0.1);
            transform: translateY(-4px);
        }

        .CourseCard h3 {
            font-size: 1.3rem;
            margin: 0 0 10px;
            color: var(--goldLight);
        }

        .CourseCard .priceTag {
            font-weight: 800;
            color: var(--goldCore);
            font-size: 1.4rem;
            display: block;
            margin: 12px 0 8px;
        }

        .CourseCard .courseMeta {
            font-size: 0.85rem;
            color: #8a9aaa;
            background: rgba(42, 58, 78, 0.8);
            display: inline-block;
            padding: 4px 14px;
            border-radius: 40px;
            margin-top: 8px;
        }

        .YieldBadge {
            background: var(--goldCore);
            color: #0f0f0f;
            padding: 6px 18px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 0.8rem;
            display: inline-block;
            margin-top: 10px;
        }

        .DiagnosticBox {
            background: rgba(18, 26, 40, 0.9);
            border-radius: 32px;
            padding: 32px 36px;
            margin: 32px 0 28px;
            border: 2px solid var(--goldCore);
            box-shadow: 0 12px 40px rgba(0,0,0,0.5);
            backdrop-filter: blur(8px);
        }

        .DiagnosticForm {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            align-items: center;
            margin-top: 20px;
        }

        .DiagnosticForm input {
            flex: 2;
            min-width: 200px;
            padding: 16px 24px;
            border-radius: 60px;
            border: 1px solid rgba(74, 100, 130, 0.5);
            font-size: 1rem;
            background: rgba(14, 20, 34, 0.9);
            color: #dce4f0;
            font-weight: 500;
            transition: border-color 0.3s ease;
        }

        .DiagnosticForm input:focus {
            outline: 2px solid var(--goldCore);
            border-color: transparent;
        }

        .DiagnosticButton {
            background: linear-gradient(180deg, var(--goldCore), var(--goldDeep));
            border: none;
            border-radius: 60px;
            padding: 16px 38px;
            color: #0f0f0f;
            font-weight: 800;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            white-space: nowrap;
            box-shadow: 0 8px 18px var(--shadowGold);
        }

        .DiagnosticButton:hover {
            transform: scale(1.02);
            background: var(--goldDeep);
            box-shadow: 0 12px 28px var(--shadowGold);
        }

        .KnowledgeGrid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
            margin: 32px 0 40px;
        }

        .KnowledgeCard {
            background: rgba(22, 30, 44, 0.9);
            border-radius: 24px;
            padding: 20px;
            border: 1px solid rgba(58, 80, 110, 0.5);
            box-shadow: 0 6px 16px rgba(0,0,0,0.3);
            backdrop-filter: blur(4px);
            transition: border-color 0.3s ease;
        }

        .KnowledgeCard:hover {
            border-color: var(--goldCore);
        }

        .KnowledgeCard h3 {
            margin: 0 0 10px;
            font-size: 1.1rem;
            color: var(--goldLight);
            font-weight: 700;
        }

        .KnowledgeCard p {
            margin: 0;
            color: #b0c0d0;
            font-size: 0.92rem;
            line-height: 1.6;
        }

        .FooterArea {
            padding: 40px 40px 32px;
            text-align: center;
            font-size: 0.85rem;
            color: #6a7a8a;
            border-top: 1px solid rgba(42, 58, 78, 0.6);
            background: rgba(12, 18, 30, 0.95);
            backdrop-filter: blur(8px);
        }

        .FooterLinkGroup {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }

        .LegalLink {
            color: var(--goldLight);
            text-decoration: underline;
            cursor: pointer;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .LegalLink:hover {
            color: var(--goldCore);
        }

        .EmailContact {
            margin-top: 18px;
            font-weight: 500;
            color: var(--goldLight);
        }

        .EmailContact a {
            color: var(--goldCore);
            text-decoration: none;
            font-weight: 700;
            transition: color 0.3s ease;
        }

        .EmailContact a:hover {
            color: var(--goldLight);
        }

        .FixedBar {
            position: fixed;
            left: 0;
            bottom: 0;
            width: 100%;
            background: rgba(12, 18, 30, 0.95);
            backdrop-filter: blur(18px);
            box-shadow: 0 -8px 28px rgba(0,0,0,0.7);
            z-index: 100;
            padding: 16px 24px;
            border-top: 1px solid var(--goldCore);
        }

        .FixedInner {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .FormInline {
            display: flex;
            flex: 2;
            gap: 16px;
            flex-wrap: wrap;
        }

        .FormInline input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 60px;
            border: 1px solid rgba(74, 100, 130, 0.5);
            font-size: 0.9rem;
            background: rgba(14, 20, 34, 0.9);
            color: #dce4f0;
            transition: border-color 0.3s ease;
        }

        .FormInline input:focus {
            outline: 2px solid var(--goldCore);
            border-color: transparent;
        }

        .FixedCta {
            background: linear-gradient(180deg, var(--goldCore), var(--goldDeep));
            border: none;
            border-radius: 60px;
            padding: 14px 32px;
            color: #0f0f0f;
            font-weight: 800;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.2s;
            white-space: nowrap;
        }

        .FixedCta:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 24px var(--shadowGold);
        }

        .FeedbackMsg {
            margin-top: 8px;
            font-size: 0.8rem;
            font-weight: 500;
            text-align: center;
        }

        .Overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.85);
            backdrop-filter: blur(12px);
            z-index: 200;
            justify-content: center;
            align-items: center;
            padding: 24px;
        }

        .ModalCard {
            width: min(680px, 90%);
            max-height: 85vh;
            overflow-y: auto;
            background: rgba(18, 26, 40, 0.95);
            border-radius: 32px;
            padding: 32px 32px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.7);
            border: 1px solid var(--goldCore);
            backdrop-filter: blur(8px);
        }

        .ModalCard h2 {
            margin: 0 0 20px;
            font-size: 1.6rem;
            text-align: center;
            color: var(--goldLight);
        }

        .ModalCard p {
            color: #b0c0d0;
        }

        .CloseModal {
            display: block;
            margin: 28px auto 0;
            padding: 12px 32px;
            background: var(--goldCore);
            color: #0f0f0f;
            border: none;
            border-radius: 999px;
            font-size: 0.9rem;
            cursor: pointer;
            font-weight: 700;
            transition: 0.2s;
        }

        .CloseModal:hover {
            background: var(--goldDeep);
        }

        .TrialIntro {
            background: rgba(18, 26, 40, 0.9);
            border-radius: 32px;
            padding: 32px 36px;
            margin: 20px 0 36px;
            border: 1px solid var(--goldCore);
            backdrop-filter: blur(8px);
            box-shadow: 0 8px 32px rgba(0,0,0,0.3);
        }

        .TrialIntro h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--goldLight);
            margin-bottom: 12px;
        }

        .TrialIntro p {
            color: #b0c0d0;
            max-width: 780px;
        }

        .TrialHighlights {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-top: 20px;
        }

        .TrialHighlights div {
            flex: 1 1 200px;
            background: rgba(14, 20, 34, 0.8);
            border-radius: 24px;
            padding: 18px 22px;
            border: 1px solid rgba(58, 80, 110, 0.5);
            backdrop-filter: blur(4px);
        }

        .TrialHighlights div strong {
            display: block;
            color: var(--goldLight);
            font-size: 1.1rem;
            margin-bottom: 6px;
        }

        .TrialHighlights div span {
            color: #b0c0d0;
            font-size: 0.95rem;
        }

        @media (max-width: 1024px) {
            .HeroGrid {
                grid-template-columns: 1fr;
                padding: 36px 24px;
                gap: 28px;
            }
            .HeroTitle {
                font-size: 2.6rem;
            }
            .ContentContainer {
                padding: 32px 24px;
            }
            .FixedInner {
                flex-direction: column;
                align-items: stretch;
            }
            .FormInline {
                flex-direction: column;
            }
            .FixedCta {
                width: 100%;
                white-space: normal;
            }
            .ImageGridTwo {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 640px) {
            .TwoCol {
                flex-direction: column;
            }
            .ProfileCard {
                flex-direction: column;
                text-align: center;
            }
            .HeroTitle {
                font-size: 2rem;
            }
            .DiagnosticBox {
                padding: 24px 18px;
            }
            .DiagnosticForm {
                flex-direction: column;
                align-items: stretch;
            }
            .DiagnosticButton {
                width: 100%;
                text-align: center;
            }
            .TrialIntro {
                padding: 24px 18px;
            }
        }