:root {
    --bg-dark: #0c1118;
    --bg-panel: #1A1D24;
    --bg-panel-light: #222630;
    --accent-orange: #FF7A00;
    --accent-orange-glow: rgba(255, 122, 0, 0.4);
    --accent-yellow: #FF9D42;
    --text-main: #FFFFFF;
    --text-muted: #A0A6B1;
    --border-light: rgba(255, 255, 255, 0.08);
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    /* Global trading grid texture */
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    background-position: center center;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 4rem;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--accent-orange);
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.max-w-lg { max-width: 800px; margin-left: auto; margin-right: auto; }

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.align-center {
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    border: none;
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-orange) 100%);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--accent-orange-glow);
}

.glow {
    box-shadow: 0 0 20px var(--accent-orange-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.25rem 0;
    z-index: 100;
    background: rgba(12, 17, 24, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.logo img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255, 122, 0, 0.35));
    transition: filter var(--transition);
}

.logo img:hover {
    filter: drop-shadow(0 0 16px rgba(255, 122, 0, 0.65));
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

/* Language switch */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    font-family: var(--font-main);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.lang-btn:hover {
    color: var(--text-main);
}

.lang-btn.active {
    color: var(--accent-orange);
}

.lang-divider {
    color: var(--border-light);
    font-size: 0.75rem;
}


.hero {
    padding: 12rem 0 6rem;
    position: relative;
    /* overflow: hidden removed to prevent cutting off the ambient radial glow above the section */
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 60%;
    max-width: 900px;
    aspect-ratio: 1 / 1;
    background: radial-gradient(closest-side, var(--accent-orange-glow) 0%, transparent 100%);
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(60px);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 122, 0, 0.1);
    color: var(--accent-orange);
    border: 1px solid rgba(255, 122, 0, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-headline {
    font-size: 3rem; /* Scaled down as requested */
    line-height: 1.15;
    margin-bottom: 2rem;
    max-width: 800px;
}

.hero-subtext {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

/* New Pattern Text */
.hero-pattern-text {
    font-size: 1rem;
    color: var(--text-muted);
    opacity: 0.9;
    padding-left: 1.5rem;
    border-left: 2px solid var(--border-light);
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.hero-pattern-text p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.hero-pattern-text p:last-child {
    margin-bottom: 0;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.venn-caption {
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 80%;
    line-height: 1.5;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    border-top: 1px solid var(--border-light);
    padding-top: 4rem;
    margin: 4rem auto 0;
    width: 100%;
    max-width: 950px;
}

.hf-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    padding-right: 1.5rem;
}

.hf-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.5rem; /* Centers the line perfectly in the 3rem grid gap */
    top: 10%;
    height: 80%;
    width: 1px;
    background: var(--border-light);
}

.hf-item strong {
    font-size: 1.125rem;
    color: var(--text-main);
}


.hf-item span {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

/* ---- Forge Card (hero right panel) ---- */
.forge-card {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1 / 1.05;
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(145deg, #161c26 0%, #0e1520 60%, #0c1118 100%);
    border: 1px solid rgba(255, 122, 0, 0.18);
    box-shadow:
        0 0 0 1px rgba(255, 122, 0, 0.05),
        0 30px 60px rgba(0, 0, 0, 0.7),
        0 0 80px rgba(255, 122, 0, 0.06) inset;
}

/* Grid texture */
.forge-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,122,0,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,122,0,0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    z-index: 0;
}

/* Ambient glow in center */
.forge-glow {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55%;
    height: 55%;
    background: radial-gradient(circle, rgba(255,122,0,0.18) 0%, transparent 70%);
    z-index: 1;
    animation: glowPulse 3.5s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

/* Candlestick lines at bottom */
.chart-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 38%;
    z-index: 2;
    padding: 0 5%;
    display: flex;
    align-items: flex-end;
    border-top: 1px solid rgba(255,122,0,0.06);
}

.c-line {
    position: absolute;
    bottom: 0;
    width: 9px;
    border-radius: 2px 2px 0 0;
    transform: translateX(-50%);
    opacity: 0.55;
}

.c-line.up {
    background: rgba(39, 201, 63, 0.6);
    border: 1px solid rgba(39,201,63,0.4);
}

.c-line.down {
    background: rgba(255, 66, 66, 0.6);
    border: 1px solid rgba(255,66,66,0.4);
}

.c-wick {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 1.5px;
    height: 12px;
    background: rgba(39, 201, 63, 0.5);
    border-radius: 1px;
}

.c-wick.down-wick {
    background: rgba(255, 66, 66, 0.5);
}

/* Central SVG forge icon */
.forge-icon-wrap {
    position: absolute;
    top: 14%;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 180px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.forge-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 12px rgba(255, 122, 0, 0.5));
}

/* Pulsing rings around the icon */
.forge-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1px solid rgba(255, 122, 0, 0.35);
    transform: translate(-50%, -50%) scale(0.6);
    animation: ringPulse 2.8s ease-out infinite;
    z-index: 2;
}

.forge-pulse-ring.delay {
    animation-delay: 1.4s;
    border-color: rgba(255, 122, 0, 0.2);
}

@keyframes ringPulse {
    0% { transform: translate(-50%, -50%) scale(0.6); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

/* Ember sparks */
.ember {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent-orange);
    z-index: 4;
    opacity: 0;
    animation: emberFloat 4s ease-in-out infinite;
}

.e1 { left: 48%; top: 42%; animation-delay: 0s; width: 3px; height: 3px; }
.e2 { left: 52%; top: 38%; animation-delay: 0.8s; background: var(--accent-yellow); }
.e3 { left: 45%; top: 35%; animation-delay: 1.6s; width: 2px; height: 2px; }
.e4 { left: 55%; top: 44%; animation-delay: 2.4s; background: var(--accent-yellow); width: 3px; height: 3px; }
.e5 { left: 50%; top: 32%; animation-delay: 3.2s; }

@keyframes emberFloat {
    0% { opacity: 0; transform: translateY(0) scale(0.5); }
    20% { opacity: 1; }
    80% { opacity: 0.5; transform: translateY(-30px) translateX(6px) scale(1); }
    100% { opacity: 0; transform: translateY(-50px) translateX(10px) scale(0.3); }
}

/* Stats bar at the bottom of the card */
.forge-stats {
    position: absolute;
    bottom: 40%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(10, 12, 18, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 122, 0, 0.15);
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    z-index: 5;
    white-space: nowrap;
}

.fstat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.fstat-val {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent-yellow);
    letter-spacing: -0.5px;
}

.fstat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.fstat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 122, 0, 0.2);
}

