:root {
    --ink: #f7e7b4;
    --muted: #cbb67a;
    --paper: #050505;
    --surface: #111111;
    --surface-strong: #1a1408;
    --navy: #151515;
    --gold: #b8892d;
    --gold-bright: #f0c96a;
    --black: #010101;
    --line: rgba(240, 201, 106, 0.15);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
    --orange: #e67e22;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, sans-serif;
    font-size: 14px;
    color: var(--ink);
    background: 
        radial-gradient(circle at top, rgba(240, 201, 106, 0.08), transparent 45%),
        radial-gradient(circle at bottom, rgba(184, 137, 45, 0.05), transparent 45%),
        #050505;
    line-height: 1.6;
}

.shell {
    width: min(980px, calc(100% - 32px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.88);
    backdrop-filter: blur(18px);
}

.topbar {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand-mark {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold-bright);
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-webinar {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(240, 201, 106, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold-bright);
    font-weight: 700;
    font-size: 0.85rem;
}

.hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
    padding: 60px 0 80px;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold-bright);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.05;
    margin: 0 0 20px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #fff, var(--gold-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    color: var(--muted);
    font-size: 1.1rem;
    margin: 0 0 30px;
    max-width: 600px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    box-shadow: 0 12px 24px rgba(184, 137, 45, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Eye-catching pulse animation for Demo buttons */
.btn-demo-trigger {
    animation: btnPulseGlow 2s infinite ease-in-out;
}

.cta-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 16px 32px rgba(184, 137, 45, 0.5);
    animation: none; /* Pause animation on hover */
}

@keyframes btnPulseGlow {
    0% {
        transform: scale(1);
        box-shadow: 0 12px 24px rgba(184, 137, 45, 0.3), 0 0 0 0 rgba(240, 201, 106, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 16px 32px rgba(184, 137, 45, 0.5), 0 0 0 10px rgba(240, 201, 106, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 12px 24px rgba(184, 137, 45, 0.3), 0 0 0 0 rgba(240, 201, 106, 0);
    }
}

.hero-panel {
    display: flex;
    justify-content: center;
    position: relative;
}

.energy-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 201, 106, 0.12) 0%, transparent 70%);
    border: 1px dashed rgba(240, 201, 106, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotateCircle 20s linear infinite;
}

.energy-circle-inner {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid rgba(240, 201, 106, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.energy-core {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-bright), var(--gold));
    box-shadow: 0 0 40px rgba(240, 201, 106, 0.6);
}

@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Feature Grid */
.section {
    padding: 80px 0;
    border-top: 1px solid var(--line);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: #fff;
    margin: 10px 0;
}

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

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.card-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    background: rgba(240, 201, 106, 0.08);
    border-radius: 50%;
    padding: 12px;
}

.card h3 {
    font-size: 1.3rem;
    color: var(--gold-bright);
    margin: 0 0 12px;
}

.card p {
    color: var(--muted);
    margin: 0;
    font-size: 0.95rem;
}

/* Categories Section Grid Layout */
.categories-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.category-block {
    background: rgba(26, 20, 8, 0.35);
    border: 1px solid rgba(240, 201, 106, 0.25);
    border-radius: 18px;
    padding: 24px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.category-block-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 12px;
}

.category-badge-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.category-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--gold-bright);
    letter-spacing: 0.02em;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-item-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-num-badge {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(240, 201, 106, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold-bright);
    font-size: 0.75rem;
    font-weight: 700;
    display: grid;
    place-items: center;
}

.feature-item-title {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
}

/* Specialist Section */
.profile-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: center;
}

.profile-img-wrap {
    border: 1px solid var(--gold);
    border-radius: 50%;
    padding: 10px;
    background: var(--surface-strong);
    width: 300px;
    height: 300px;
    overflow: hidden;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.profile-details h2 {
    font-size: 2.2rem;
    margin: 0 0 6px;
    color: #fff;
}

.profile-details h3 {
    font-size: 1.2rem;
    color: var(--gold-bright);
    margin: 0 0 20px;
    font-weight: 500;
}

.profile-details p {
    color: var(--muted);
    font-size: 1.05rem;
    margin: 0 0 20px;
}

/* Testimonials */
.testimonials-section {
    background: radial-gradient(circle at center, rgba(18,18,18,0.8), #050505);
}

.testimonial-card {
    background: rgba(17, 17, 17, 0.6);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.rating {
    color: var(--gold-bright);
    margin-bottom: 12px;
}

.testimonial-card h4 {
    font-size: 1.15rem;
    margin: 0 0 8px;
    color: #fff;
}

.testimonial-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0 0 16px;
}

.client-info {
    font-weight: 700;
    color: var(--gold-bright);
    font-size: 0.9rem;
}

.client-info span {
    color: var(--muted);
    font-weight: 400;
}

/* FAQ Section */
.faq-accordion {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    overflow: hidden;
}

.faq-question-btn {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 18px 24px;
    text-align: left;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease-out;
}

.faq-answer-content {
    padding: 0 24px 20px;
    color: var(--muted);
    font-size: 0.98rem;
}

/* Lead Form */
.form-section {
    max-width: 600px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.lead-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-weight: 600;
}

.lead-form input, .lead-form select {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #1b1b1b;
    color: #fff;
    padding: 0 14px;
    outline: none;
    margin-bottom: 20px;
}

.lead-form input:focus, .lead-form select:focus {
    border-color: var(--gold-bright);
}

.submit-btn {
    width: 100%;
    min-height: 46px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    cursor: pointer;
}

.form-message {
    margin-top: 15px;
    text-align: center;
    font-weight: 700;
}

.form-message.is-success {
    color: var(--gold-bright);
}

.form-message.is-error {
    color: #ff4d4d;
}

.site-footer {
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

/* Custom Ability Card Style matching Testimonials */
.ability-card {
    background: rgba(17, 17, 17, 0.6);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: transform 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
}

.ability-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.ability-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ability-card-header-title {
    display: none; /* Hide top duplicated title since layout is flat now */
}

.ability-card-img-wrap {
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    object-fit: contain;
    margin-bottom: 20px;
    border: 1px solid var(--line);
}

.ability-card-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.ability-card-body {
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ability-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffffff;
}

.ability-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--muted);
}

@media (max-width: 900px) {
    .hero, .grid-3, .profile-wrapper, .categories-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-panel {
        order: -1;
    }
}

/* Free Live Demo Non-Clickable Blinking Badge */
.demo-ticker-wrap {
    background: #0d0d0d;
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-ticker-badge {
    background: #ff0000; /* Red color background */
    color: #ffffff;      /* White text color */
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 20px;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
    user-select: none;
    pointer-events: none; /* Non-clickable */
    animation: demoBlink 1.5s infinite ease-in-out;
}

@keyframes demoBlink {
    0% {
        opacity: 0.6;
        transform: scale(0.96);
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
    }
    50% {
        opacity: 1;
        transform: scale(1.04);
        box-shadow: 0 0 25px rgba(255, 0, 0, 0.9);
    }
    100% {
        opacity: 0.6;
        transform: scale(0.96);
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
    }
}
