* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #050505;
    color: #e8e2d2;
    font-family: Verdana, Tahoma, sans-serif;
    overflow-x: hidden;
}

#backgroundCanvas {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 50% 20%, rgba(201, 163, 74, 0.12), transparent 35%),
        linear-gradient(180deg, #111 0%, #050505 100%);
}

.site-shell {
    max-width: 980px;
    width: 92%;
    margin: 36px auto;
}

.top-bar {
    text-align: center;
    border: 1px solid rgba(201, 163, 74, 0.35);
    background: rgba(14, 14, 14, 0.92);
    border-radius: 18px;
    padding: 28px 22px;
    box-shadow: 0 0 35px rgba(201, 163, 74, 0.08);
}

.eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    color: #9b8753;
    margin-bottom: 8px;
}

h1 {
    margin: 0;
    font-size: 42px;
    letter-spacing: 5px;
    color: #f0d27a;
    text-shadow: 0 0 16px rgba(201, 163, 74, 0.35);
}

.brand-block p {
    margin: 10px 0 0;
    color: #9d9d9d;
    font-size: 13px;
    letter-spacing: 1px;
}

.nav {
    margin-top: 24px;
}

.nav a {
    display: inline-block;
    color: #d6b65d;
    border: 1px solid rgba(201, 163, 74, 0.3);
    background: rgba(0, 0, 0, 0.25);
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 12px;
    text-decoration: none;
    margin: 5px;
    transition: all 0.22s ease;
}

.nav a:hover,
.nav a.active {
    color: #050505;
    background: #d6b65d;
    box-shadow: 0 0 18px rgba(201, 163, 74, 0.42);
    transform: translateY(-2px);
}

.panel-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    color: #111;
    background: #c9a34a;
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 18px;
}

h2 {
    font-size: 30px;
    margin: 0 0 14px;
    color: #ffffff;
}

h3 {
    margin: 0 0 14px;
    font-size: 20px;
    color: #f0d27a;
}

.button-row {
    margin-top: 24px;
}

.button {
    display: inline-block;
    padding: 12px 20px;
    margin: 8px;
    border: 1px solid rgba(201, 163, 74, 0.75);
    color: #d6b65d;
    text-decoration: none;
    border-radius: 999px;
    font-size: 13px;
    transition: all 0.22s ease;
}

.button.primary {
    background: #c9a34a;
    color: #080808;
}

.button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 22px rgba(201, 163, 74, 0.42);
}

.card-number {
    display: inline-block;
    color: #c9a34a;
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-intro {
    max-width: 720px;
    margin: 0 auto 20px !important;
    color: #bfbfbf !important;
    line-height: 1.75 !important;
}

.notice-panel {
    margin-top: 20px;
    text-align: center;
    border-radius: 14px;
    padding: 15px;
    color: #aaa;
    font-size: 12px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.notice-panel strong {
    color: #c9a34a;
}

footer {
    text-align: center;
    color: #666;
    font-size: 11px;
    margin: 22px 0 10px;
}

/* Home Page */

.hero-panel {
    margin-top: 24px;
    text-align: center;
    border-radius: 18px;
    padding: 42px 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(135deg, rgba(201, 163, 74, 0.12), transparent 35%),
        rgba(18, 18, 18, 0.94);
    box-shadow: inset 0 0 45px rgba(255, 255, 255, 0.02);
}

.hero-panel p {
    max-width: 650px;
    margin: 0 auto;
    color: #c9c9c9;
    line-height: 1.7;
}

.content-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.card {
    position: relative;
    overflow: visible;
    min-height: 230px;
    padding: 24px;
    border-radius: 16px;
    background: rgba(15, 15, 15, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: all 0.22s ease;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 163, 74, 0.12), transparent 45%);
    opacity: 0;
    transition: opacity 0.22s ease;
    border-radius: 16px;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 163, 74, 0.55);
    box-shadow: 0 0 24px rgba(201, 163, 74, 0.12);
}

.card:hover::before {
    opacity: 1;
}

.card > * {
    position: relative;
    z-index: 1;
}

.card.wide {
    grid-column: span 2;
}

.card p {
    line-height: 1.7;
    color: #cfcfcf;
    margin: 0;
}

.line-list {
    display: grid;
    gap: 9px;
    margin-top: 10px;
}

.line-list span {
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(0, 0, 0, 0.22);
    color: #d8d8d8;
    border-radius: 10px;
    padding: 9px 12px;
}

.term-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.term-box {
    position: relative;
    width: 190px;
    border: 1px solid rgba(201, 163, 74, 0.32);
    background: rgba(0, 0, 0, 0.28);
    border-radius: 14px;
    padding: 20px 12px;
    transition: all 0.22s ease;
}

.term-box:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 163, 74, 0.75);
    box-shadow: 0 0 20px rgba(201, 163, 74, 0.16);
}

.term-box.featured {
    border-color: rgba(201, 163, 74, 0.75);
    background:
        linear-gradient(135deg, rgba(201, 163, 74, 0.14), rgba(0, 0, 0, 0.28));
}

.term-badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 9px;
    border-radius: 999px;
    background: #c9a34a;
    color: #070707;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.term-box strong {
    display: block;
    font-size: 26px;
    color: #ffffff;
    letter-spacing: 2px;
}

.term-box span {
    display: block;
    margin-top: 6px;
    color: #9d9d9d;
    font-size: 12px;
}

.price {
    margin-top: 12px;
    color: #f0d27a;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
}

.term-box small {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    color: #777;
}

.pricing-note {
    max-width: 620px;
    margin: 18px auto 0 !important;
    color: #9d9d9d !important;
    font-size: 12px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.feature-item {
    position: relative;
    min-height: 76px;
    padding: 14px;
    border-radius: 14px;
    background: rgba(201, 163, 74, 0.08);
    border: 1px solid rgba(201, 163, 74, 0.18);
    color: #e6e6e6;
    font-size: 13px;
    cursor: default;
    overflow: hidden;
    transition:
        min-height 0.28s ease,
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(201, 163, 74, 0.22), transparent 38%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 50%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.feature-item span {
    position: relative;
    z-index: 1;
    display: block;
    color: #f0d27a;
    font-weight: bold;
    letter-spacing: 0.3px;
    transition: transform 0.25s ease;
}

.feature-item p {
    position: relative;
    z-index: 1;
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    color: #cfcfcf;
    font-size: 12px;
    line-height: 1.55;
    overflow: hidden;
    transition:
        max-height 0.28s ease,
        opacity 0.22s ease,
        margin-top 0.28s ease;
}

.feature-item:hover {
    min-height: 132px;
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(201, 163, 74, 0.65);
    background: rgba(201, 163, 74, 0.12);
    box-shadow: 0 0 24px rgba(201, 163, 74, 0.16);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover span {
    transform: translateY(-2px);
}

.feature-item:hover p {
    max-height: 120px;
    opacity: 1;
    margin-top: 10px;
}

/* Shared Status Boxes */

.status-header,
.terminal-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #f0d27a;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c9a34a;
    box-shadow: 0 0 12px rgba(201, 163, 74, 0.85);
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0% {
        transform: scale(1);
        opacity: 0.65;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.65;
    }
}

.status-line,
.terminal-row {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 12px;
}

.status-line:last-child,
.terminal-row:last-child {
    border-bottom: none;
}

.status-line span,
.terminal-row span {
    color: #8f8f8f;
}

.status-line strong,
.terminal-row strong {
    color: #d6b65d;
    letter-spacing: 1px;
}

/* Coaching Page */

.coaching-hero,
.consultation-hero,
.contact-hero {
    margin-top: 24px;
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.95fr);
    gap: 18px;
    align-items: stretch;
}

.coaching-hero-left,
.consultation-hero-left,
.contact-hero-left {
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 18px;
    padding: 50px 36px;
    border: 1px solid rgba(201, 163, 74, 0.26);
    background:
        radial-gradient(circle at 18% 18%, rgba(201, 163, 74, 0.16), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.055), transparent 32%),
        linear-gradient(135deg, rgba(201, 163, 74, 0.085), transparent 42%),
        rgba(16, 16, 16, 0.96);
    box-shadow:
        inset 0 0 55px rgba(255, 255, 255, 0.018),
        0 0 34px rgba(201, 163, 74, 0.075);
}