/* Visual words below the card */
.visual-words {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.v-word {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.v-word.active-word {
    color: rgba(255, 150, 0, 0.7);
}

.v-sep {
    color: rgba(255, 122, 0, 0.3);
    font-size: 0.75rem;
}


/* Cards */
.card {
    background: var(--bg-panel);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
}

.card:hover {
    background: var(--bg-panel-light);
    transform: translateY(-5px);
    border-color: rgba(255, 122, 0, 0.3);
}

.glass-card {
    background: rgba(26, 29, 36, 0.6);
    backdrop-filter: blur(20px);
}

/* ============================================
   WHY MOST TRADERS FAIL (THE PROBLEM)
   ============================================ */
.why-fail {
    padding: 100px 0;
}

.why-fail-header {
    margin-bottom: 60px;
}

.section-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
    font-weight: 600;
}

.wf-headline {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.wf-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.wf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.wf-card {
    background: rgba(26, 29, 36, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.wf-card:hover {
    background: rgba(26, 29, 36, 0.7);
    border-color: rgba(255, 122, 0, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 122, 0, 0.05);
}

.wf-card h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
    margin-top: 0;
}

.wf-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .wf-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wf-grid {
        grid-template-columns: 1fr;
    }
    .why-fail {
        padding: 80px 0;
    }
    .wf-headline {
        font-size: 2.2rem;
    }
}

/* ============================================
   LOGICAL SOLUTION (COACHING)
   ============================================ */
.logical-solution {
    padding: 100px 0;
}

.ls-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.ls-left {
    flex: 1;
    max-width: 600px;
}

.ls-headline {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff;
}

.ls-subline {
    font-size: 1.35rem;
    color: #ffffff;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 24px;
}

.ls-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 90%;
}

.ls-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ls-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1.125rem;
    color: #e2e8f0;
    font-weight: 500;
}

.ls-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 122, 0, 0.1);
    border: 1px solid var(--accent-orange);
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.ls-check::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 50%;
    width: 6px;
    height: 10px;
    border-bottom: 2px solid var(--accent-orange);
    border-right: 2px solid var(--accent-orange);
    transform: translate(-50%, -50%) rotate(45deg);
}

.ls-right {
    flex: 0 0 420px;
}

.ls-visual-card {
    background: rgba(26, 29, 36, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease;
}

.ls-visual-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 122, 0, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 122, 0, 0.1);
}

.dialog-card {
    background: rgba(20, 22, 28, 0.3); /* very transparent */
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
}

.dialog-title {
    margin-bottom: 40px;
    text-align: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 24px;
}

.dialog-title h4 {
    font-size: 1.25rem;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
}

.dialog-split {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}

.dialog-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dialog-border {
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.25), transparent);
}

