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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
    cursor: default;
    line-height: 1.6;
}

/* Global Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== HEADER ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    flex-shrink: 0;
}

.site-logo {
    height: 50px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.site-logo:hover {
    opacity: 0.8;
}

.header-nav {
    display: flex;
    align-items: center;
}

.header-cta {
    padding: 0.8rem 2rem;
    background: #1ba5ff;
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.header-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(27, 165, 255, 0.3);
}

.blue-gradient {
    background: linear-gradient(135deg, #1ba5ff 0%, #0d87cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Global Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* ========== SECTION 1: HERO ========== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center top, #1a1a1a 0%, #0a0a0a 100%);
    overflow: hidden;
    padding-top: 80px; /* Account for fixed header */
}

.ideas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.idea {
    position: absolute;
    font-size: 2rem;
    opacity: 0;
    animation: float-and-die 12s ease-out infinite;
}

.idea-bulb {
    filter: grayscale(0.7);
}

@keyframes float-and-die {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0.8);
    }
    20% {
        opacity: 0.6;
        transform: translateY(70vh) scale(1);
    }
    50% {
        opacity: 0.4;
        transform: translateY(40vh) scale(1);
    }
    80% {
        opacity: 0.1;
        transform: translateY(10vh) scale(0.9);
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(0.7);
    }
}

.idea:nth-child(1) { left: 10%; animation-delay: 0s; }
.idea:nth-child(2) { left: 25%; animation-delay: 2s; }
.idea:nth-child(3) { left: 5%; animation-delay: 4s; }
.idea:nth-child(4) { left: 55%; animation-delay: 1s; }
.idea:nth-child(5) { left: 70%; animation-delay: 3s; }
.idea:nth-child(6) { left: 95%; animation-delay: 5s; }
.idea:nth-child(7) { left: 15%; animation-delay: 6s; }
.idea:nth-child(8) { left: 60%; animation-delay: 7s; }
.idea:nth-child(9) { left: 2%; animation-delay: 8s; }
.idea:nth-child(10) { left: 75%; animation-delay: 9s; }

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s ease-out 0.5s forwards;
}

.dying-text {
    background: linear-gradient(180deg, #fff 0%, #666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.hero-subtitle strong {
    color: #fff;
    font-weight: 500;
}

.hero-emphasis {
    font-size: 1.8rem;
    color: #1ba5ff;
    margin-top: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.1s forwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1s ease-out 2s forwards;
}

.scroll-dot {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-dot:hover {
    border-color: #1ba5ff;
}

.scroll-dot::before {
    content: '';
    width: 4px;
    height: 8px;
    background: #1ba5ff;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.5;
}

.idea-text {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 1rem;
    color: #666;
}

.idea-emoji {
    font-size: 2.5rem;
}

/* ========== SECTION 2: PROBLEM RECOGNITION ========== */
.problem-intro-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f0f0f;
    padding: 4rem 2rem;
}

.problem-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 4rem 2rem;
}

.problem-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.problem-intro p {
    font-size: 1.3rem;
    color: #999;
    margin-bottom: 1rem;
}

.highlight-text {
    color: #fff;
    font-weight: 500;
}

/* Brain Blank Test */
.brain-blank-test {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.test-header {
    text-align: center;
    margin-bottom: 3rem;
}

.test-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1ba5ff;
}

.test-subtitle {
    font-size: 1.2rem;
    color: #999;
}