.coaching-hero-left::before,
.consultation-hero-left::before,
.contact-hero-left::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(201, 163, 74, 0.08);
    border-radius: 14px;
    pointer-events: none;
}

.coaching-hero-left::after,
.consultation-hero-left::after,
.contact-hero-left::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 1px;
    left: 34px;
    bottom: 26px;
    background: linear-gradient(90deg, rgba(201, 163, 74, 0.48), transparent);
    opacity: 0.85;
    pointer-events: none;
}

.coaching-hero-left h2,
.consultation-hero-left h2,
.contact-hero-left h2 {
    font-size: 35px;
    margin-bottom: 14px;
}

.coaching-hero-left p,
.consultation-hero-left p,
.contact-hero-left p {
    max-width: 660px;
    margin: 0 auto;
    color: #c9c9c9;
    line-height: 1.78;
}

.coaching-status-box,
.consultation-terminal,
.contact-status-box {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(201, 163, 74, 0.32);
    background:
        radial-gradient(circle at 82% 10%, rgba(201, 163, 74, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(201, 163, 74, 0.07), rgba(0, 0, 0, 0.28)),
        rgba(10, 10, 10, 0.97);
    box-shadow:
        0 0 28px rgba(201, 163, 74, 0.08),
        inset 0 0 24px rgba(255, 255, 255, 0.018);
}

.consultation-terminal::before,
.contact-status-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.018) 0,
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px,
            transparent 8px
        );
    opacity: 0.22;
    pointer-events: none;
}

.coaching-section,
.consultation-section,
.contact-section {
    position: relative;
    margin-top: 22px;
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    background:
        radial-gradient(circle at 12% 8%, rgba(201, 163, 74, 0.08), transparent 30%),
        rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.coaching-section::before,
.consultation-section::before,
.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.032), transparent 46%),
        radial-gradient(circle at 92% 12%, rgba(201, 163, 74, 0.09), transparent 30%);
    opacity: 0.82;
    pointer-events: none;
}

.coaching-section::after,
.consultation-section::after,
.contact-section::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 1px;
    right: 24px;
    top: 22px;
    background: linear-gradient(90deg, transparent, rgba(201, 163, 74, 0.35));
    opacity: 0.7;
    pointer-events: none;
}

.coaching-section > *,
.consultation-section > *,
.contact-section > * {
    position: relative;
    z-index: 1;
}

.coaching-section h3,
.consultation-section h3,
.contact-section h3 {
    font-size: 24px;
}

.method-stack,
.process-track,
.consultation-grid,
.booking-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.method-card,
.process-step,
.coaching-plan,
.consultation-card,
.consult-option,
.booking-step {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(201, 163, 74, 0.18);
    background:
        radial-gradient(circle at 73% 18%, rgba(201, 163, 74, 0.14), transparent 36%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 44%),
        rgba(0, 0, 0, 0.26);
    transition:
        transform 0.24s ease,
        border-color 0.24s ease,
        box-shadow 0.24s ease,
        background 0.24s ease;
}

.method-card::before,
.process-step::before,
.coaching-plan::before,
.consultation-card::before,
.consult-option::before,
.booking-step::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    right: -55px;
    top: -50px;
    border-radius: 50%;
    background: rgba(201, 163, 74, 0.13);
    filter: blur(22px);
    opacity: 0;
    transition:
        opacity 0.24s ease,
        transform 0.24s ease;
    pointer-events: none;
}

.method-card::after,
.process-step::after,
.coaching-plan::after,
.consultation-card::after,
.consult-option::after,
.booking-step::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 1px;
    left: 18px;
    bottom: 16px;
    background: linear-gradient(90deg, rgba(201, 163, 74, 0.45), transparent);
    opacity: 0;
    transition: opacity 0.24s ease;
    pointer-events: none;
}

.method-card:hover,
.process-step:hover,
.coaching-plan:hover,
.consultation-card:hover,
.consult-option:hover,
.booking-step:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 163, 74, 0.65);
    box-shadow:
        0 0 26px rgba(201, 163, 74, 0.14),
        -10px 12px 34px rgba(201, 163, 74, 0.055);
}

.method-card:hover::before,
.process-step:hover::before,
.coaching-plan:hover::before,
.consultation-card:hover::before,
.consult-option:hover::before,
.booking-step:hover::before {
    opacity: 1;
    transform: translate(-8px, 6px);
}

.method-card:hover::after,
.process-step:hover::after,
.coaching-plan:hover::after,
.consultation-card:hover::after,
.consult-option:hover::after,
.booking-step:hover::after {
    opacity: 1;
}

.method-card,
.process-step {
    padding: 22px 16px;
    min-height: 210px;
}

.consultation-card {
    padding: 23px 16px;
    min-height: 192px;
}

.booking-step {
    padding: 20px 14px;
    min-height: 185px;
}