.dialog-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 24px;
    text-align: center;
}

.dialog-col.negative .dialog-label {
    color: rgba(255, 255, 255, 0.3); /* neutral dimmed, no strong red */
}

.dialog-col.positive .dialog-label {
    color: rgba(255, 122, 0, 0.6); /* subtle orange glow */
}

.dialog-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px; /* thoughts have room */
}

.dialog-list li {
    font-size: 1.05rem; /* slightly larger, readable */
    text-align: center;
    line-height: 1.5;
    font-style: italic; /* feels like an internal thought */
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 8px 0;
}

.dialog-col.negative .dialog-list li {
    color: rgba(255, 255, 255, 0.4);
}

.dialog-col.positive .dialog-list li {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 10px rgba(255, 122, 0, 0.2);
}

@media (max-width: 992px) {
    .ls-split {
        flex-direction: column;
        gap: 50px;
    }
    .ls-right {
        width: 100%;
        max-width: 500px;
        flex: auto;
    }
}

@media (max-width: 768px) {
    .logical-solution {
        padding: 80px 0;
    }
    .ls-headline {
        font-size: 2.2rem;
    }
}

/* How It Works */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: var(--bg-panel);
    padding: 1.75rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.step:hover {
    background: var(--bg-panel-light);
    transform: translateX(10px);
    border-color: rgba(255, 122, 0, 0.3);
}

.step-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-orange);
    opacity: 0.5;
    flex-shrink: 0;
    padding-top: 0.1rem;
}

.step h3 {
    margin: 0 0 0.4rem;
    font-size: 1.2rem;
}

.step-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Testimonials — Manual Carousel */
.testimonials-section-inner {
    position: relative;
    width: 100%;
}

/* Outer wrapper clips the visible area and adds edge fades */
.carousel-wrapper {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    padding: 1.5rem 0 3rem;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* Track — no animation, positions cards in a row */
.carousel-track {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 2rem;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

/* Individual testimonial card */
.testimonial-card {
    flex: 0 0 380px;
    background: rgba(26, 29, 36, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2.5rem;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
                opacity 0.5s ease,
                box-shadow 0.5s ease,
                border-color 0.5s ease;
    display: flex;
    flex-direction: column;
    /* Default: slightly faded */
    opacity: 0.55;
    transform: scale(0.95);
}

/* Center / focused card */
.testimonial-card.focus-card {
    opacity: 1;
    transform: scale(1.04);
    border-color: rgba(255, 122, 0, 0.45);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55),
                0 0 28px rgba(255, 122, 0, 0.18);
    background: rgba(26, 29, 36, 0.85);
}

.testimonial-card:hover {
    opacity: 0.85;
    border-color: rgba(255, 122, 0, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 16px rgba(255, 122, 0, 0.08);
}

.testimonial-card.focus-card:hover {
    opacity: 1;
}

.testimonial-card .stars {
    color: var(--accent-orange);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.quote {
    color: var(--text-main);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.author strong {
    display: block;
    font-size: 1.125rem;
    color: var(--text-main);
}

.author span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.read-more-hint {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--accent-orange);
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-card:hover .read-more-hint {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation arrows (outside the clipped wrapper) */
.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.carousel-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-main);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    user-select: none;
    -webkit-user-select: none;
}

.carousel-arrow:hover {
    background: rgba(255, 122, 0, 0.10);
    border-color: rgba(255, 122, 0, 0.55);
    box-shadow: 0 0 18px rgba(255, 122, 0, 0.20), 0 4px 16px rgba(0,0,0,0.4);
    transform: scale(1.08);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

.carousel-arrow:disabled,
.carousel-arrow.disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

/* Dot pagination (below arrows, optional) */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--accent-orange);
    transform: scale(1.35);
    box-shadow: 0 0 8px var(--accent-orange-glow);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 300px;
        padding: 2rem;
    }
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}


/* Modal Styling */
.testimonial-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 1rem;
}

.testimonial-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.tm-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 11, 14, 0.85);
    backdrop-filter: blur(8px);
}

.tm-content {
    position: relative;
    width: 100%;
    max-width: 650px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    z-index: 10;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 0;
    border: 1px solid rgba(255, 122, 0, 0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 80px rgba(255, 122, 0, 0.1);
}

.testimonial-modal.open .tm-content {
    transform: translateY(0) scale(1);
}

.tm-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 5;
}

.tm-close:hover {
    background: rgba(255, 66, 66, 0.2);
    color: #fff;
    border-color: rgba(255, 66, 66, 0.5);
    transform: rotate(90deg);
}

.tm-header {
    padding: 2.5rem 2.5rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.tm-header h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    color: var(--accent-orange);
}

