* {
    box-sizing: border-box;
}

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);
}

.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);
}

.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;
}

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

.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);
}

.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-number {
    display: inline-block;
    color: #c9a34a;
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

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

.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;
}

.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;
}

/* Coaching Page */

.coaching-hero {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 18px;
    align-items: stretch;
}

.coaching-hero-left {
    text-align: center;
    border-radius: 18px;
    padding: 46px 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top left, rgba(201, 163, 74, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 42%),
        rgba(18, 18, 18, 0.94);
    box-shadow: inset 0 0 45px rgba(255, 255, 255, 0.02);
}

.coaching-hero-left h2 {
    font-size: 34px;
}

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

.coaching-status-box {
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(201, 163, 74, 0.32);
    background:
        linear-gradient(180deg, rgba(201, 163, 74, 0.08), rgba(0, 0, 0, 0.28)),
        rgba(12, 12, 12, 0.96);
    box-shadow: 0 0 28px rgba(201, 163, 74, 0.08);
}

.status-header {
    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 {
    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 {
    border-bottom: none;
}

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

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

.coaching-section {
    position: relative;
    margin-top: 22px;
    padding: 28px;
    border-radius: 18px;
    text-align: center;
    background: rgba(15, 15, 15, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.coaching-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(201, 163, 74, 0.11), transparent 32%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 50%);
    opacity: 0.7;
    pointer-events: none;
}

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

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

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

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

.method-card,
.process-step,
.coaching-plan {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(201, 163, 74, 0.18);
    background:
        radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(201, 163, 74, 0.18), transparent 34%),
        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 {
    padding: 22px 16px;
    min-height: 210px;
}

.method-card:hover,
.process-step:hover,
.coaching-plan:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 163, 74, 0.65);
    box-shadow: 0 0 28px rgba(201, 163, 74, 0.14);
}

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

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

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

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

.process-number {
    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 {
    color: #ffffff;
    margin: 0 0 10px;
    font-size: 17px;
}

.process-step p {
    color: #bfbfbf;
    font-size: 12px;
    line-height: 1.65;
}

.coaching-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.coaching-plan {
    padding: 24px 16px;
    min-height: 310px;
}

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

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

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

.plan-price {
    margin-top: 14px;
    color: #f0d27a;
    font-size: 34px;
    font-weight: bold;
}

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

.coaching-plan p {
    margin-top: 18px;
    color: #c7c7c7;
    font-size: 12px;
    line-height: 1.65;
}

.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;
}

.final-cta-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 {
    font-size: 28px;
}

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

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

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

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

    .split-section {
        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 {
        padding: 34px 20px;
    }

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

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

/* Consultation Page */

/*
    Consultation page design direction:
    - Stays inside consultation-specific classes
    - Dark / gold Helios identity
    - Console-style hero
    - Pricing cards with stronger depth
    - Mobile-safe layouts
*/

html {
    scroll-behavior: smooth;
}

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

.consultation-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);
}

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

.consultation-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;
}

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

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

.consultation-terminal {
    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 {
    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;
}

.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;
}

.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;
}

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

.terminal-row span {
    color: #929292;
}

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

.consultation-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;
}

.consultation-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;
}

.consultation-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;
}

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

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

/* What a consultation is for */

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

.consultation-card {
    position: relative;
    min-height: 192px;
    padding: 23px 16px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(201, 163, 74, 0.18);
    background:
        radial-gradient(circle at 78% 16%, rgba(201, 163, 74, 0.13), transparent 38%),
        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;
}

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

.consultation-card::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;
}

.consultation-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 163, 74, 0.62);
    box-shadow:
        0 0 26px rgba(201, 163, 74, 0.13),
        -10px 12px 34px rgba(201, 163, 74, 0.052);
    background:
        radial-gradient(circle at 78% 14%, rgba(201, 163, 74, 0.22), transparent 38%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent 44%),
        rgba(0, 0, 0, 0.3);
}

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

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

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

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

/* Consultation pricing cards */

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

.consult-option {
    position: relative;
    min-height: 360px;
    padding: 25px 18px 24px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(201, 163, 74, 0.19);
    background:
        radial-gradient(circle at 76% 13%, rgba(201, 163, 74, 0.13), transparent 38%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 44%),
        rgba(0, 0, 0, 0.27);
    transition:
        transform 0.24s ease,
        border-color 0.24s ease,
        box-shadow 0.24s ease,
        background 0.24s ease;
}

