/* ==========================================================================
   CONSULTATION PAGE — StratX Capital
   ========================================================================== */

/* ── Base ── */
.consult-page {
    background-color: var(--bg-black);
}

.consult-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 5;
}

.consult-section {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    z-index: 10;
}

.consult-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.consult-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.12;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    font-weight: 400;
}

.consult-section-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.42);
    font-weight: 300;
    line-height: 1.65;
}

.hide-mobile {
    display: inline;
}

/* ================================================================
   SECTION 1: HERO
   ================================================================ */
.consult-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.consult-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.consult-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.consult-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #000 0%, #000 20%, rgba(0, 0, 0, 0.55) 65%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 2;
}

.consult-hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.15;
}

.consult-hero-content {
    position: relative;
    z-index: 10;
    max-width: 880px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Badge */
.consult-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(99, 140, 255, 0.07);
    border: 1px solid rgba(99, 140, 255, 0.2);
    border-radius: 100px;
    font-size: 0.78rem;
    color: rgba(160, 190, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.04em;
}

.consult-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(80, 200, 100, 0.9);
    box-shadow: 0 0 6px rgba(80, 200, 100, 0.5);
    animation: cPulse 2s ease-in-out infinite;
}

@keyframes cPulse {

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

    50% {
        opacity: 0.5;
        transform: scale(0.85);
    }
}

/* Title */
.consult-hero-title {
    font-size: clamp(3rem, 5.5vw, 5.2rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    font-weight: 400;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.consult-hero-title em {
    font-style: italic;
    color: rgba(160, 190, 255, 0.85);
}

.consult-hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.7;
    font-weight: 300;
    max-width: 560px;
}

/* Reassure pills */
.consult-reassure-pills {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.consult-pill {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.9rem;
    background: rgba(12, 14, 28, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);
}

.consult-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50;
    flex-shrink: 0;
}

.consult-pill-dot--green {
    background: rgba(80, 200, 100, 0.85);
    box-shadow: 0 0 5px rgba(80, 200, 100, 0.4);
}

.consult-pill-dot--blue {
    background: rgba(99, 140, 255, 0.85);
    box-shadow: 0 0 5px rgba(99, 140, 255, 0.4);
}

/* Safety note */
.consult-safety-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.83rem;
    color: rgba(80, 200, 100, 0.75);
}

.consult-safety-note svg {
    flex-shrink: 0;
}

/* CTAs */
.consult-hero-ctas {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.consult-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: #fff;
    color: #000;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.consult-btn-primary:hover {
    background: #e8e8e8;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.12);
}

.consult-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.9rem 1.75rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.consult-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.35);
}

/* Video wrap */
.consult-video-wrap {
    width: 100%;
    max-width: 800px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    transition: border-color 0.3s;
}

.consult-video-wrap:hover {
    border-color: rgba(99, 140, 255, 0.3);
}

.consult-chrome-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    background: rgba(18, 20, 36, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.consult-chrome-dots {
    display: flex;
    gap: 0.3rem;
}

.consult-chrome-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.consult-chrome-dots span:nth-child(1) {
    background: rgba(255, 80, 80, 0.45);
}

.consult-chrome-dots span:nth-child(2) {
    background: rgba(255, 200, 80, 0.45);
}

.consult-chrome-dots span:nth-child(3) {
    background: rgba(80, 200, 80, 0.45);
}

.consult-chrome-url {
    flex: 1;
    font-size: 0.66rem;
    font-family: monospace;
    color: rgba(255, 255, 255, 0.28);
    text-align: center;
}

.consult-chrome-secure {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.65rem;
    color: rgba(80, 200, 100, 0.8);
}

.consult-live-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(80, 200, 100, 0.9);
    animation: cPulse 2s ease-in-out infinite;
}

.consult-video-body {
    background: rgba(8, 10, 22, 0.9);
    aspect-ratio: 16/9;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    cursor: pointer;
}