.tm-header .stars {
    color: var(--accent-orange);
    font-size: 1rem;
    letter-spacing: 2px;
}

.tm-scroll {
    overflow-y: auto;
    padding: 1.5rem 2.5rem 2.5rem;
}

.tm-scroll::-webkit-scrollbar {
    width: 6px;
}

.tm-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.tm-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 122, 0, 0.3);
    border-radius: 10px;
}

.tm-body {
    color: var(--text-main);
    font-size: 1.05rem;
    line-height: 1.8;
}

.tm-body p {
    margin-bottom: 1rem;
    color: var(--text-main);
}
.tm-body p:last-child {
    margin-bottom: 0;
}

/* ============================================
   DISCORD COMMUNITY SECTION
   ============================================ */
.discord-section-compact {
    padding: 6rem 0;
    position: relative;
    background: transparent;
}

.discord-compact-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1050px;
    margin: 0 auto;
    gap: 4rem;
    padding: 3.5rem 4rem;
    
    /* Subtle background resembling the dark styling with dot pattern */
    background-color: #0b0e14;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    box-shadow: inset 0 0 0 1px rgba(255, 122, 0, 0.05), 0 20px 40px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.discord-compact-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 122, 0, 0.05), transparent 60%);
    pointer-events: none;
}

.dc-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.dc-left h2 {
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    flex-wrap: wrap;     
    gap: 0.4rem;
}

.dc-left .highlight {
    color: var(--accent-orange);
}

.dc-left p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.btn-discord-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(90deg, #FDB777, #FD9346);
    color: #000;
    border: none;
    transition: all 0.3s ease;
}

.btn-discord-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 147, 70, 0.4);
    filter: brightness(1.1);
}

.btn-discord-icon {
    width: 22px;
    height: auto;
    color: #000;
}

.dc-right {
    flex: 0 0 380px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.dc-feature-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.dc-feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(-5px);
}

.dcf-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dcf-icon {
    width: 22px;
    height: 22px;
    color: var(--accent-orange);
}

.dcf-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.dcf-text strong {
    font-size: 1.05rem;
    color: #ffffff;
    font-weight: 600;
}

.dcf-text span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.dc-star-decor {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    color: rgba(255, 255, 255, 0.05); /* very subtle star */
    transform: rotate(15deg);
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 992px) {
    .discord-compact-container {
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 3rem;
    }
    .dc-left {
        text-align: center;
        align-items: center;
    }
    .dc-left h2 {
        justify-content: center;
    }
    .dc-left p {
        max-width: 100%;
    }
    .dc-right {
        width: 100%;
        max-width: 400px;
        flex: auto;
    }
}

/* Booking */
.booking-panel {
    padding: 4rem;
}

.calendar-placeholder {
    background: var(--bg-dark);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    padding: 1.5rem;
}

.cal-header {
    text-align: center;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.cal-day {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

.cal-date {
    font-size: 0.875rem;
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.cal-date:not(.empty):hover {
    background: rgba(255, 255, 255, 0.1);
}

.cal-date.active {
    background: var(--accent-orange);
    color: #000;
    font-weight: 700;
    box-shadow: 0 0 10px var(--accent-orange-glow);
}

.cal-times {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.time-slot {
    padding: 0.5rem;
    text-align: center;
    font-size: 0.875rem;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.time-slot:hover {
    background: rgba(255, 255, 255, 0.05);
}

.time-slot.active {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
    background: rgba(255, 122, 0, 0.1);
}


/* ============================================
   FINAL CTA — Single Polished Closing Section
   ============================================ */
.final-cta {
    position: relative;
    padding: 10rem 0 8rem;
    overflow: hidden;
    /* Smooth gradient blend from preceding section */
    background: linear-gradient(
        180deg,
        var(--bg-dark) 0%,
        rgba(12, 17, 24, 0.92) 30%,
        rgba(14, 15, 20, 0.98) 100%
    );
    text-align: center;
}

/* Full-page atmosphere layer */
.cta-atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* Layered ambient glow rings */
.cta-glow-ring {
    position: absolute;
    border-radius: 50%;
    background: transparent;
}

.cta-ring-1 {
    width: 700px;
    height: 700px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 122, 0, 0.12) 0%, transparent 65%);
    animation: ctaGlow 5s ease-in-out infinite;
}

.cta-ring-2 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 150, 0, 0.08) 0%, transparent 70%);
    animation: ctaGlow 5s ease-in-out infinite reverse;
}

.cta-ring-3 {
    width: 1100px;
    height: 400px;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(255, 122, 0, 0.05) 0%, transparent 70%);
}

@keyframes ctaGlow {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.08); }
}