.method-card span,
.consultation-card span {
    display: block;
    color: #f0d27a;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.method-card p,
.consultation-card p,
.process-step p,
.booking-step p {
    color: #cfcfcf;
    font-size: 12px;
    line-height: 1.65;
    margin: 0;
}

.process-number,
.booking-step span {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(201, 163, 74, 0.12);
    border: 1px solid rgba(201, 163, 74, 0.25);
    color: #d6b65d;
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.process-step h4,
.booking-step strong {
    color: #ffffff;
    margin: 0 0 10px;
    font-size: 17px;
}

.coaching-plan-grid,
.consult-option-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
    align-items: stretch;
}

.coaching-plan,
.consult-option {
    padding: 25px 18px 24px;
    min-height: 340px;
}

.coaching-plan.featured-plan,
.consult-option.featured-consult {
    border-color: rgba(201, 163, 74, 0.78);
    background:
        radial-gradient(circle at 72% 15%, rgba(201, 163, 74, 0.24), transparent 40%),
        linear-gradient(135deg, rgba(201, 163, 74, 0.15), rgba(0, 0, 0, 0.3));
    box-shadow:
        0 0 30px rgba(201, 163, 74, 0.11),
        inset 0 0 26px rgba(255, 255, 255, 0.018);
}

.plan-topline,
.consult-label {
    color: #9d9d9d;
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.coaching-plan strong,
.consult-option strong {
    display: block;
    font-size: 34px;
    color: #ffffff;
    letter-spacing: 3px;
}

.plan-price,
.consult-price {
    margin-top: 14px;
    color: #f0d27a;
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 1px;
}

.coaching-plan span,
.consult-option span {
    display: block;
    margin-top: 5px;
    color: #777;
    font-size: 12px;
}

.coaching-plan p,
.consult-option p {
    margin: 18px auto 0;
    max-width: 240px;
    color: #c7c7c7;
    font-size: 12px;
    line-height: 1.65;
}

/* Enhanced Athlete Support */

.enhanced-section {
    border-color: rgba(201, 163, 74, 0.14);
    background:
        radial-gradient(circle at 18% 12%, rgba(201, 163, 74, 0.11), transparent 34%),
        radial-gradient(circle at 88% 78%, rgba(201, 163, 74, 0.08), transparent 36%),
        rgba(15, 15, 15, 0.94);
}

.enhanced-section .method-card:nth-child(1) {
    background:
        radial-gradient(circle at 82% 18%, rgba(201, 163, 74, 0.16), transparent 38%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 44%),
        rgba(0, 0, 0, 0.26);
}

.enhanced-section .method-card:nth-child(2) {
    background:
        radial-gradient(circle at 22% 24%, rgba(201, 163, 74, 0.14), transparent 38%),
        linear-gradient(215deg, rgba(255, 255, 255, 0.032), transparent 46%),
        rgba(0, 0, 0, 0.26);
}

.enhanced-section .method-card:nth-child(3) {
    background:
        radial-gradient(circle at 76% 78%, rgba(201, 163, 74, 0.13), transparent 40%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 44%),
        rgba(0, 0, 0, 0.26);
}

.enhanced-section .method-card:nth-child(4) {
    background:
        radial-gradient(circle at 24% 76%, rgba(201, 163, 74, 0.15), transparent 40%),
        linear-gradient(235deg, rgba(255, 255, 255, 0.032), transparent 46%),
        rgba(0, 0, 0, 0.26);
}

.enhanced-disclaimer {
    max-width: 760px;
    margin: 22px auto 0;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(201, 163, 74, 0.16);
    background: rgba(0, 0, 0, 0.28);
    color: #9d9d9d;
    font-size: 12px;
    line-height: 1.65;
}

/* Split Lists */

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.signal-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.signal-list span {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.45;
    background: rgba(0, 0, 0, 0.24);
}

.signal-list.positive span {
    border: 1px solid rgba(201, 163, 74, 0.24);
    color: #e6e6e6;
}

.signal-list.negative span {
    border: 1px solid rgba(150, 150, 150, 0.14);
    color: #aaa;
}

.signal-list.neutral span {
    border: 1px solid rgba(201, 163, 74, 0.16);
    color: #c7c7c7;
}

.final-cta-panel,
.contact-direct-panel {
    padding: 42px 28px;
    background:
        radial-gradient(circle at center, rgba(201, 163, 74, 0.16), transparent 42%),
        rgba(15, 15, 15, 0.95);
}

.final-cta-panel h3,
.contact-direct-panel h3 {
    font-size: 28px;
}

.final-cta-panel p,
.contact-direct-panel p {
    max-width: 620px;
    margin: 0 auto;
    color: #c9c9c9;
    line-height: 1.7;
}

/* Consultation Page */

.mini-button {
    display: inline-block;
    margin-top: 20px;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(201, 163, 74, 0.6);
    color: #d6b65d;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.22s ease;
}

.mini-button:hover {
    color: #050505;
    background: #d6b65d;
    box-shadow: 0 0 16px rgba(201, 163, 74, 0.34);
    transform: translateY(-2px);
}

.extension-panel {
    margin-top: 18px;
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(220px, 0.8fr);
    gap: 16px;
    align-items: center;
    text-align: left;
    border-radius: 18px;
    padding: 22px;
    border: 1px solid rgba(201, 163, 74, 0.32);
    background:
        radial-gradient(circle at 84% 18%, rgba(201, 163, 74, 0.16), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.032), transparent 50%),
        rgba(0, 0, 0, 0.28);
}

.extension-label {
    display: block;
    color: #9d9d9d;
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.extension-panel h4 {
    margin: 0 0 8px;
    color: #f0d27a;
    font-size: 22px;
}

.extension-panel p {
    margin: 0;
    color: #c9c9c9;
    font-size: 13px;
    line-height: 1.65;
}

.extension-price-block {
    text-align: center;
    border-radius: 14px;
    padding: 18px 12px;
    background: rgba(201, 163, 74, 0.08);
    border: 1px solid rgba(201, 163, 74, 0.18);
}

.extension-price-block strong {
    display: block;
    color: #f0d27a;
    font-size: 30px;
}

.extension-price-block span {
    display: block;
    margin-top: 6px;
    color: #777;
    font-size: 11px;
}

.consult-flow-panel {
    background:
        radial-gradient(circle at 28% 20%, rgba(201, 163, 74, 0.12), transparent 38%),
        rgba(15, 15, 15, 0.94);
}

/* Contact Page */

.contact-form {
    margin-top: 24px;
    text-align: left;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    color: #f0d27a;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(201, 163, 74, 0.22);
    border-radius: 14px;
    background:
        radial-gradient(circle at 88% 18%, rgba(201, 163, 74, 0.08), transparent 32%),
        rgba(0, 0, 0, 0.3);
    color: #e8e2d2;
    font-family: Verdana, Tahoma, sans-serif;
    font-size: 13px;
    padding: 13px 14px;
    outline: none;
    transition:
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        background 0.22s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #6f6f6f;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: rgba(201, 163, 74, 0.72);
    box-shadow:
        0 0 20px rgba(201, 163, 74, 0.12),
        inset 0 0 18px rgba(201, 163, 74, 0.035);
    background:
        radial-gradient(circle at 78% 12%, rgba(201, 163, 74, 0.12), transparent 32%),
        rgba(0, 0, 0, 0.36);
}

.form-field textarea {
    resize: vertical;
    min-height: 170px;
    line-height: 1.6;
}

.full-field {
    margin-top: 4px;
}

.contact-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.form-button {
    border: none;
    cursor: pointer;
    font-family: Verdana, Tahoma, sans-serif;
}

.form-note {
    max-width: 620px;
    margin: 18px auto 0;
    color: #8d8d8d;
    font-size: 12px;
    line-height: 1.65;
    text-align: center;
}

.direct-email {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(201, 163, 74, 0.6);
    color: #f0d27a;
    background: rgba(0, 0, 0, 0.24);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.22s ease;
}

.direct-email:hover {
    color: #050505;
    background: #d6b65d;
    box-shadow: 0 0 18px rgba(201, 163, 74, 0.38);
    transform: translateY(-2px);
}

/* Asymmetric Glow Tuning */

.method-stack .method-card:nth-child(1),
.process-track .process-step:nth-child(1),
.consultation-grid .consultation-card:nth-child(1),
.booking-flow .booking-step:nth-child(1),
.coaching-plan-grid .coaching-plan:nth-child(1),
.consult-option-grid .consult-option:nth-child(1) {
    background:
        radial-gradient(circle at 80% 18%, rgba(201, 163, 74, 0.15), transparent 38%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 44%),
        rgba(0, 0, 0, 0.26);
}

.method-stack .method-card:nth-child(2),
.process-track .process-step:nth-child(2),
.consultation-grid .consultation-card:nth-child(2),
.booking-flow .booking-step:nth-child(2) {
    background:
        radial-gradient(circle at 24% 26%, rgba(201, 163, 74, 0.14), transparent 38%),
        linear-gradient(215deg, rgba(255, 255, 255, 0.032), transparent 46%),
        rgba(0, 0, 0, 0.26);
}

.method-stack .method-card:nth-child(3),
.process-track .process-step:nth-child(3),
.consultation-grid .consultation-card:nth-child(3),
.booking-flow .booking-step:nth-child(3),
.coaching-plan-grid .coaching-plan:nth-child(3),
.consult-option-grid .consult-option:nth-child(3) {
    background:
        radial-gradient(circle at 72% 76%, rgba(201, 163, 74, 0.13), transparent 40%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 44%),
        rgba(0, 0, 0, 0.26);
}

.method-stack .method-card:nth-child(4),
.process-track .process-step:nth-child(4),
.consultation-grid .consultation-card:nth-child(4),
.booking-flow .booking-step:nth-child(4) {
    background:
        radial-gradient(circle at 24% 76%, rgba(201, 163, 74, 0.15), transparent 40%),
        linear-gradient(235deg, rgba(255, 255, 255, 0.032), transparent 46%),
        rgba(0, 0, 0, 0.26);
}

.coaching-plan-grid .coaching-plan:nth-child(2),
.consult-option-grid .consult-option:nth-child(2) {
    background:
        radial-gradient(circle at 50% 13%, rgba(201, 163, 74, 0.25), transparent 42%),
        linear-gradient(135deg, rgba(201, 163, 74, 0.15), rgba(0, 0, 0, 0.3));
}

/* Responsive */

@media screen and (max-width: 900px) {
    .coaching-hero,
    .consultation-hero,
    .contact-hero {
        grid-template-columns: 1fr;
    }

    .method-stack,
    .process-track,
    .consultation-grid,
    .booking-flow {
        grid-template-columns: repeat(2, 1fr);
    }

    .coaching-plan-grid,
    .consult-option-grid {
        grid-template-columns: 1fr;
    }

    .split-section {
        grid-template-columns: 1fr;
    }

    .extension-panel {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 720px) {
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 24px;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .card.wide {
        grid-column: span 1;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .term-box {
        width: 100%;
        max-width: 260px;
    }

    .feature-item {
        min-height: auto;
        padding: 18px 14px;
    }

    .feature-item p {
        max-height: 120px;
        opacity: 1;
        margin-top: 10px;
    }

    .coaching-hero-left,
    .consultation-hero-left,
    .contact-hero-left {
        padding: 34px 20px;
    }

    .coaching-hero-left h2,
    .consultation-hero-left h2,
    .contact-hero-left h2 {
        font-size: 26px;
    }

    .method-stack,
    .process-track,
    .consultation-grid,
    .booking-flow {
        grid-template-columns: 1fr;
    }

    .coaching-section,
    .consultation-section,
    .contact-section {
        padding: 24px 18px;
    }

    .contact-actions {
        flex-direction: column;
    }

    .contact-actions .button {
        width: 100%;
        text-align: center;
    }
}
/* Thank You / Stripe Success Page */

.thank-you-hero {
    margin-top: 24px;
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.95fr);
    gap: 18px;
    align-items: stretch;
}

.thank-you-hero-left {
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 18px;
    padding: 50px 36px;
    border: 1px solid rgba(201, 163, 74, 0.32);
    background:
        radial-gradient(circle at 20% 18%, rgba(201, 163, 74, 0.18), transparent 34%),
        radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.055), transparent 32%),
        linear-gradient(135deg, rgba(201, 163, 74, 0.11), transparent 44%),
        rgba(16, 16, 16, 0.96);
    box-shadow:
        inset 0 0 55px rgba(255, 255, 255, 0.018),
        0 0 34px rgba(201, 163, 74, 0.095);
}

.thank-you-hero-left::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(201, 163, 74, 0.1);
    border-radius: 14px;
    pointer-events: none;
}