.consult-option::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -70px;
    top: -62px;
    border-radius: 50%;
    background: rgba(201, 163, 74, 0.14);
    filter: blur(26px);
    opacity: 0;
    transition: opacity 0.24s ease, transform 0.24s ease;
    pointer-events: none;
}

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

.consult-option:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 163, 74, 0.65);
    box-shadow:
        0 0 30px rgba(201, 163, 74, 0.14),
        -10px 14px 36px rgba(201, 163, 74, 0.055);
    background:
        radial-gradient(circle at 80% 13%, rgba(201, 163, 74, 0.22), transparent 38%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent 44%),
        rgba(0, 0, 0, 0.31);
}

.consult-option:hover::before {
    opacity: 1;
    transform: translate(-8px, 7px);
}

.consult-option:hover::after {
    opacity: 1;
}

.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);
}

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

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

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

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

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

.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 */

.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;
}

/* Booking flow */

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

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

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

.booking-step {
    position: relative;
    min-height: 185px;
    padding: 20px 14px;
    border-radius: 16px;
    overflow: hidden;
    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;
}

.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;
}

.booking-step:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 163, 74, 0.62);
    box-shadow:
        0 0 26px rgba(201, 163, 74, 0.13),
        -10px 12px 34px rgba(201, 163, 74, 0.052);
}

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

.booking-step span {
    position: relative;
    z-index: 1;
    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;
}

.booking-step strong {
    position: relative;
    z-index: 1;
    display: block;
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 10px;
}

.booking-step p {
    position: relative;
    z-index: 1;
    color: #bfbfbf;
    font-size: 12px;
    line-height: 1.65;
}

/* Consultation responsive rules */

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

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

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

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

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

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

    .consultation-grid,
    .booking-flow {
        grid-template-columns: 1fr;
    }

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

/* Asymmetric Panel Glow Tuning */

/*
    This section gives coaching and consultation cards slight visual variation.
    Each card keeps the same Helios identity, but the gold highlight lands in a different place
    so the grid feels more natural and less copy/pasted.
*/

/* Coaching method cards */
.method-stack .method-card:nth-child(1) {
    background:
        radial-gradient(circle at 78% 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);
}

.method-stack .method-card:nth-child(2) {
    background:
        radial-gradient(circle at 24% 22%, 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) {
    background:
        radial-gradient(circle at 70% 72%, 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) {
    background:
        radial-gradient(circle at 30% 78%, 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 process cards */
.process-track .process-step:nth-child(1) {
    background:
        radial-gradient(circle at 82% 20%, 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);
}

.process-track .process-step:nth-child(2) {
    background:
        radial-gradient(circle at 26% 28%, rgba(201, 163, 74, 0.13), transparent 38%),
        linear-gradient(215deg, rgba(255, 255, 255, 0.032), transparent 46%),
        rgba(0, 0, 0, 0.26);
}

.process-track .process-step:nth-child(3) {
    background:
        radial-gradient(circle at 74% 76%, rgba(201, 163, 74, 0.14), transparent 40%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 44%),
        rgba(0, 0, 0, 0.26);
}

.process-track .process-step:nth-child(4) {
    background:
        radial-gradient(circle at 22% 72%, 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 pricing cards */
.coaching-plan-grid .coaching-plan:nth-child(1) {
    background:
        radial-gradient(circle at 76% 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);
}

.coaching-plan-grid .coaching-plan:nth-child(2) {
    background:
        radial-gradient(circle at 50% 14%, rgba(201, 163, 74, 0.24), transparent 42%),
        linear-gradient(135deg, rgba(201, 163, 74, 0.14), rgba(0, 0, 0, 0.28));
}

.coaching-plan-grid .coaching-plan:nth-child(3) {
    background:
        radial-gradient(circle at 25% 22%, rgba(201, 163, 74, 0.15), transparent 38%),
        linear-gradient(215deg, rgba(255, 255, 255, 0.032), transparent 46%),
        rgba(0, 0, 0, 0.26);
}

/* Consultation purpose cards */
.consultation-grid .consultation-card: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);
}

.consultation-grid .consultation-card: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);
}

.consultation-grid .consultation-card:nth-child(3) {
    background:
        radial-gradient(circle at 72% 74%, 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);
}

.consultation-grid .consultation-card:nth-child(4) {
    background:
        radial-gradient(circle at 26% 78%, 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);
}

/* Consultation pricing cards */
.consult-option-grid .consult-option:nth-child(1) {
    background:
        radial-gradient(circle at 78% 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.27);
}

.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));
}