/* Inner content layout */
.cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* Small eyebrow label */
.cta-label {
    display: inline-block;
    padding: 0.4rem 1.1rem;
    background: rgba(255, 122, 0, 0.08);
    color: var(--accent-orange);
    border: 1px solid rgba(255, 122, 0, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
}

/* Main headline */
.cta-headline {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 80px rgba(255, 122, 0, 0.15);
}

/* Subtext */
.cta-sub {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* Button */
.cta-btn {
    margin-bottom: 2rem;
    font-size: 1.125rem;
    padding: 1.25rem 3rem;
    box-shadow: 0 0 30px rgba(255, 122, 0, 0.4), 0 8px 25px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 50px rgba(255, 122, 0, 0.6), 0 15px 35px rgba(0, 0, 0, 0.6);
}

/* Trust indicators */
.cta-trust {
    display: flex;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}


/* Footer */
.footer {
    border-top: 1px solid var(--border-light);
    padding: 4rem 0 2rem;
    background: #050507;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-logo img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255, 122, 0, 0.2));
    transition: var(--transition);
}

.footer-logo:hover img {
    filter: none;
    opacity: 1;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-main);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

/* Responsive */
@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2rem; }
    
    .hero-container, .split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero {
        padding: 8rem 0 4rem;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 3rem;
        margin-top: 2rem;
    }
    
    .hf-item {
        padding-right: 0;
        padding-bottom: 2rem;
        align-items: center;
        text-align: center;
    }
    
    .hf-item:not(:last-child)::after {
        right: 15%;
        top: auto;
        bottom: 0;
        width: 70%;
        height: 1px;
    }
    
    .booking-panel {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero::before { display: none; }
    h1 { font-size: 2.5rem; }
    .final-cta h2 { font-size: 2.5rem; }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Section Eyebrow / Label
   ============================================ */
.section-eyebrow {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 122, 0, 0.08);
    color: var(--accent-orange);
    border: 1px solid rgba(255, 122, 0, 0.18);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
}

/* ============================================
   CALL BREAKDOWN SECTION
   ============================================ */
.call-breakdown {
    background: linear-gradient(180deg, transparent 0%, rgba(255,122,0,0.02) 50%, transparent 100%);
}

.call-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.call-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.call-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 1rem;
    border-left: 2px solid rgba(255, 122, 0, 0.15);
    position: relative;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0 0 2rem 1.5rem;
    position: relative;
}

.tl-dot {
    position: absolute;
    left: -1.45rem;
    top: 0.35rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bg-panel);
    border: 2px solid rgba(255, 122, 0, 0.4);
    flex-shrink: 0;
    transition: var(--transition);
}

.tl-dot.active-dot {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    box-shadow: 0 0 12px var(--accent-orange-glow);
}

.timeline-item:hover .tl-dot {
    border-color: var(--accent-orange);
    background: rgba(255, 122, 0, 0.2);
}

.tl-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.tl-content strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
}

.tl-content span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ============================================
   OPTIONAL TOPICS SECTION
   ============================================ */
.optional-topics {
    background: rgba(26, 29, 36, 0.3);
}

.opt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.opt-card {
    text-align: center;
    padding: 2.5rem 2rem;
}

.opt-icon {
    font-size: 2rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.opt-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.opt-card p {
    font-size: 0.95rem;
    margin: 0;
}

.opt-note {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
    font-style: italic;
    opacity: 0.7;
}

/* ============================================
   DATA PRIVACY / TRUST SECTION
   ============================================ */
.privacy-trust {
    padding: 5rem 0;
}

.privacy-panel {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 3rem;
    border-color: rgba(255, 122, 0, 0.15);
}

.privacy-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    padding-top: 0.25rem;
    filter: grayscale(0.3);
}