.thank-you-hero-left::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 1px;
    left: 34px;
    bottom: 26px;
    background: linear-gradient(90deg, rgba(201, 163, 74, 0.54), transparent);
    opacity: 0.9;
    pointer-events: none;
}

.thank-you-hero-left > * {
    position: relative;
    z-index: 1;
}

.thank-you-hero-left h2 {
    font-size: 35px;
    margin-bottom: 14px;
}

.thank-you-hero-left p {
    max-width: 660px;
    margin: 0 auto 10px;
    color: #c9c9c9;
    line-height: 1.78;
}

.thank-you-status-box {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(201, 163, 74, 0.36);
    background:
        radial-gradient(circle at 82% 10%, rgba(201, 163, 74, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(201, 163, 74, 0.08), rgba(0, 0, 0, 0.28)),
        rgba(10, 10, 10, 0.97);
    box-shadow:
        0 0 28px rgba(201, 163, 74, 0.09),
        inset 0 0 24px rgba(255, 255, 255, 0.018);
}

.thank-you-status-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.018) 0,
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px,
            transparent 8px
        );
    opacity: 0.22;
    pointer-events: none;
}

.thank-you-section {
    position: relative;
    margin-top: 22px;
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    background:
        radial-gradient(circle at 12% 8%, rgba(201, 163, 74, 0.08), transparent 30%),
        rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.thank-you-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.032), transparent 46%),
        radial-gradient(circle at 92% 12%, rgba(201, 163, 74, 0.09), transparent 30%);
    opacity: 0.82;
    pointer-events: none;
}

.thank-you-section::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 1px;
    right: 24px;
    top: 22px;
    background: linear-gradient(90deg, transparent, rgba(201, 163, 74, 0.35));
    opacity: 0.7;
    pointer-events: none;
}

.thank-you-section > * {
    position: relative;
    z-index: 1;
}

.thank-you-section h3 {
    font-size: 24px;
}

.completion-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
    align-items: stretch;
}

.completion-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(201, 163, 74, 0.2);
    background:
        radial-gradient(circle at 73% 18%, rgba(201, 163, 74, 0.14), transparent 36%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 44%),
        rgba(0, 0, 0, 0.26);
    padding: 28px 20px;
    min-height: 280px;
    transition:
        transform 0.24s ease,
        border-color 0.24s ease,
        box-shadow 0.24s ease;
}

.completion-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -58px;
    top: -55px;
    border-radius: 50%;
    background: rgba(201, 163, 74, 0.14);
    filter: blur(22px);
    opacity: 0;
    transition:
        opacity 0.24s ease,
        transform 0.24s ease;
    pointer-events: none;
}

.completion-card::after {
    content: "";
    position: absolute;
    width: 88px;
    height: 1px;
    left: 18px;
    bottom: 16px;
    background: linear-gradient(90deg, rgba(201, 163, 74, 0.45), transparent);
    opacity: 0;
    transition: opacity 0.24s ease;
    pointer-events: none;
}

.completion-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 163, 74, 0.68);
    box-shadow:
        0 0 26px rgba(201, 163, 74, 0.14),
        -10px 12px 34px rgba(201, 163, 74, 0.055);
}

.completion-card:hover::before {
    opacity: 1;
    transform: translate(-8px, 6px);
}

.completion-card:hover::after {
    opacity: 1;
}

.featured-completion {
    border-color: rgba(201, 163, 74, 0.72);
    background:
        radial-gradient(circle at 50% 13%, rgba(201, 163, 74, 0.25), transparent 42%),
        linear-gradient(135deg, rgba(201, 163, 74, 0.15), rgba(0, 0, 0, 0.3));
}

.completion-step {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(201, 163, 74, 0.12);
    border: 1px solid rgba(201, 163, 74, 0.25);
    color: #d6b65d;
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.completion-card h4 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.35;
}

.completion-card p {
    max-width: 340px;
    margin: 0 auto;
    color: #cfcfcf;
    font-size: 13px;
    line-height: 1.7;
}

.important-panel {
    border-color: rgba(201, 163, 74, 0.36);
    background:
        radial-gradient(circle at center, rgba(201, 163, 74, 0.16), transparent 42%),
        rgba(15, 15, 15, 0.95);
}

.important-panel p {
    max-width: 760px;
    margin: 0 auto;
    color: #e8e2d2;
    font-size: 15px;
    line-height: 1.8;
}

.copy-email-button {
    cursor: pointer;
    font-family: Verdana, Tahoma, sans-serif;
    border: none;
}

.copy-email-button.copied {
    color: #050505;
    background: #d6b65d;
    box-shadow: 0 0 18px rgba(201, 163, 74, 0.42);
}

.brand-logo-link {
    display: inline-block;
    margin-bottom: 14px;
    line-height: 0;
}

.site-logo {
    width: 120px;
    max-width: 38vw;
    height: auto;
    display: block;
    margin: 0 auto;
    filter:
        drop-shadow(0 0 16px rgba(201, 163, 74, 0.28))
        drop-shadow(0 0 28px rgba(201, 163, 74, 0.12));
}