.expertise-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.expertise-btn {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.expertise-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.expertise-btn.selected {
    background: rgba(27, 165, 255, 0.1);
    border-color: #1ba5ff;
}

.expertise-label {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.expertise-desc {
    font-size: 0.9rem;
    color: #888;
}

.test-interface {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.test-interface.active {
    display: block;
}

.test-prompt {
    background: rgba(27, 165, 255, 0.05);
    border-left: 4px solid #1ba5ff;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
}

.prompt-text {
    font-size: 1.3rem;
    color: #1ba5ff;
    margin-bottom: 0.5rem;
}

.prompt-context {
    color: #999;
}

.timer-container {
    text-align: center;
    margin-bottom: 2rem;
}

.timer {
    font-size: 3rem;
    font-weight: 200;
    color: #1ba5ff;
    font-variant-numeric: tabular-nums;
}

.timer.warning {
    color: #ff6b6b;
    animation: pulse 1s ease-in-out infinite;
}

.explanation-area {
    width: 100%;
    min-height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    color: #fff;
    font-size: 1.1rem;
    resize: none;
    transition: all 0.3s ease;
}

.explanation-area:focus {
    outline: none;
    border-color: #1ba5ff;
    background: rgba(255, 255, 255, 0.08);
}

.explanation-area.struggling {
    border-color: #ff6b6b;
    animation: shake 0.5s ease-in-out;
}

.test-results {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.test-results.active {
    display: block;
}

.result-header {
    text-align: center;
    margin-bottom: 3rem;
}

.result-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ff6b6b;
}

.result-subtitle {
    font-size: 1.3rem;
    color: #999;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
}

.comparison-card.visible {
    animation: slideInUp 0.5s ease-out forwards;
}

.comparison-card.what-you-think {
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.comparison-card.what-you-do {
    border: 1px solid rgba(27, 165, 255, 0.3);
}

.card-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.card-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.hidden-item {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.hidden-item::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1ba5ff;
}

.insight-box {
    background: rgba(27, 165, 255, 0.1);
    border: 1px solid rgba(27, 165, 255, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
}

.insight-box.visible {
    animation: slideInUp 0.5s ease-out 1s forwards;
}

.insight-text {
    font-size: 1.3rem;
    color: #1ba5ff;
    margin-bottom: 1rem;
}

/* ========== SECTION 2C: AUTHORITY BUILDER ========== */
.authority-section {
    min-height: 100vh;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
}

.testimonials-carousel {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 400px;
}

.testimonial-track {
    position: relative;
    height: 100%;
}

.testimonial-card {
    display: none;
    padding: 4rem 3rem;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-card.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.quote-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 2.5rem;
    font-style: italic;
    position: relative;
}

.quote-text::before {
    content: '"';
    font-size: 4rem;
    color: #1ba5ff;
    position: absolute;
    top: -1rem;
    left: -2rem;
    opacity: 0.3;
}

.quote-text::after {
    content: '"';
    font-size: 4rem;
    color: #1ba5ff;
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1ba5ff 0%, #0d87cc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-weight: bold;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 1.3rem;
    color: #1ba5ff;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.author-title {
    font-size: 1rem;
    color: #999;
    line-height: 1.4;
}

.video-container-carousel {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    max-width: 600px;
    margin: 0 auto 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-container-carousel iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(27, 165, 255, 0.1);
    border: 2px solid #1ba5ff;
    color: #1ba5ff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #1ba5ff;
    color: #0a0a0a;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.carousel-dots {
    display: flex;
    gap: 0.8rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #1ba5ff;
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: #1ba5ff;
    opacity: 0.8;
}

/* Mobile Responsive for Authority Section */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 3rem 2rem;
    }
    
    .quote-text {
        font-size: 1.1rem;
    }
    
    .quote-text::before,
    .quote-text::after {
        font-size: 3rem;
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .author-name {
        font-size: 1.1rem;
    }
    
    .author-title {
        font-size: 0.9rem;
    }
    
    .carousel-controls {
        gap: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* ========== SECTION 3: PATTERN DISCOVERY ========== */
.pattern-section {
    min-height: 100vh;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.value-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    display: inline-block;
}

.value-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.value-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1ba5ff;
    font-size: 1.5rem;
}

.pattern-demo {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.demo-features {
    list-style: none;
    text-align: left;
    max-width: 700px;
    margin: 2rem auto 3rem;
}

.demo-features li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #ccc;
    font-size: 1.1rem;
}

.demo-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1ba5ff;
    font-size: 1.5rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto 3rem;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.video-caption {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: rgba(27, 165, 255, 0.05);
    border-left: 4px solid #1ba5ff;
    border-radius: 0 10px 10px 0;
}

.caption-text {
    color: #ccc;
    line-height: 1.6;
    font-size: 1.1rem;
}

.extraction-results {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.result-stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    min-width: 150px;
}

.stat-number {
    font-size: 3rem;
    color: #1ba5ff;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #999;
    font-size: 1rem;
}

.result-arrow {
    font-size: 2rem;
    color: #1ba5ff;
}

.demo-header {
    text-align: center;
    margin-bottom: 3rem;
}

.demo-title {
    font-size: 2rem;
    color: #1ba5ff;
    margin-bottom: 1rem;
}

.demo-subtitle {
    color: #999;
    font-size: 1.1rem;
}

.expertise-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

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

.filter-btn.active {
    background: rgba(27, 165, 255, 0.15);
    border-color: #1ba5ff;
    color: #1ba5ff;
}

.conversation-display {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    font-family: 'Monaco', 'Courier New', monospace;
    position: relative;
    overflow: hidden;
}

.conversation-line {
    margin: 1rem 0;
    padding: 0.5rem 0;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

.speaker {
    font-weight: bold;
    color: #1ba5ff;
}

.dialogue {
    color: #ddd;
    line-height: 1.6;
}

.pattern-highlight {
    background: transparent;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 2px 4px;
    border-radius: 3px;
}

.pattern-highlight.revealed {
    background: rgba(27, 165, 255, 0.2);
    color: #fff;
}

.pattern-tag {
    position: absolute;
    top: -30px;
    left: 0;
    background: #1ba5ff;
    color: #0a0a0a;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 10;
}

.pattern-highlight.revealed .pattern-tag {
    opacity: 1;
    transform: translateY(0);
}

.pattern-analysis {
    margin-top: 3rem;
}

.pattern-analysis.visible {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.analysis-header {
    text-align: center;
    margin-bottom: 2rem;
}

.analysis-title {
    font-size: 2rem;
    color: #1ba5ff;
    margin-bottom: 0.5rem;
}

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

.pattern-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.5s ease-out forwards;
}

.pattern-card:nth-child(1) { animation-delay: 0.1s; }
.pattern-card:nth-child(2) { animation-delay: 0.2s; }
.pattern-card:nth-child(3) { animation-delay: 0.3s; }
.pattern-card:nth-child(4) { animation-delay: 0.4s; }

.pattern-type {
    font-size: 0.9rem;
    color: #1ba5ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.pattern-name {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.pattern-description {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
}

.framework-preview {
    background: rgba(27, 165, 255, 0.05);
    border: 2px solid rgba(27, 165, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(20px);
}

.framework-preview.visible {
    animation: slideInUp 0.5s ease-out 0.5s forwards;
}

.framework-title {
    font-size: 1.8rem;
    color: #1ba5ff;
    margin-bottom: 1rem;
}

.framework-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.framework-step {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    min-width: 150px;
    position: relative;
}

.framework-step::after {
    content: '→';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #1ba5ff;
    font-size: 1.5rem;
}

.framework-step:last-child::after {
    display: none;
}

.step-number {
    font-size: 2rem;
    color: #1ba5ff;
    font-weight: bold;
}

.step-label {
    font-size: 0.9rem;
    color: #999;
    margin-top: 0.5rem;
}

.reveal-btn {
    display: block;
    margin: 2rem auto;
    padding: 1rem 3rem;
    background: #1ba5ff;
    color: #0a0a0a;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse-glow 2s ease-in-out infinite;
    position: relative;
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(27, 165, 255, 0.5), 0 10px 30px rgba(27, 165, 255, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(27, 165, 255, 0.8), 0 0 60px rgba(27, 165, 255, 0.5);
        transform: scale(1.02);
    }
}

.reveal-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(27, 165, 255, 0.9), 0 15px 40px rgba(27, 165, 255, 0.4);
    animation: none;
}

.reveal-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    animation: none;
}

.reveal-hint {
    text-align: center;
    color: #999;
    margin-bottom: 1rem;
    font-style: italic;
    font-size: 1.1rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.5s forwards;
}

.value-statement {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.value-statement.visible {
    animation: fadeIn 1s ease-out forwards;
}

.value-text {
    font-size: 1.5rem;
    color: #1ba5ff;
    margin-bottom: 1rem;
}

.value-subtext {
    color: #999;
    font-size: 1.1rem;
}

/* Pattern Interactive Styles */
.pattern-interactive {
    margin-top: 5rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.conversation-container {
    margin-top: 2rem;
}

.conversation-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: #999;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.filter-btn.active {
    background: #1ba5ff;
    color: #0a0a0a;
    border-color: #1ba5ff;
}

.conversation-display {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    min-height: 300px;
    font-family: 'Courier New', monospace;
}

.conversation-line {
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
    line-height: 1.6;
}

.speaker {
    font-weight: bold;
    color: #1ba5ff;
    margin-right: 0.5rem;
}

.pattern-highlight {
    background: transparent;
    border-bottom: 2px dashed rgba(27, 165, 255, 0.3);
    position: relative;
    cursor: help;
    transition: all 0.3s ease;
}

.pattern-highlight.revealed {
    background: rgba(27, 165, 255, 0.2);
    border-bottom-color: #1ba5ff;
    padding: 2px 4px;
    border-radius: 3px;
}

.pattern-tag {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #1ba5ff;
    color: #0a0a0a;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    white-space: nowrap;
    animation: fadeIn 0.3s ease-out;
    z-index: 10;
}

.pattern-tag::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #1ba5ff;
}

.patterns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.pattern-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    opacity: 0;
    animation: fadeInScale 0.5s ease-out forwards;
}

.pattern-card:nth-child(1) { animation-delay: 0.1s; }
.pattern-card:nth-child(2) { animation-delay: 0.2s; }
.pattern-card:nth-child(3) { animation-delay: 0.3s; }
.pattern-card:nth-child(4) { animation-delay: 0.4s; }

.pattern-type {
    color: #1ba5ff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.pattern-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #fff;
}

.pattern-description {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.5;
}

.framework-preview {
    background: rgba(27, 165, 255, 0.05);
    border: 2px solid rgba(27, 165, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    opacity: 0;
    transition: all 0.5s ease;
}

.framework-preview.visible {
    opacity: 1;
    animation: fadeInUp 0.5s ease-out;
}

.framework-visual {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    position: relative;
}

.framework-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #1ba5ff, transparent);
    z-index: 0;
}

.framework-step {
    background: #0a0a0a;
    border: 2px solid #1ba5ff;
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeInScale 0.5s ease-out forwards;
}

.framework-step:nth-child(1) { animation-delay: 0.1s; }
.framework-step:nth-child(2) { animation-delay: 0.2s; }
.framework-step:nth-child(3) { animation-delay: 0.3s; }
.framework-step:nth-child(4) { animation-delay: 0.4s; }

.step-number {
    font-size: 2rem;
    font-weight: bold;
    color: #1ba5ff;
    margin-bottom: 0.5rem;
}

.step-label {
    font-size: 0.9rem;
    color: #fff;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Early CTA Styles */
.early-cta-container {
    margin-top: 3rem;
    padding: 2.5rem;
    background: rgba(27, 165, 255, 0.08);
    border: 2px solid rgba(27, 165, 255, 0.3);
    border-radius: 20px;
    text-align: center;
    animation: pulse-border 3s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% { border-color: rgba(27, 165, 255, 0.3); }
    50% { border-color: rgba(27, 165, 255, 0.6); }
}

.early-cta-text {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.early-cta-button {
    display: inline-block;
    padding: 1.3rem 3rem;
    background: #1ba5ff;
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(27, 165, 255, 0.3);
}

.early-cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(27, 165, 255, 0.4);
}

.early-cta-subtext {
    margin-top: 1rem;
    color: #ccc;
    font-size: 0.95rem;
}

/* ========== SECTION 4: AUTHORITY PIPELINE ========== */
.pipeline-section {
    min-height: 100vh;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
}

.emphasis-text {
    font-size: 1.5rem;
    color: #1ba5ff;
    margin: 2rem 0;
    font-weight: 500;
}

.pipeline-visualizer {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.visualizer-header {
    text-align: center;
    margin-bottom: 3rem;
}

.visualizer-title {
    font-size: 2rem;
    color: #1ba5ff;
    margin-bottom: 1rem;
}

.pipeline-container {
    position: relative;
    margin: 0 0 3rem 0;
    padding: 2rem 0;
}

.pipeline-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 2rem;
}

.connection-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
    z-index: 1;
}

.connection-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #1ba5ff 0%, #0d87cc 100%);
    width: 0;
    transition: width 2s ease-out;
    box-shadow: 0 0 20px rgba(27, 165, 255, 0.5);
}

.pipeline-stage {
    flex: 1;
    position: relative;
    z-index: 2;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
}

.pipeline-stage.active {
    animation: stageReveal 0.6s ease-out forwards;
}

@keyframes stageReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stage-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: #0a0a0a;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 3;
}

.stage-icon:hover {
    transform: scale(1.05);
    background: #0a0a0a;
    border-color: #1ba5ff;
    box-shadow: 0 0 20px rgba(27, 165, 255, 0.3);
}

.stage-icon.completed {
    background: #0a0a0a;
    border-color: #1ba5ff;
    box-shadow: 0 0 30px rgba(27, 165, 255, 0.3);
}

.stage-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: #1ba5ff;
    color: #0a0a0a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.stage-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.stage-subtitle {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 1rem;
}

.stage-details {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.pipeline-stage.active .stage-details {
    max-height: 300px;
}

.detail-list {
    list-style: none;
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.8;
}

.detail-list li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #ccc;
}

.detail-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1ba5ff;
}