.privacy-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.privacy-content p {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.privacy-content p:last-child {
    margin-bottom: 0;
}

.privacy-highlight {
    color: var(--text-main) !important;
    font-weight: 600;
    font-size: 1.05rem !important;
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

/* Responsive additions */
@media (max-width: 992px) {
    .privacy-panel {
        flex-direction: column;
        padding: 2rem;
    }
    .call-timeline {
        margin-top: 2rem;
    }
    .cta-headline { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .opt-grid { grid-template-columns: 1fr; }
    .cta-trust { flex-direction: column; gap: 0.75rem; align-items: center; }
    .cta-headline { font-size: 2.2rem; }
    .nav-actions { gap: 0.75rem; }
}

/* ============================================
   FORGE BRAIN + HAMMER ANIMATION
   ============================================ */

/* The SVG scene: stretch to fill the card */
.forge-scene {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    overflow: visible;
}

/* Ambient glow (replaces forge-glow) */
.forge-ambient {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255,122,0,0.14) 0%, transparent 70%);
    z-index: 1;
    animation: glowPulse 4s ease-in-out infinite;
    border-radius: 50%;
    pointer-events: none;
}

.forge-ambient-2 {
    top: 70%;
    width: 50%;
    height: 40%;
    background: radial-gradient(circle, rgba(255,122,0,0.06) 0%, transparent 70%);
    animation-delay: 2s;
}

/* ---- HAMMER STRIKE (4.5s loop) ---- */
/* timing breakdown:
   0%   – hammer at rest position (translateY 0)
   8%   – hammer lifts slightly up
   45%  – hammer arrives at strike point (translateY 74px)
   50%  – tiny bounce up (74px → 68px)
   55%  – settle (70px)
   65%  – hammer returns up
   100% – back at 0
*/
.hammer-group {
    animation: hammerStrike 4.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    transform-origin: 160px 56px;
}

@keyframes hammerStrike {
    0%   { transform: translateY(0);    }
    8%   { transform: translateY(-12px);}
    45%  { transform: translateY(74px); }
    50%  { transform: translateY(66px); }
    55%  { transform: translateY(70px); }
    68%  { transform: translateY(-6px); }
    80%  { transform: translateY(0);    }
    100% { transform: translateY(0);    }
}

/* ---- STRIKE IMPACT RING ---- */
.strike-impact {
    opacity: 0;
    animation: strikeFlash 4.5s ease-out infinite;
}

@keyframes strikeFlash {
    0%,  43%  { opacity: 0;   transform: scale(0.5); }
    46%        { opacity: 0.9; transform: scale(1);   }
    60%        { opacity: 0;   transform: scale(1.3); }
    100%       { opacity: 0;   }
}

/* ---- BRAIN GLOW PULSE ON STRIKE ---- */
.brain-main {
    animation: brainPulse 4.5s ease-out infinite;
}

@keyframes brainPulse {
    0%,  43%  { filter: none;                                           stroke: rgba(255,150,0,0.6);  }
    47%        { filter: drop-shadow(0 0 10px rgba(255,140,0,0.9));     stroke: rgba(255,200,80,0.95); }
    65%        { filter: drop-shadow(0 0 4px rgba(255,130,0,0.4));      stroke: rgba(255,150,0,0.65); }
    80%        { filter: none;                                           stroke: rgba(255,150,0,0.6);  }
    100%       { filter: none;                                           stroke: rgba(255,150,0,0.6);  }
}

/* ---- BRAIN PULSE RING (expands outward) ---- */
.brain-pulse {
    animation: pulseRingExpand 4.5s ease-out infinite;
}

@keyframes pulseRingExpand {
    0%,  44%  { r: 2;  stroke-opacity: 0;   }
    46%        { r: 8;  stroke-opacity: 0.7; }
    62%        { r: 55; stroke-opacity: 0;   }
    100%       { r: 2;  stroke-opacity: 0;   }
}

/* ---- SPARK PARTICLES ---- */
/* Each spark flies in a different direction from cx=160 cy=126 */
.spark {
    opacity: 0;
    animation-duration: 4.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.sp1 { animation-name: spark1; }
.sp2 { animation-name: spark2; }
.sp3 { animation-name: spark3; }
.sp4 { animation-name: spark4; }
.sp5 { animation-name: spark5; }
.sp6 { animation-name: spark6; }
.sp7 { animation-name: spark7; }
.sp8 { animation-name: spark8; }

/* Template: burst at 46%, translate in direction, fade by 58% */
@keyframes spark1 {
    0%,44%{ opacity:0; transform:translate(0,0); }
    46%   { opacity:1; transform:translate(0,0); }
    58%   { opacity:0; transform:translate(-28px,-22px) scale(0.4); }
    100%  { opacity:0; }
}
@keyframes spark2 {
    0%,44%{ opacity:0; transform:translate(0,0); }
    46%   { opacity:1; transform:translate(0,0); }
    58%   { opacity:0; transform:translate(28px,-20px) scale(0.4); }
    100%  { opacity:0; }
}
@keyframes spark3 {
    0%,44%{ opacity:0; transform:translate(0,0); }
    46%   { opacity:1; transform:translate(0,0); }
    58%   { opacity:0; transform:translate(-36px,6px) scale(0.3); }
    100%  { opacity:0; }
}
@keyframes spark4 {
    0%,44%{ opacity:0; transform:translate(0,0); }
    46%   { opacity:1; transform:translate(0,0); }
    58%   { opacity:0; transform:translate(36px,8px) scale(0.3); }
    100%  { opacity:0; }
}
@keyframes spark5 {
    0%,44%{ opacity:0; transform:translate(0,0); }
    46%   { opacity:0.9; transform:translate(0,0); }
    58%   { opacity:0; transform:translate(-20px,-38px) scale(0.3); }
    100%  { opacity:0; }
}
@keyframes spark6 {
    0%,44%{ opacity:0; transform:translate(0,0); }
    46%   { opacity:0.9; transform:translate(0,0); }
    58%   { opacity:0; transform:translate(20px,-36px) scale(0.3); }
    100%  { opacity:0; }
}
@keyframes spark7 {
    0%,44%{ opacity:0; transform:translate(0,0); }
    46%   { opacity:0.8; transform:translate(0,0); }
    57%   { opacity:0; transform:translate(-42px,-10px) scale(0.25); }
    100%  { opacity:0; }
}
@keyframes spark8 {
    0%,44%{ opacity:0; transform:translate(0,0); }
    46%   { opacity:0.8; transform:translate(0,0); }
    57%   { opacity:0; transform:translate(42px,-8px) scale(0.25); }
    100%  { opacity:0; }
}

/* Updated visual-words: all amber, with glow on hover */
.visual-words {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.v-word {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 150, 0, 0.6);
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.v-word:hover {
    color: var(--accent-yellow);
}

.v-sep {
    color: rgba(255, 122, 0, 0.3);
    font-size: 0.9rem;
}

/* ============================================
   CALL BREAKDOWN — 3-COLUMN ALIGNED GRID
   ============================================ */
.call-header {
    margin-bottom: 3rem;
}

.call-header h2 {
    font-size: 2.5rem;
}

.call-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.cg-row {
    display: grid;
    /* col1: text (flexible) | col2: timeline node (fixed) | col3: step label (fixed) */
    grid-template-columns: 1fr 44px 220px;
    align-items: stretch;
    gap: 0 1.5rem;
    min-height: 80px;
}

/* ---- Left: paragraph text ---- */
.cg-text {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: var(--bg-panel);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.cg-text p {
    margin: 0;
    font-size: 0.97rem;
    line-height: 1.75;
    color: var(--text-muted);
}

.cg-row:hover .cg-text {
    background: var(--bg-panel-light);
    border-color: rgba(255, 122, 0, 0.2);
}

/* ---- Center: node column (dot + vertical line) ---- */
.cg-node-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 1.6rem;
    padding-bottom: 0;
}

.cg-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bg-panel);
    border: 2px solid rgba(255, 122, 0, 0.45);
    flex-shrink: 0;
    transition: var(--transition);
    z-index: 1;
}

.cg-row:hover .cg-dot {
    border-color: var(--accent-orange);
    background: rgba(255, 122, 0, 0.15);
}

.cg-dot-active {
    background: var(--accent-orange) !important;
    border-color: var(--accent-orange) !important;
    box-shadow: 0 0 14px var(--accent-orange-glow);
}

/* The connecting vertical line — grows to fill remaining row height */
.cg-line {
    flex: 1;
    width: 2px;
    background: linear-gradient(to bottom, rgba(255,122,0,0.3) 0%, rgba(255,122,0,0.08) 100%);
    margin-top: 4px;
    margin-bottom: -0.75rem; /* overlap into next row's padding so lines connect */
}

/* Last row: no line below */
.cg-row-last .cg-line {
    display: none;
}

/* ---- Right: step label ---- */
.cg-label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
    padding-bottom: 0.75rem;
}