.hero-logo-mark {
    width: 210px;
    max-width: 64vw;
    height: auto;
    display: block;
    margin: 0 auto 24px;
    filter:
        drop-shadow(0 0 18px rgba(201, 163, 74, 0.24))
        drop-shadow(0 0 38px rgba(201, 163, 74, 0.12));
}

.system-rail {
    position: fixed;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    pointer-events: none;
    opacity: 0.78;
}

.system-rail-left {
    left: 22px;
    align-items: flex-start;
}

.system-rail-right {
    right: 22px;
    align-items: flex-end;
}

.rail-kicker {
    color: rgba(201, 163, 74, 0.72);
    font-size: 10px;
    letter-spacing: 3px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-transform: uppercase;
}

.rail-stack {
    display: grid;
    gap: 8px;
}

.rail-item {
    min-width: 118px;
    padding: 9px 11px;
    border: 1px solid rgba(201, 163, 74, 0.18);
    border-radius: 999px;
    background:
        linear-gradient(90deg, rgba(201, 163, 74, 0.07), rgba(0, 0, 0, 0.22)),
        rgba(8, 8, 8, 0.6);
    color: rgba(232, 226, 210, 0.58);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 0 16px rgba(201, 163, 74, 0.045);
}

.system-rail-right .rail-item {
    text-align: right;
}

.rail-line {
    width: 1px;
    height: 78px;
    background: linear-gradient(180deg, transparent, rgba(201, 163, 74, 0.45), transparent);
}

.system-rail-left .rail-line {
    margin-left: 14px;
}

.system-rail-right .rail-line {
    margin-right: 14px;
}

.rail-code {
    color: rgba(157, 157, 157, 0.42);
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media screen and (max-width: 1280px) {
    .system-rail {
        display: none;
    }
}

@media screen and (max-width: 720px) {
    .site-logo {
        width: 92px;
    }

    .hero-logo-mark {
        width: 150px;
        margin-bottom: 18px;
    }
}

@media screen and (max-width: 900px) {
    .thank-you-hero {
        grid-template-columns: 1fr;
    }

    .completion-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 720px) {
    .thank-you-hero-left {
        padding: 34px 20px;
    }

    .thank-you-hero-left h2 {
        font-size: 26px;
    }

    .thank-you-section {
        padding: 24px 18px;
    }
}


/* Final polish overrides: static HUD, quick page settle, smooth reveal */

html {
    scroll-behavior: smooth;
}

/* Keep the page from jumping downward on load. Only fade the content layer. */
.site-shell,
.system-rail {
    opacity: 0;
}

body.page-ready .site-shell,
body.page-ready .system-rail {
    opacity: 1;
}

.site-shell {
    transition: opacity 0.22s ease;
}

.site-logo {
    width: 142px;
    max-width: 42vw;
    margin-top: -4px;
    margin-bottom: -2px;
}

.brand-logo-link {
    margin-bottom: 10px;
}

/* Fixed viewport HUD rails */
.system-rail {
    position: fixed;
    top: 50%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 16px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-50%) scale(1.08);
    transform-origin: center;
    transition:
        opacity 0.28s ease,
        filter 0.28s ease;
    will-change: transform, opacity;
}

body.page-ready .system-rail {
    opacity: 0.9;
}

.system-rail-left {
    left: 28px;
    align-items: flex-start;
    animation: heliosRailFloatLeft 7.5s ease-in-out infinite;
}

.system-rail-right {
    right: 28px;
    align-items: flex-end;
    animation: heliosRailFloatRight 7.5s ease-in-out infinite;
}

.rail-kicker {
    font-size: 11px;
    letter-spacing: 3.5px;
    color: rgba(201, 163, 74, 0.8);
}

.rail-item {
    min-width: 132px;
    padding: 11px 13px;
    font-size: 10.5px;
    border-color: rgba(201, 163, 74, 0.24);
    background:
        linear-gradient(90deg, rgba(201, 163, 74, 0.1), rgba(0, 0, 0, 0.28)),
        rgba(8, 8, 8, 0.66);
    box-shadow:
        0 0 18px rgba(201, 163, 74, 0.06),
        inset 0 0 14px rgba(255, 255, 255, 0.012);
}

.rail-line {
    height: 96px;
    background: linear-gradient(180deg, transparent, rgba(201, 163, 74, 0.58), transparent);
}

.rail-code {
    font-size: 9.5px;
    color: rgba(157, 157, 157, 0.5);
}

footer {
    letter-spacing: 0.6px;
    transition:
        color 0.35s ease,
        text-shadow 0.35s ease;
}

/* Scroll reveal effect */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(16px) scale(0.992);
    filter: saturate(0.92);
    transition:
        opacity 0.62s ease,
        transform 0.62s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.62s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: saturate(1);
}

body.page-ready .top-bar {
    animation: heliosHeaderSettle 0.38s cubic-bezier(0.16, 1, 0.3, 1) both;
}

body.page-ready .system-rail-left {
    animation:
        heliosRailInLeft 0.42s cubic-bezier(0.16, 1, 0.3, 1) both,
        heliosRailFloatLeft 7.5s ease-in-out 0.42s infinite;
}

body.page-ready .system-rail-right {
    animation:
        heliosRailInRight 0.42s cubic-bezier(0.16, 1, 0.3, 1) both,
        heliosRailFloatRight 7.5s ease-in-out 0.42s infinite;
}