.pipeline-controls {
    text-align: center;
    margin-bottom: 3rem;
}

.control-btn {
    padding: 1rem 2.5rem;
    background: #1ba5ff;
    color: #0a0a0a;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

#startBtn {
    animation: pulse-glow 2s ease-in-out infinite;
}

.control-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(27, 165, 255, 0.3);
    animation: none;
}

.control-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.results-display {
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(27, 165, 255, 0.05);
    border: 1px solid rgba(27, 165, 255, 0.2);
    border-radius: 15px;
    text-align: center;
    display: none;
}

.results-display.visible {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.results-title {
    font-size: 1.8rem;
    color: #1ba5ff;
    margin-bottom: 1rem;
}

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

.result-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-align: center;
}

.result-number {
    font-size: 2.5rem;
    color: #1ba5ff;
    font-weight: bold;
}

.result-label {
    font-size: 0.9rem;
    color: #999;
    margin-top: 0.5rem;
}

.quote-box {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #1ba5ff;
    padding: 2rem;
    margin: 3rem 0;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
}

.quote-box.visible {
    animation: slideInUp 0.5s ease-out forwards;
}

.quote-author {
    font-style: normal;
    font-size: 1rem;
    color: #999;
    margin-top: 1rem;
}

.value-prop {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    opacity: 0;
}