.cg-label strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
}

.cg-label span {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Mobile: stack into single column */
@media (max-width: 860px) {
    .cg-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .cg-node-col { display: none; }
    .cg-label {
        padding: 0 1rem 0.5rem;
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
    }
    .cg-label span { display: none; }
}

/* ============================================
   HERO ANIMATION — Hammer + Brain (User-Provided)
   ============================================ */
.hammer-wrapper {
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: bottom center;
    z-index: 10;
}

#spark-container {
    position: absolute;
    top: 36%;
    left: 50%;
    width: 1px;
    height: 1px;
    overflow: visible;
    z-index: 5;
    pointer-events: none;
}

.hero-spark {
    position: absolute;
    width: 2.5px;
    height: 2.5px;
    background: #ff8c00;
    border-radius: 50%;
    box-shadow: 0 0 8px 1px #ff8c00;
    pointer-events: none;
    opacity: 1;
    transform: translate(0, 0) scale(1);
    animation: heroSparkAnim 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes heroSparkAnim {
    100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}

.brain-wrapper {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.brain-path {
    stroke: #3a4a62;
    transition: stroke 1.5s ease-out, filter 1.5s ease-out;
}

.brain-path.glowing {
    stroke: #ff8c00;
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.8));
    transition: stroke 0.1s ease-in, filter 0.1s ease-in;
}