@keyframes heliosHeaderSettle {
    0% {
        opacity: 0;
        transform: translateY(-6px) scale(0.997);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes heliosRailInLeft {
    0% {
        opacity: 0;
        transform: translateY(-50%) translateX(-14px) scale(1.08);
    }

    100% {
        opacity: 0.9;
        transform: translateY(-50%) translateX(0) scale(1.08);
    }
}

@keyframes heliosRailInRight {
    0% {
        opacity: 0;
        transform: translateY(-50%) translateX(14px) scale(1.08);
    }

    100% {
        opacity: 0.9;
        transform: translateY(-50%) translateX(0) scale(1.08);
    }
}

@keyframes heliosRailFloatLeft {
    0%, 100% {
        transform: translateY(-50%) translateX(0) scale(1.08);
        filter: drop-shadow(0 0 0 rgba(201, 163, 74, 0));
    }

    50% {
        transform: translateY(calc(-50% - 5px)) translateX(0) scale(1.08);
        filter: drop-shadow(0 0 10px rgba(201, 163, 74, 0.10));
    }
}

@keyframes heliosRailFloatRight {
    0%, 100% {
        transform: translateY(-50%) translateX(0) scale(1.08);
        filter: drop-shadow(0 0 0 rgba(201, 163, 74, 0));
    }

    50% {
        transform: translateY(calc(-50% - 5px)) translateX(0) scale(1.08);
        filter: drop-shadow(0 0 10px rgba(201, 163, 74, 0.10));
    }
}

@media screen and (max-width: 1280px) {
    .system-rail {
        display: none;
    }
}

@media screen and (max-width: 720px) {
    .site-logo {
        width: 110px;
        max-width: 48vw;
    }

    .reveal-on-scroll {
        transform: translateY(10px) scale(0.996);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .site-shell,
    .system-rail,
    .reveal-on-scroll,
    .reveal-on-scroll.is-visible,
    .top-bar {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
        filter: none !important;
    }
}


/* Final HUD scale refinement: viewport-centered, smaller, responsive */
:root {
    --rail-scale: clamp(0.78, calc(0.56 + 0.020vw), 0.94);
    --rail-visual-center: 46%;
    --rail-side-offset: clamp(12px, 1.35vw, 24px);
    --rail-float-distance: clamp(2px, 0.28vw, 4px);
}

.system-rail {
    position: fixed !important;
    top: var(--rail-visual-center) !important;
    z-index: 3;
    gap: clamp(11px, 1.05vw, 14px);
    opacity: 0;
    transform: translateY(-50%) scale(var(--rail-scale));
    transform-origin: center;
    will-change: transform, opacity, filter;
}

body.page-ready .system-rail {
    opacity: 0.84;
}

.system-rail-left {
    left: var(--rail-side-offset);
    align-items: flex-start;
}

.system-rail-right {
    right: var(--rail-side-offset);
    align-items: flex-end;
}

.rail-kicker {
    font-size: clamp(9px, 0.58vw, 10.25px);
    letter-spacing: clamp(2.4px, 0.21vw, 3.2px);
    color: rgba(201, 163, 74, 0.76);
}

.rail-stack {
    gap: clamp(6px, 0.55vw, 8px);
}

.rail-item {
    min-width: clamp(104px, 7.6vw, 122px);
    padding: clamp(8px, 0.68vw, 10px) clamp(10px, 0.78vw, 12px);
    font-size: clamp(9px, 0.56vw, 10px);
    letter-spacing: clamp(1.55px, 0.13vw, 2px);
    border-color: rgba(201, 163, 74, 0.22);
    box-shadow:
        0 0 14px rgba(201, 163, 74, 0.055),
        inset 0 0 12px rgba(255, 255, 255, 0.012);
}

.rail-line {
    height: clamp(64px, 5.6vw, 86px);
    background: linear-gradient(180deg, transparent, rgba(201, 163, 74, 0.52), transparent);
}

.system-rail-left .rail-line {
    margin-left: clamp(10px, 0.9vw, 13px);
}

.system-rail-right .rail-line {
    margin-right: clamp(10px, 0.9vw, 13px);
}

.rail-code {
    font-size: clamp(8px, 0.52vw, 9px);
    letter-spacing: clamp(1.5px, 0.13vw, 2px);
    color: rgba(157, 157, 157, 0.46);
}

body.page-ready .system-rail-left {
    animation:
        heliosRailInLeftScaled 0.38s cubic-bezier(0.16, 1, 0.3, 1) both,
        heliosRailFloatLeftScaled 8.5s ease-in-out 0.38s infinite;
}

body.page-ready .system-rail-right {
    animation:
        heliosRailInRightScaled 0.38s cubic-bezier(0.16, 1, 0.3, 1) both,
        heliosRailFloatRightScaled 8.5s ease-in-out 0.38s infinite;
}

@keyframes heliosRailInLeftScaled {
    0% {
        opacity: 0;
        transform: translateY(-50%) translateX(-10px) scale(var(--rail-scale));
    }

    100% {
        opacity: 0.84;
        transform: translateY(-50%) translateX(0) scale(var(--rail-scale));
    }
}

@keyframes heliosRailInRightScaled {
    0% {
        opacity: 0;
        transform: translateY(-50%) translateX(10px) scale(var(--rail-scale));
    }

    100% {
        opacity: 0.84;
        transform: translateY(-50%) translateX(0) scale(var(--rail-scale));
    }
}

@keyframes heliosRailFloatLeftScaled {
    0%, 100% {
        transform: translateY(-50%) translateX(0) scale(var(--rail-scale));
        filter: drop-shadow(0 0 0 rgba(201, 163, 74, 0));
    }

    50% {
        transform: translateY(calc(-50% - var(--rail-float-distance))) translateX(0) scale(var(--rail-scale));
        filter: drop-shadow(0 0 8px rgba(201, 163, 74, 0.08));
    }
}

@keyframes heliosRailFloatRightScaled {
    0%, 100% {
        transform: translateY(-50%) translateX(0) scale(var(--rail-scale));
        filter: drop-shadow(0 0 0 rgba(201, 163, 74, 0));
    }

    50% {
        transform: translateY(calc(-50% - var(--rail-float-distance))) translateX(0) scale(var(--rail-scale));
        filter: drop-shadow(0 0 8px rgba(201, 163, 74, 0.08));
    }
}

@media screen and (max-width: 1180px) {
    :root {
        --rail-scale: clamp(0.66, calc(0.44 + 0.022vw), 0.78);
        --rail-side-offset: 10px;
    }

    .rail-item {
        min-width: 96px;
    }
}

@media screen and (max-width: 1040px) {
    .system-rail {
        display: none !important;
    }
}


/* Home Page Testimonials Marquee */

.testimonial-section {
    position: relative;
    margin-top: 22px;
    padding: 34px 0 32px;
    border-radius: 18px;
    text-align: center;
    background:
        radial-gradient(circle at 18% 12%, rgba(201, 163, 74, 0.12), transparent 34%),
        radial-gradient(circle at 82% 88%, rgba(201, 163, 74, 0.08), transparent 36%),
        rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.testimonial-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.032), transparent 46%),
        radial-gradient(circle at 92% 12%, rgba(201, 163, 74, 0.1), transparent 30%);
    opacity: 0.82;
    pointer-events: none;
}

.testimonial-section::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 1px;
    right: 28px;
    top: 24px;
    background: linear-gradient(90deg, transparent, rgba(201, 163, 74, 0.42));
    opacity: 0.75;
    pointer-events: none;
}

.testimonial-section > * {
    position: relative;
    z-index: 1;
}

.testimonial-section h3 {
    font-size: 24px;
}

.testimonial-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 18px;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.testimonial-marquee + .testimonial-marquee {
    margin-top: 14px;
}

.testimonial-track {
    display: flex;
    width: max-content;
    gap: 14px;
    will-change: transform;
}

.testimonial-marquee-left .testimonial-track {
    animation: testimonialScrollRight 38s linear infinite;
}

.testimonial-marquee-right .testimonial-track {
    animation: testimonialScrollLeft 42s linear infinite;
}

.testimonial-marquee:hover .testimonial-track {
    animation-play-state: paused;
}

.testimonial-card {
    width: 330px;
    min-height: 152px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 19px 20px 17px;
    border-radius: 16px;
    border: 1px solid rgba(201, 163, 74, 0.2);
    background:
        radial-gradient(circle at 82% 14%, rgba(201, 163, 74, 0.12), transparent 36%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 48%),
        rgba(0, 0, 0, 0.28);
    box-shadow:
        0 0 22px rgba(201, 163, 74, 0.06),
        inset 0 0 18px rgba(255, 255, 255, 0.012);
}

.testimonial-card p {
    margin: 0;
    color: #d9d4c8;
    font-size: 13px;
    line-height: 1.65;
}

.testimonial-card span {
    display: block;
    margin-top: 14px;
    color: #f0d27a;
    font-size: 11px;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

@keyframes testimonialScrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 7px));
    }
}

@keyframes testimonialScrollRight {
    from {
        transform: translateX(calc(-50% - 7px));
    }

    to {
        transform: translateX(0);
    }
}