.value-prop.visible {
    animation: fadeIn 1s ease-out forwards;
}

.value-prop-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.value-prop-text {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
}

/* ========== SECTION 5: SOLUTION ========== */
.solution-section {
    min-height: 100vh;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(27, 165, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27, 165, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.5;
}

.phases-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.phase-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    transition: all 0.3s ease;
}

.phase-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(27, 165, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.phase-number {
    position: absolute;
    top: -20px;
    left: 30px;
    background: #1ba5ff;
    color: #0a0a0a;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.phase-logo {
    margin-bottom: 1.5rem;
    text-align: center;
}

.phase-logo-img {
    height: 80px;
    width: auto;
    max-width: 200px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.phase-card:hover .phase-logo-img {
    opacity: 1;
}

.phase-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #1ba5ff;
}

.phase-price {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.phase-subtitle {
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.phase-features {
    list-style: none;
}

.phase-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.phase-features li:last-child {
    border-bottom: none;
}

.phase-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1ba5ff;
    font-weight: bold;
}

.why-works {
    background: rgba(27, 165, 255, 0.05);
    border: 1px solid rgba(27, 165, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.why-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1ba5ff;
}

.why-content {
    max-width: 800px;
    margin: 0 auto;
}

.why-text {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.foundation-visual {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin: 3rem 0;
}

.foundation-block {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-align: center;
}

.foundation-block.without {
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.foundation-block.with {
    border: 1px solid rgba(27, 165, 255, 0.3);
}

.vs-divider {
    font-size: 2rem;
    color: #666;
    font-weight: 300;
}

.block-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.block-result {
    font-size: 1rem;
    color: #999;
}

.process-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.process-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.process-arrow {
    color: #1ba5ff;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.process-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

.strategic-test {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.7s forwards;
}

.test-title {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.test-timeline {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 3rem auto;
    position: relative;
}

.test-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.month-milestone {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.month-dot {
    width: 60px;
    height: 60px;
    background: #0a0a0a;
    border: 2px solid #1ba5ff;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #1ba5ff;
}

.month-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1ba5ff;
}

.month-desc {
    font-size: 0.9rem;
    color: #999;
    max-width: 200px;
    margin: 0 auto;
}

/* CTA */
.cta-container {
    text-align: center;
    margin-top: 4rem;
}

.cta-button {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: #1ba5ff;
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(27, 165, 255, 0.3);
}

.guarantee-text {
    font-size: 1rem;
    color: #999;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== TESTIMONIAL SECTION ========== */
.testimonial-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    position: relative;
}

.testimonial-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

.testimonial-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.testimonial-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.6;
}

.testimonial-video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    max-width: 800px;
    margin: 0 auto 4rem;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: #000;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.testimonial-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.testimonial-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.highlight-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(27, 165, 255, 0.3);
    transform: translateY(-3px);
}

.highlight-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.highlight-text {
    color: #ccc;
    line-height: 1.6;
}

.highlight-text strong {
    color: #1ba5ff;
    display: block;
    margin-bottom: 0.5rem;
}

/* ========== SECTION 6: QUALIFICATION ========== */
.qualification-section {
    min-height: 100vh;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
}

.qualification-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.qualification-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.qualification-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(27, 165, 255, 0.3);
    transform: translateY(-3px);
}

.check-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(27, 165, 255, 0.15);
    border: 2px solid #1ba5ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #1ba5ff;
    font-size: 1.3rem;
}

.qualification-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
}

.different-section {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.different-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1ba5ff;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.difference-card:nth-child(1),
.difference-card:nth-child(2) {
    grid-column: span 3;
}

.difference-card:nth-child(3),
.difference-card:nth-child(4),
.difference-card:nth-child(5) {
    grid-column: span 2;
}

.difference-card {
    padding: 2rem;
    background: rgba(27, 165, 255, 0.05);
    border: 1px solid rgba(27, 165, 255, 0.2);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.difference-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(27, 165, 255, 0.2);
}

.difference-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.difference-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1ba5ff;
}

.difference-card p {
    color: #999;
    line-height: 1.6;
}

/* ========== SECTION 7: INVESTMENT ========== */
.investment-section {
    min-height: 100vh;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
    position: relative;
}

.investment-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto 5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.investment-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
}

.investment-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.investment-card.featured {
    border-color: rgba(27, 165, 255, 0.3);
    background: rgba(27, 165, 255, 0.05);
}

.investment-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1ba5ff;
}