.consult-video-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(99, 140, 255, 0.05) 0%, transparent 70%);
}

.consult-play-btn {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    background: rgba(99, 140, 255, 0.12);
    border: 1px solid rgba(99, 140, 255, 0.28);
    transition: all 0.25s ease;
    z-index: 2;
}

.consult-video-body:hover .consult-play-btn {
    background: rgba(99, 140, 255, 0.22);
    box-shadow: 0 0 40px rgba(99, 140, 255, 0.2);
    transform: scale(1.06);
}

.consult-video-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    z-index: 2;
}

.consult-video-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.consult-video-dur {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
}

.consult-video-topics {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 2;
}

.consult-video-topics span {
    font-size: 0.65rem;
    color: rgba(120, 160, 255, 0.7);
    background: rgba(99, 140, 255, 0.07);
    border: 1px solid rgba(99, 140, 255, 0.12);
    border-radius: 100px;
    padding: 0.2rem 0.6rem;
}

/* ================================================================
   SECTION 2: TOPICS
   ================================================================ */
.consult-topics-section {
    background: var(--bg-black);
}

.consult-topics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
}

.consult-topic-card {
    position: relative;
    overflow: hidden;
    background: rgba(10, 12, 26, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color 0.3s, transform 0.3s;
}

.consult-topic-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 140, 255, 0.2);
}

.consult-topic-card--featured {
    background: rgba(99, 140, 255, 0.04);
    border-color: rgba(99, 140, 255, 0.2);
    box-shadow: 0 0 40px rgba(99, 140, 255, 0.05);
}

.consult-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(99, 140, 255, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.consult-topic-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.consult-topic-icon--blue {
    background: rgba(99, 140, 255, 0.08);
    border: 1px solid rgba(99, 140, 255, 0.16);
    color: rgba(120, 160, 255, 0.9);
}

.consult-topic-icon--gold {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.18);
    color: rgba(212, 175, 55, 0.9);
}

.consult-topic-icon--green {
    background: rgba(80, 200, 100, 0.08);
    border: 1px solid rgba(80, 200, 100, 0.16);
    color: rgba(99, 200, 99, 0.9);
}

.consult-topic-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
}

.consult-topic-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    flex: 1;
}

.consult-topic-card p strong {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}

.consult-topic-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(99, 140, 255, 0.06);
    position: absolute;
    bottom: 1.25rem;
    right: 1.5rem;
    line-height: 1;
    letter-spacing: -0.04em;
}

/* ================================================================
   SECTION 3: AUDIENCE
   ================================================================ */
.consult-audience-section {
    position: relative;
    overflow: hidden;
}

.consult-audience-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.consult-audience-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.consult-audience-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 7, 11, 0.88);
    z-index: 2;
}

.consult-audience-layout {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 4rem;
    align-items: start;
}

.consult-audience-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-top: 0.5rem;
}

.consult-audience-desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

.consult-checklist-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.consult-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.consult-check-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.25rem;
    background: rgba(10, 12, 26, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.72);
    transition: border-color 0.25s, background 0.25s;
}

.consult-check-item:hover {
    border-color: rgba(80, 200, 100, 0.2);
    background: rgba(80, 200, 100, 0.03);
}

.consult-check {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background: rgba(80, 200, 100, 0.08);
    border: 1px solid rgba(80, 200, 100, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: rgba(99, 200, 99, 0.9);
}

.consult-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.28);
    line-height: 1.6;
}

.consult-disclaimer svg {
    flex-shrink: 0;
    margin-top: 1px;
}

/* ================================================================
   SECTION 4: FLOW (HOW THE CALL WORKS)
   ================================================================ */
.consult-flow-section {
    background: var(--bg-black);
}

.consult-flow {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    position: relative;
    margin-bottom: 3.5rem;
}