@media screen and (max-width: 720px) {
    .testimonial-section {
        padding: 28px 0 26px;
    }

    .testimonial-marquee {
        mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    }

    .testimonial-card {
        width: 275px;
        min-height: 168px;
        padding: 17px 18px;
    }

    .testimonial-card p {
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .testimonial-marquee {
        overflow-x: auto;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .testimonial-track {
        animation: none !important;
        padding: 0 18px;
    }
}


/* Priority testimonial section on the home page */

.priority-testimonials {
    margin-top: 22px;
    margin-bottom: 24px;
    padding: 42px 0 38px;
    border-color: rgba(201, 163, 74, 0.26);
    background:
        radial-gradient(circle at 50% 0%, rgba(201, 163, 74, 0.18), transparent 34%),
        radial-gradient(circle at 18% 18%, rgba(201, 163, 74, 0.13), transparent 34%),
        radial-gradient(circle at 82% 86%, rgba(201, 163, 74, 0.09), transparent 38%),
        rgba(15, 15, 15, 0.97);
    box-shadow:
        0 0 32px rgba(201, 163, 74, 0.08),
        inset 0 0 42px rgba(255, 255, 255, 0.014);
}

.priority-testimonials h3 {
    font-size: 31px;
    margin-bottom: 14px;
    color: #ffffff;
}

.priority-testimonials .section-intro {
    max-width: 760px;
    margin-bottom: 24px !important;
}

.testimonial-proof-grid {
    width: min(850px, calc(100% - 40px));
    margin: 0 auto 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.proof-chip {
    position: relative;
    overflow: hidden;
    min-height: 88px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 15px;
    padding: 16px 14px;
    border: 1px solid rgba(201, 163, 74, 0.18);
    background:
        radial-gradient(circle at 82% 16%, rgba(201, 163, 74, 0.13), transparent 38%),
        rgba(0, 0, 0, 0.25);
}

.proof-chip::before {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 163, 74, 0.5), transparent);
    opacity: 0.7;
}

.proof-chip strong {
    display: block;
    color: #f0d27a;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.proof-chip span {
    display: block;
    color: #cfcfcf;
    font-size: 12px;
    line-height: 1.45;
}

.featured-proof {
    border-color: rgba(201, 163, 74, 0.42);
    background:
        radial-gradient(circle at 50% 0%, rgba(201, 163, 74, 0.22), transparent 42%),
        linear-gradient(135deg, rgba(201, 163, 74, 0.11), rgba(0, 0, 0, 0.25));
    box-shadow: 0 0 22px rgba(201, 163, 74, 0.08);
}

.priority-testimonials .testimonial-marquee {
    margin-top: 16px;
}

.priority-testimonials .testimonial-marquee + .testimonial-marquee {
    margin-top: 16px;
}

.priority-testimonials .testimonial-card {
    width: 360px;
    min-height: 164px;
    border-color: rgba(201, 163, 74, 0.24);
    background:
        radial-gradient(circle at 86% 12%, rgba(201, 163, 74, 0.16), transparent 38%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.042), transparent 48%),
        rgba(0, 0, 0, 0.32);
}

.priority-testimonials .testimonial-card p {
    font-size: 13px;
    line-height: 1.7;
}

.priority-testimonials .testimonial-card span {
    font-size: 11px;
    color: #f0d27a;
}

@media screen and (max-width: 900px) {
    .testimonial-proof-grid {
        grid-template-columns: 1fr;
        width: min(620px, calc(100% - 34px));
    }

    .priority-testimonials h3 {
        font-size: 26px;
    }
}

@media screen and (max-width: 720px) {
    .priority-testimonials {
        padding: 32px 0 30px;
    }

    .priority-testimonials .testimonial-card {
        width: 292px;
        min-height: 174px;
    }
}


/* Transformations Page */

.transformation-hero {
    margin-top: 24px;
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.95fr);
    gap: 18px;
    align-items: stretch;
}

.transformation-hero-left {
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 18px;
    padding: 50px 36px;
    border: 1px solid rgba(201, 163, 74, 0.3);
    background:
        radial-gradient(circle at 20% 18%, rgba(201, 163, 74, 0.18), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.055), transparent 32%),
        linear-gradient(135deg, rgba(201, 163, 74, 0.105), transparent 44%),
        rgba(16, 16, 16, 0.96);
    box-shadow:
        inset 0 0 55px rgba(255, 255, 255, 0.018),
        0 0 34px rgba(201, 163, 74, 0.085);
}

.transformation-hero-left::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(201, 163, 74, 0.1);
    border-radius: 14px;
    pointer-events: none;
}

.transformation-hero-left::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 1px;
    left: 34px;
    bottom: 26px;
    background: linear-gradient(90deg, rgba(201, 163, 74, 0.52), transparent);
    opacity: 0.88;
    pointer-events: none;
}

.transformation-hero-left > * {
    position: relative;
    z-index: 1;
}

.transformation-hero-left h2 {
    font-size: 35px;
    margin-bottom: 14px;
}

.transformation-hero-left p {
    max-width: 660px;
    margin: 0 auto;
    color: #c9c9c9;
    line-height: 1.78;
}

.transformation-status-box {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(201, 163, 74, 0.36);
    background:
        radial-gradient(circle at 82% 10%, rgba(201, 163, 74, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(201, 163, 74, 0.08), rgba(0, 0, 0, 0.28)),
        rgba(10, 10, 10, 0.97);
    box-shadow:
        0 0 28px rgba(201, 163, 74, 0.09),
        inset 0 0 24px rgba(255, 255, 255, 0.018);
}

.transformation-status-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.018) 0,
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px,
            transparent 8px
        );
    opacity: 0.22;
    pointer-events: none;
}

.transformation-section {
    position: relative;
    margin-top: 22px;
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    background:
        radial-gradient(circle at 12% 8%, rgba(201, 163, 74, 0.08), transparent 30%),
        rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.transformation-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.032), transparent 46%),
        radial-gradient(circle at 92% 12%, rgba(201, 163, 74, 0.09), transparent 30%);
    opacity: 0.82;
    pointer-events: none;
}

.transformation-section::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 1px;
    right: 24px;
    top: 22px;
    background: linear-gradient(90deg, transparent, rgba(201, 163, 74, 0.35));
    opacity: 0.7;
    pointer-events: none;
}

.transformation-section > * {
    position: relative;
    z-index: 1;
}

.transformation-section h3 {
    font-size: 24px;
}

.transformation-vault-panel {
    background:
        radial-gradient(circle at 20% 22%, rgba(201, 163, 74, 0.11), transparent 36%),
        radial-gradient(circle at 84% 78%, rgba(201, 163, 74, 0.08), transparent 38%),
        rgba(15, 15, 15, 0.95);
}

.vault-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.vault-card {
    position: relative;
    overflow: hidden;
    min-height: 205px;
    padding: 22px 16px;
    border-radius: 16px;
    border: 1px solid rgba(201, 163, 74, 0.18);
    background:
        radial-gradient(circle at 73% 18%, rgba(201, 163, 74, 0.14), transparent 36%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 44%),
        rgba(0, 0, 0, 0.26);
    transition:
        transform 0.24s ease,
        border-color 0.24s ease,
        box-shadow 0.24s ease;
}

.vault-card::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    right: -55px;
    top: -50px;
    border-radius: 50%;
    background: rgba(201, 163, 74, 0.13);
    filter: blur(22px);
    opacity: 0;
    transition: opacity 0.24s ease, transform 0.24s ease;
    pointer-events: none;
}

.vault-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 163, 74, 0.65);
    box-shadow:
        0 0 26px rgba(201, 163, 74, 0.14),
        -10px 12px 34px rgba(201, 163, 74, 0.055);
}

.vault-card:hover::before {
    opacity: 1;
    transform: translate(-8px, 6px);
}

.vault-card span {
    display: block;
    color: #f0d27a;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.vault-card h4 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 17px;
}

.vault-card p {
    color: #cfcfcf;
    font-size: 12px;
    line-height: 1.65;
    margin: 0;
}

.transformation-placeholder-panel {
    padding: 44px 28px;
    background:
        radial-gradient(circle at center, rgba(201, 163, 74, 0.16), transparent 42%),
        rgba(15, 15, 15, 0.95);
}

.transformation-placeholder-panel p {
    max-width: 720px;
    margin: 0 auto;
    color: #c9c9c9;
    line-height: 1.75;
}

.placeholder-mark {
    width: 150px;
    height: 78px;
    margin: 0 auto 22px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
    opacity: 0.88;
}