#main-panel {
    transition: box-shadow 1.5s ease-out;
}

#main-panel.glowing {
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 50px rgba(255, 140, 0, 0.12);
    transition: box-shadow 0.1s ease-in;
}

/* ============================================
   PSYCH MAP — Static Brain Network SVG
   ============================================ */
.psych-map {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
    position: relative;
    z-index: 2;
}

/* Ensure forge-card clips sensibly but lets SVG text breathe */
.forge-card {
    overflow: visible !important;
}

/* Node Interactions */
.pmap-node {
    transition: transform 0.2s ease-out;
    transform-origin: center;
}
/* Note: transform-origin in SVG can be tricky, but since we rely on JS positioning for the tooltip, 
   we just add a scaling effect around the node's center by setting transform-box */
.pmap-node circle {
    transition: all 0.2s ease-out;
}
.pmap-node:hover > circle:nth-child(2) {
    stroke-width: 2.5px;
    filter: url(#gfNode) drop-shadow(0 0 8px rgba(255,165,0,0.8));
}

/* Hover Tooltip */
.pmap-tooltip {
    position: absolute;
    z-index: 100;
    width: 220px;
    padding: 12px 16px;
    background: rgba(11, 16, 26, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 140, 0, 0.1);
    color: #e2e8f0;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    text-align: left;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -10px) scale(0.95);
    transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    visibility: hidden;
}

.pmap-tooltip.visible {
    opacity: 1;
    transform: translate(-50%, -100%) scale(1); /* Position perfectly above the node */
    visibility: visible;
}

/* ============================================
   DEDICATED BOOKING PAGE STYLES
   ============================================ */
.booking-page {
    background: #0A0B0E;
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.booking-page .navbar {
    position: relative;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.booking-main {
    flex: 1;
    position: relative;
    padding: 6rem 0 10rem;
    overflow: hidden;
}

.booking-atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.booking-dedicated-container {
    display: block !important; /* Override .hero-container grid */
    position: relative;
    z-index: 10;
    max-width: 1600px;
    width: 100%;
}

/* Flex layout: text left, calendly pushed right */
.booking-layout-2col {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    align-items: start;
    width: 100%;
}

.booking-intro {
    flex: 0 0 500px;
    padding-right: 0;
}

/* Calendly widget area – flush to right edge */
.booking-calendly-area {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    min-width: 0;
    border-radius: 16px;
    overflow: hidden;
}

.booking-calendly-area .calendly-inline-widget {
    width: 550px;
    margin-left: auto;
}

@media (max-width: 1200px) {
    .booking-layout-2col {
        flex-direction: column;
    }
    .booking-intro {
        flex: 0 0 auto;
    }
}

@media (max-width: 768px) {
    .booking-calendly-area .calendly-inline-widget {
        width: 100%;
    }
}

.sidebar-card {
    padding: 1.5rem !important;
    border-radius: 14px !important;
}

.sidebar-card:hover {
    transform: translateY(-3px);
}

.sidebar-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.sidebar-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--accent-orange);
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.sidebar-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
}

.sidebar-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: 700;
}

.sidebar-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sidebar-detail:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.detail-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.sidebar-faq {
    margin-bottom: 1rem;
}

.sidebar-faq:last-child {
    margin-bottom: 0;
}

.faq-q {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.25rem !important;
}

.faq-a {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0 !important;
}

.booking-trust-notice {
    margin-top: 3rem;
    padding: 2rem;
    border-radius: 12px;
    background: rgba(255, 122, 0, 0.05);
    border: 1px solid rgba(255, 122, 0, 0.15);
}

.booking-trust-notice h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.125rem;
    color: var(--text-main);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
}

.form-group .optional {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 400;
}

.form-input {
    background: rgba(10, 11, 14, 0.6);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-input::placeholder {
    color: rgba(255,255,255,0.2);
}

.form-input:focus {
    outline: none;
    border-color: rgba(255, 122, 0, 0.5);
    background: rgba(10, 11, 14, 0.8);
    box-shadow: 0 0 15px rgba(255, 122, 0, 0.1);
}

textarea.form-input {
    resize: vertical;
    min-height: 100px;
}

.form-divider {
    border: 0;
    height: 1px;
    background: rgba(255,255,255,0.05);
    margin: 1rem 0;
}

.booking-calendar-embed {
    min-height: 380px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    /* This will hold the Calendly iframe later */
}

.embed-placeholder {
    width: 100%;
    height: 100%;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .booking-intro {
        padding-right: 0;
    }
    .booking-form-area {
        padding: 2rem;
    }
    .form-row {
        flex-direction: column;
    }
}