.consult-flow-step {
    position: relative;
    padding: 2.25rem 2rem;
    background: rgba(10, 12, 26, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color 0.3s, transform 0.3s;
}

.consult-flow-step:hover {
    border-color: rgba(99, 140, 255, 0.2);
    transform: translateY(-4px);
}

.consult-flow-step--featured {
    background: rgba(99, 140, 255, 0.04);
    border-color: rgba(99, 140, 255, 0.2);
    box-shadow: 0 0 40px rgba(99, 140, 255, 0.06);
}

.consult-flow-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(99, 140, 255, 0.07) 0%, transparent 70%);
    pointer-events: none;
    border-radius: inherit;
}

.consult-flow-num {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(99, 140, 255, 0.5);
    text-transform: uppercase;
}

.consult-flow-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 140, 255, 0.08);
    border: 1px solid rgba(99, 140, 255, 0.16);
    border-radius: 12px;
    color: rgba(120, 160, 255, 0.9);
}

.consult-flow-step h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.consult-flow-step p {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.6;
}

/* Connector arrow (between step 1→2 and 2→3) */
.consult-flow-connector {
    display: none;
    /* visually handled by grid gap; keep for large screen option */
}

.consult-flow-cta {
    text-align: center;
}

/* ================================================================
   SECTION 5: SAFETY
   ================================================================ */
.consult-safety-section {
    position: relative;
    overflow: hidden;
}

.consult-safety-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.consult-safety-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
}

.consult-safety-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 7, 11, 0.88);
    z-index: 2;
}

.consult-safety-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

/* Shield visual */
.consult-safety-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
}

.consult-rings {
    position: absolute;
    inset: 0;
}

.consult-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(99, 140, 255, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: cRing 4s ease-in-out infinite;
}

.consult-ring--1 {
    width: 170px;
    height: 170px;
}

.consult-ring--2 {
    width: 260px;
    height: 260px;
    animation-delay: 0.9s;
    opacity: 0.6;
}

.consult-ring--3 {
    width: 350px;
    height: 350px;
    animation-delay: 1.8s;
    opacity: 0.3;
}

@keyframes cRing {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.12;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.06);
        opacity: 0.28;
    }
}

.consult-shield-core {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: rgba(10, 12, 28, 0.9);
    border: 1px solid rgba(99, 140, 255, 0.2);
    border-radius: 50%;
    width: 140px;
    height: 140px;
    justify-content: center;
    box-shadow: 0 0 60px rgba(99, 140, 255, 0.1);
}

.consult-shield-label {
    font-size: 0.48rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(99, 140, 255, 0.65);
    text-transform: uppercase;
    text-align: center;
}

.consult-shield-stat {
    position: absolute;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(10, 12, 28, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    padding: 0.5rem 0.85rem;
}

.consult-ss1 {
    top: 28px;
    right: 8px;
}

.consult-ss2 {
    bottom: 55px;
    right: 3px;
}

.consult-ss3 {
    bottom: 55px;
    left: 3px;
}

.consult-ssn {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

.consult-ssl {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.consult-safety-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.consult-safety-desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
}

.consult-safety-points {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.consult-safety-pt {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.consult-pt-check {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    background: rgba(80, 200, 100, 0.08);
    border: 1px solid rgba(80, 200, 100, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    color: rgba(99, 200, 99, 0.9);
    margin-top: 2px;
}

.consult-safety-pt>div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.consult-safety-pt strong {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
    display: block;
}

.consult-safety-pt span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.38);
}

/* ================================================================
   SECTION 6: BEGINNER
   ================================================================ */
.consult-beginner-section {
    background: var(--bg-black);
}

.consult-beginner-layout {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 4rem;
    align-items: start;
}

.consult-beginner-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.consult-beginner-desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
}

.consult-beginner-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.consult-no-card {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    padding: 1.35rem 1.5rem;
    background: rgba(10, 12, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: border-color 0.3s;
}

.consult-no-card:hover {
    border-color: rgba(99, 140, 255, 0.2);
}

.consult-no-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 140, 255, 0.08);
    border: 1px solid rgba(99, 140, 255, 0.14);
    border-radius: 10px;
    color: rgba(120, 160, 255, 0.85);
}

.consult-no-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.consult-no-text strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    display: block;
}