.placeholder-mark span {
    display: block;
    width: 34px;
    border-radius: 12px 12px 3px 3px;
    border: 1px solid rgba(201, 163, 74, 0.34);
    background:
        linear-gradient(180deg, rgba(201, 163, 74, 0.24), rgba(201, 163, 74, 0.06)),
        rgba(0, 0, 0, 0.28);
    box-shadow: 0 0 18px rgba(201, 163, 74, 0.08);
}

.placeholder-mark span:nth-child(1) {
    height: 44px;
}

.placeholder-mark span:nth-child(2) {
    height: 70px;
}

.placeholder-mark span:nth-child(3) {
    height: 55px;
}

@media screen and (max-width: 900px) {
    .transformation-hero {
        grid-template-columns: 1fr;
    }

    .vault-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 720px) {
    .transformation-hero-left {
        padding: 34px 20px;
    }

    .transformation-hero-left h2 {
        font-size: 26px;
    }

    .transformation-section {
        padding: 24px 18px;
    }

    .vault-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== Helios Method creative refresh ===== */
.brand-block p {
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4b56a;
}

.enhanced-hero-panel {
    position: relative;
    padding: 52px 36px 36px;
    background:
        radial-gradient(circle at top center, rgba(201, 163, 74, 0.18), transparent 38%),
        linear-gradient(135deg, rgba(201, 163, 74, 0.12), transparent 35%),
        rgba(18, 18, 18, 0.94);
}

.enhanced-hero-panel h2 {
    font-size: clamp(34px, 4vw, 52px);
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.enhanced-hero-panel p {
    max-width: 760px;
}

.hero-chip-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 26px auto 0;
    max-width: 860px;
}

.hero-chip {
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.hero-chip strong {
    display: block;
    color: #f0d27a;
    font-size: 13px;
    letter-spacing: 1.3px;
    margin-bottom: 6px;
}

.hero-chip span {
    display: block;
    color: #c9c9c9;
    font-size: 13px;
    line-height: 1.5;
}

.featured-chip {
    border-color: rgba(201, 163, 74, 0.45);
    box-shadow: 0 0 24px rgba(201, 163, 74, 0.08);
}

.hero-subnote {
    margin-top: 18px;
    color: #9d9d9d;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.home-rebuilt-grid {
    align-items: stretch;
}

.brand-story-card {
    padding-bottom: 28px;
}

.brand-meaning-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.brand-meaning-box {
    padding: 20px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.07);
    text-align: left;
}

.brand-meaning-box span {
    display: inline-block;
    color: #c9a34a;
    letter-spacing: 2px;
    font-size: 11px;
    margin-bottom: 10px;
}

.brand-meaning-box h4,
.teaser-cta-box h4,
.process-step h4 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #ffffff;
}

.brand-meaning-box p {
    margin: 0;
    color: #d0d0d0;
    line-height: 1.7;
}

.method-quote {
    margin-top: 20px;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(201, 163, 74, 0.09);
    border: 1px solid rgba(201, 163, 74, 0.18);
    color: #f0d27a;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.compact-signals {
    gap: 10px;
    margin-top: 10px;
}

.compact-signals span {
    line-height: 1.55;
}

.access-flow-card .process-track {
    margin-top: 20px;
}

.access-flow-card .process-step {
    min-height: 100%;
}

.transformations-teaser-card .teaser-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
    margin-top: 18px;
    align-items: stretch;
}

.teaser-cta-box {
    border-radius: 14px;
    padding: 22px;
    background: rgba(0, 0, 0, 0.26);
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.teaser-cta-box p {
    margin: 6px 0 18px;
    color: #cdcdcd;
    line-height: 1.7;
}

.final-cta-card {
    background:
        radial-gradient(circle at top center, rgba(201, 163, 74, 0.12), transparent 44%),
        rgba(15, 15, 15, 0.95);
}

@media (max-width: 900px) {
    .hero-chip-row,
    .brand-meaning-grid,
    .transformations-teaser-card .teaser-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .enhanced-hero-panel {
        padding: 38px 22px 28px;
    }

    .hero-chip {
        padding: 14px 16px;
    }

    .method-quote {
        font-size: 13px;
        line-height: 1.6;
    }
}


/* ===== Final alignment fixes ===== */

/* Keeps the homepage 03 and 04 entry lists visually matched. */
.home-rebuilt-grid .card .compact-signals {
    margin-top: 10px;
}

.home-rebuilt-grid .card .compact-signals span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 14px;
    border: 1px solid rgba(201, 163, 74, 0.32);
    background:
        linear-gradient(135deg, rgba(201, 163, 74, 0.08), rgba(0, 0, 0, 0.22)),
        rgba(0, 0, 0, 0.22);
    color: #d8d8d8;
    border-radius: 10px;
    text-align: center;
}

.home-rebuilt-grid .card .compact-signals span:hover {
    border-color: rgba(201, 163, 74, 0.68);
    box-shadow: 0 0 16px rgba(201, 163, 74, 0.12);
}

/* Prevents the consultation booking-flow labels from awkward wrapping. */
.booking-step strong {
    white-space: nowrap;
    line-height: 1.2;
}


/* ===== More legitimate result-style testimonial wall ===== */

.result-wall-section {
    padding-top: 38px;
}

.result-summary-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 22px auto 24px;
    max-width: 880px;
}

.result-summary-card {
    padding: 16px 18px;
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(201, 163, 74, 0.075), rgba(0, 0, 0, 0.28)),
        rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(201, 163, 74, 0.24);
    text-align: center;
}

.result-summary-card span {
    display: block;
    margin-bottom: 8px;
    color: #c9a34a;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.result-summary-card strong {
    display: block;
    color: #e8e2d2;
    font-size: 13px;
    line-height: 1.45;
}

.featured-result-summary {
    border-color: rgba(201, 163, 74, 0.58);
    box-shadow: 0 0 22px rgba(201, 163, 74, 0.08);
}

.priority-testimonials .result-card {
    width: 360px;
    min-height: 235px;
    padding: 19px 18px 18px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-color: rgba(201, 163, 74, 0.32);
    background:
        radial-gradient(circle at 88% 8%, rgba(201, 163, 74, 0.16), transparent 36%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 48%),
        rgba(7, 7, 7, 0.82);
}

.result-card-topline {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 14px;
}

.result-tag {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(201, 163, 74, 0.16);
    border: 1px solid rgba(201, 163, 74, 0.4);
    color: #f0d27a !important;
    font-size: 9px !important;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    line-height: 1;
}

.result-tag.muted-tag {
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 255, 255, 0.11);
    color: #b9b9b9 !important;
}

.priority-testimonials .result-card p {
    margin: 0;
    color: #eeeeee;
    font-size: 13px;
    line-height: 1.65;
}

.result-card-footer {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(201, 163, 74, 0.18);
}

.result-card-footer strong {
    display: block;
    color: #f0d27a;
    font-size: 13px;
    letter-spacing: 0.8px;
    margin-bottom: 5px;
}

.result-card-footer span {
    display: block;
    color: #8f8f8f !important;
    font-size: 11px !important;
    line-height: 1.45;
    letter-spacing: 0.2px;
}

.testimonial-layout-note {
    max-width: 720px;
    margin: 18px auto 0 !important;
    color: #777 !important;
    font-size: 11px;
    line-height: 1.6 !important;
    letter-spacing: 0.4px;
}

@media (max-width: 900px) {
    .result-summary-strip {
        grid-template-columns: 1fr;
    }

    .priority-testimonials .result-card {
        width: 320px;
        min-height: 250px;
    }
}

@media (max-width: 560px) {
    .priority-testimonials .result-card {
        width: 285px;
        min-height: 270px;
    }

    .result-card-topline {
        gap: 6px;
    }

    .result-tag {
        font-size: 8px !important;
    }
}