.investment-price {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.investment-subtitle {
    color: #999;
    font-size: 1.1rem;
}

.simple-truth {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.truth-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1ba5ff;
}

.truth-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #ccc;
}

.truth-text.emphasis {
    font-size: 1.5rem;
    color: #fff;
}

.truth-divider {
    width: 100px;
    height: 2px;
    background: rgba(27, 165, 255, 0.3);
    margin: 3rem auto;
}

.truth-statement {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #fff;
}

.truth-statement.emphasis {
    color: #1ba5ff;
    font-size: 1.6rem;
}

/* ========== SECTION 8: FINAL CTA ========== */
.final-cta-section {
    min-height: 100vh;
    padding: 5rem 2rem;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a0a 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.final-cta-button {
    display: inline-block;
    padding: 2rem 5rem;
    background: #1ba5ff;
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 60px;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
    box-shadow: 0 20px 40px rgba(27, 165, 255, 0.3);
}

.final-cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(27, 165, 255, 0.4);
}

.after-booking {
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.after-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1ba5ff;
}

.after-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.after-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    text-align: left;
}

.after-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: rgba(27, 165, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1ba5ff;
    font-weight: bold;
}

.after-item p {
    color: #ccc;
    line-height: 1.5;
}

.final-statement {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.footer-contact {
    margin-bottom: 2rem;
}

.footer-name {
    font-size: 1.8rem;
    color: #1ba5ff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
}

.contact-link:hover {
    color: #1ba5ff;
    background: rgba(27, 165, 255, 0.1);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 1.3rem;
}

.footer-divider {
    width: 100px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 2rem auto;
}

.footer-bottom {
    opacity: 0.7;
}

.footer-text {
    color: #999;
    font-size: 0.95rem;
    margin: 0.3rem 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .site-header {
        padding: 0.8rem 0;
    }
    
    .site-logo {
        height: 40px;
    }
    
    .header-cta {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-emphasis {
        font-size: 1.5rem;
    }

    .idea {
        font-size: 1.5rem;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .problem-intro p {
        font-size: 1.1rem;
    }

    .expertise-selector {
        grid-template-columns: 1fr;
    }

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

    .brain-blank-test {
        padding: 2rem 1.5rem;
    }

    .timer {
        font-size: 2.5rem;
    }

    .pattern-demo {
        padding: 2rem 1.5rem;
    }

    .conversation-display {
        padding: 1.5rem;
        font-size: 0.9rem;
    }

    .expertise-filter {
        justify-content: center;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .framework-visual {
        flex-direction: column;
        gap: 1rem;
    }

    .framework-step::after {
        display: none;
    }

    .framework-step {
        width: 100%;
    }

    .phases-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .phase-card {
        padding: 2rem;
    }

    .phase-price {
        font-size: 2rem;
    }

    .foundation-visual {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .vs-divider {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    .process-list {
        grid-template-columns: 1fr;
    }

    .test-timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .test-timeline::before {
        display: none;
    }

    .why-works {
        padding: 2rem 1.5rem;
    }

    .strategic-test {
        padding: 2rem 1.5rem;
    }

    .pipeline-flow {
        flex-direction: column;
        gap: 3rem;
    }

    .connection-line {
        width: 4px;
        height: 100%;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }

    .connection-progress {
        width: 100%;
        height: 0;
    }

    .stage-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .pipeline-visualizer {
        padding: 2rem 1.5rem;
    }

    .control-btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }

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

    .difference-grid {
        grid-template-columns: 1fr;
    }
    
    .difference-card:nth-child(1),
    .difference-card:nth-child(2),
    .difference-card:nth-child(3),
    .difference-card:nth-child(4),
    .difference-card:nth-child(5) {
        grid-column: span 1;
    }

    .investment-cards {
        grid-template-columns: 1fr;
    }

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

    .final-cta-button {
        padding: 1.5rem 3rem;
        font-size: 1.3rem;
    }

    .truth-text {
        font-size: 1.1rem;
    }

    .truth-text.emphasis {
        font-size: 1.3rem;
    }

    .final-statement {
        font-size: 1.2rem;
    }
    
    .footer {
        padding: 2.5rem 1.5rem;
    }
    
    .footer-name {
        font-size: 1.5rem;
    }
    
    .contact-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-link {
        font-size: 1rem;
    }

    .video-container {
        max-width: 100%;
        margin: 0 auto 2rem;
    }

    .extraction-results {
        flex-direction: column;
        gap: 1rem;
    }

    .result-arrow {
        transform: rotate(90deg);
    }

    .testimonial-video-container {
        max-width: 100%;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
    }

    .testimonial-highlights {
        grid-template-columns: 1fr;
    }

    .highlight-card {
        flex-direction: column;
        text-align: center;
    }

    .demo-features {
        padding: 0 1rem;
    }

    .testimonial-title {
        font-size: 2rem;
    }

    .testimonial-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
}