.consult-no-text span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

/* Quote block */
.consult-beginner-quote {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    background: rgba(99, 140, 255, 0.03);
    border: 1px solid rgba(99, 140, 255, 0.12);
    border-radius: 14px;
    margin-top: 0.5rem;
}

.consult-quote-line--left,
.consult-quote-line--right {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 140, 255, 0.3), transparent);
}

.consult-beginner-quote p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    line-height: 1.65;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ================================================================
   SECTION 7: FAQ
   ================================================================ */
.consult-faq-section {
    background: var(--bg-black);
}

.consult-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.consult-faq-item {
    background: rgba(10, 12, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.25s;
}

.consult-faq-item.active {
    border-color: rgba(99, 140, 255, 0.2);
}

.consult-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.5rem;
    cursor: pointer;
    user-select: none;
}

.consult-faq-q h3 {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
}

.consult-faq-toggle {
    font-size: 1.2rem;
    color: rgba(99, 140, 255, 0.6);
    flex-shrink: 0;
    transition: transform 0.25s;
    line-height: 1;
}

.consult-faq-item.active .consult-faq-toggle {
    transform: rotate(45deg);
}

.consult-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
}

.consult-faq-item.active .consult-faq-a {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}

.consult-faq-a p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

/* ================================================================
   SECTION 8: TELEGRAM
   ================================================================ */
.consult-telegram-section {
    background: var(--bg-black);
    padding: 4rem 0 7rem;
}

.consult-telegram-card {
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 2.5rem;
    align-items: center;
    background: rgba(99, 140, 255, 0.04);
    border: 1px solid rgba(99, 140, 255, 0.18);
    border-radius: 20px;
    padding: 2.75rem 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.consult-tg-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at left, rgba(99, 140, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.consult-tg-icon {
    flex-shrink: 0;
}

.consult-tg-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.consult-tg-text h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
}

.consult-tg-text p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

.consult-tg-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.9rem 1.75rem;
    flex-shrink: 0;
    background: rgba(99, 140, 255, 0.1);
    border: 1px solid rgba(99, 140, 255, 0.25);
    border-radius: 100px;
    color: rgba(140, 180, 255, 0.95);
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.consult-tg-btn:hover {
    background: rgba(99, 140, 255, 0.18);
    border-color: rgba(99, 140, 255, 0.4);
    transform: translateY(-1px);
}

/* ================================================================
   SECTION 9: FINAL CTA
   ================================================================ */
.consult-final-wrapper {
    padding: 1rem 2rem 2rem;
    background: var(--bg-black);
}

.consult-final-section {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.consult-final-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.consult-final-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.consult-final-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(9, 9, 11, 0.32) 0%, rgba(9, 9, 11, 0.88) 100%);
    z-index: 2;
}

.consult-final-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 4rem 2rem;
    width: 100%;
}

.consult-final-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.7;
}

.consult-final-ctas {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.consult-final-reassure {
    display: flex;
    gap: 2rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    flex-wrap: wrap;
    justify-content: center;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 960px) {
    .consult-topics-grid {
        grid-template-columns: 1fr;
    }

    .consult-audience-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .consult-safety-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .consult-beginner-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .consult-telegram-card {
        flex-direction: column;
        gap: 1.75rem;
        padding: 2rem;
    }

    .consult-safety-visual {
        min-height: 280px;
    }

    .consult-beginner-quote p {
        white-space: normal;
    }
}

@media (max-width: 640px) {
    .hide-mobile {
        display: none;
    }

    .consult-hero-title {
        font-size: 2.8rem;
    }

    .consult-reassure-pills {
        flex-direction: column;
        align-items: center;
    }

    .consult-final-reassure {
        gap: 1rem;
    }
}