.consult-option-grid .consult-option:nth-child(3) {
    background:
        radial-gradient(circle at 24% 20%, rgba(201, 163, 74, 0.15), transparent 38%),
        linear-gradient(215deg, rgba(255, 255, 255, 0.032), transparent 46%),
        rgba(0, 0, 0, 0.27);
}

/* Consultation booking flow */
.booking-flow .booking-step:nth-child(1) {
    background:
        radial-gradient(circle at 82% 20%, 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);
}

.booking-flow .booking-step:nth-child(2) {
    background:
        radial-gradient(circle at 28% 25%, 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);
}

.booking-flow .booking-step:nth-child(3) {
    background:
        radial-gradient(circle at 76% 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);
}

.booking-flow .booking-step:nth-child(4) {
    background:
        radial-gradient(circle at 24% 74%, 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);
}

/* Hover states keep their own uneven character instead of snapping to the same highlight */
.method-stack .method-card:nth-child(1):hover,
.process-track .process-step:nth-child(1):hover,
.consultation-grid .consultation-card:nth-child(1):hover,
.booking-flow .booking-step:nth-child(1):hover {
    background:
        radial-gradient(circle at 84% 14%, rgba(201, 163, 74, 0.24), transparent 38%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.052), transparent 44%),
        rgba(0, 0, 0, 0.31);
}

.method-stack .method-card:nth-child(2):hover,
.process-track .process-step:nth-child(2):hover,
.consultation-grid .consultation-card:nth-child(2):hover,
.booking-flow .booking-step:nth-child(2):hover {
    background:
        radial-gradient(circle at 20% 22%, rgba(201, 163, 74, 0.23), transparent 38%),
        linear-gradient(215deg, rgba(255, 255, 255, 0.05), transparent 46%),
        rgba(0, 0, 0, 0.31);
}

.method-stack .method-card:nth-child(3):hover,
.process-track .process-step:nth-child(3):hover,
.consultation-grid .consultation-card:nth-child(3):hover,
.booking-flow .booking-step:nth-child(3):hover {
    background:
        radial-gradient(circle at 78% 82%, rgba(201, 163, 74, 0.22), transparent 40%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent 44%),
        rgba(0, 0, 0, 0.31);
}

.method-stack .method-card:nth-child(4):hover,
.process-track .process-step:nth-child(4):hover,
.consultation-grid .consultation-card:nth-child(4):hover,
.booking-flow .booking-step:nth-child(4):hover {
    background:
        radial-gradient(circle at 20% 80%, rgba(201, 163, 74, 0.24), transparent 40%),
        linear-gradient(235deg, rgba(255, 255, 255, 0.05), transparent 46%),
        rgba(0, 0, 0, 0.31);
}

.coaching-plan-grid .coaching-plan:nth-child(1):hover,
.consult-option-grid .consult-option:nth-child(1):hover {
    background:
        radial-gradient(circle at 84% 14%, rgba(201, 163, 74, 0.24), transparent 38%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.052), transparent 44%),
        rgba(0, 0, 0, 0.31);
}

.coaching-plan-grid .coaching-plan:nth-child(2):hover,
.consult-option-grid .consult-option:nth-child(2):hover {
    background:
        radial-gradient(circle at 52% 10%, rgba(201, 163, 74, 0.30), transparent 42%),
        linear-gradient(135deg, rgba(201, 163, 74, 0.18), rgba(0, 0, 0, 0.31));
}

.coaching-plan-grid .coaching-plan:nth-child(3):hover,
.consult-option-grid .consult-option:nth-child(3):hover {
    background:
        radial-gradient(circle at 18% 18%, rgba(201, 163, 74, 0.24), transparent 38%),
        linear-gradient(215deg, rgba(255, 255, 255, 0.05), transparent 46%),
        rgba(0, 0, 0, 0.31);
}

/* Contact Page */

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

.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 22% 18%, rgba(201, 163, 74, 0.16), transparent 34%),
        radial-gradient(circle at 86% 18%, 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);
}

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

.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;
}

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

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

.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);
}

.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;
}

.contact-section {
    position: relative;
    margin-top: 22px;
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    background:
        radial-gradient(circle at 14% 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;
}

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

.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;
}

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

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

.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;
}

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

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

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

.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);
}

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

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

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

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

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

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

    .contact-actions .button {
        width: 100%;
        text-align: center;
    }
}
