/* ==========================================================================
   Home Page Specific Styles
   Imports all component styles and adds page-specific overrides
   ========================================================================== */

/* Import Component Styles */
@import '../components/hero.css';
@import '../components/navigation.css';
@import '../components/cards.css';
@import '../components/sections.css';
@import '../components/faq.css';
@import '../components/cta.css';

/* ==========================================================================
   Page-Level Utilities
   ========================================================================== */

/* Prevent horizontal scroll on mobile */
html, body {
    overflow-x: hidden;
    width: 100%;
}

img, svg, video {
    max-width: 100%;
    height: auto;
}

/* Text Wrapping for Mobile */
h1, h2, h3, p, .hero-subheadline, .section-intro {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* ==========================================================================
   Enhanced Focus States (Accessibility)
   ========================================================================== */

a:focus,
button:focus {
    outline: 2px solid var(--pink);
    outline-offset: 2px;
}

.btn-primary:focus {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Section Labels */
.section-label {
    position: relative;
    display: block;
    text-align: center;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--pink);
    transition: width 0.6s ease;
}

.section-label.visible::after {
    width: 60px;
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-soft) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   Direct Response Typography - Bold & Emphasis Optimization
   ========================================================================== */

/* Strong text - higher contrast for key conversion points */
strong {
    font-weight: 600;
    color: var(--white);
}

/* Emphasized text - subtle distinction for emotional beats */
em {
    font-style: italic;
    color: var(--gray-200);
}

/* Strong inside paragraphs with gray text should pop */
p strong,
.stack-card-desc strong,
.engine-desc-v2 strong,
.diff-item p strong,
.guarantee-item strong,
.cta-desc strong {
    color: var(--white);
    font-weight: 600;
}

/* Italics for conversational/emotional emphasis */
p em,
.stack-card-desc em,
.engine-desc-v2 em,
.diff-item p em,
.cta-desc em {
    font-style: italic;
    color: var(--gray-200);
}

/* Hero subheadline emphasis */
.hero-subheadline strong {
    color: var(--white);
    font-weight: 600;
}

.hero-subheadline em {
    color: var(--pink);
    font-style: italic;
}

/* Pull quote emphasis */
.pull-quote strong {
    color: var(--white);
}

.pull-quote em {
    color: var(--pink);
}

/* Aspiration section emphasis */
.aspiration-lead em {
    color: var(--pink);
}

/* Highlight class for pink accent text in headlines */
h1 .highlight,
h2 .highlight,
.aspiration-headline .highlight,
.problem-headline .highlight,
.guarantee-headline .highlight,
.cta-title .highlight {
    color: var(--pink);
}

/* Parallax Effect for Sections */
.section-parallax {
    transform: translateZ(0);
    will-change: transform;
}

/* ==========================================================================
   Touch Target Optimization
   ========================================================================== */

@media (hover: none) and (pointer: coarse) {
    .btn-primary,
    .nav-cta,
    .sticky-nav-link,
    .sticky-nav-cta,
    .back-to-top,
    .faq-question {
        min-height: 44px;
        min-width: 44px;
    }

    .radio-card-content {
        min-height: 60px;
        display: flex;
        align-items: center;
    }

    .engine-card,
    .testimonial-card,
    .differentiation-card,
    .criteria-card {
        cursor: pointer;
    }
}

/* ==========================================================================
   Reduced Motion Support
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================================================
   iOS Text Sizing Fix
   ========================================================================== */

@supports (-webkit-touch-callout: none) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="url"],
    textarea,
    select {
        font-size: 16px !important;
    }
}

/* ==========================================================================
   Modal Mobile Optimizations (Page-Level Overrides)
   ========================================================================== */

@media (max-width: 600px) {
    .modal-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .modal {
        max-width: 100%;
        max-height: 95vh;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
    }

    .modal-overlay.active .modal {
        transform: translateY(0);
    }

    .modal-close {
        top: 16px;
        right: 16px;
        width: 32px;
        height: 32px;
    }

    .form-container {
        padding: 24px 20px 32px;
        min-height: auto;
    }

    .step-header h3 {
        font-size: 1.3rem;
    }

    .step-header p {
        font-size: 0.9rem;
    }

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

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

    .radio-card-content {
        padding: 14px;
    }

    .form-nav {
        flex-direction: column-reverse;
        gap: 12px;
        margin-top: 32px;
    }

    .btn-next,
    .btn-submit,
    .btn-back {
        width: 100%;
        justify-content: center;
    }

    .field-group input,
    .field-group textarea,
    .field-group select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

@media (max-width: 400px) {
    .modal {
        max-height: 100vh;
        border-radius: 0;
    }

    .form-container {
        padding: 20px 16px 28px;
    }

    .step-header h3 {
        font-size: 1.2rem;
    }

    .step-indicators {
        padding: 20px 20px 0;
    }
}

/* ==========================================================================
   Divider Responsive
   ========================================================================== */

@media (max-width: 600px) {
    .divider {
        margin: 30px 0;
    }
}

/* ==========================================================================
   Container Responsive Overrides
   ========================================================================== */

@media (max-width: 900px) {
    .container {
        padding: 0 20px;
    }

    .section-intro {
        font-size: 1rem;
        margin-bottom: 32px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 16px;
    }

    h2 {
        font-size: 1.75rem;
        margin-bottom: 16px;
        text-align: center;
    }

    .section-label {
        font-size: 0.7rem;
        margin-bottom: 12px;
        text-align: center;
        display: block;
    }

    .section-intro {
        font-size: 0.95rem;
        margin-bottom: 28px;
        text-align: center;
    }
    
    /* Center all major section headlines on mobile */
    .problem-headline,
    .aspiration-headline,
    .guarantee-headline,
    .cta-title,
    .speed-headline {
        text-align: center;
    }
    
    /* Center problem/solution content text on mobile */
    .problem-content,
    .solution-content {
        text-align: center;
    }
    
    .problem-lead,
    .aspiration-lead {
        text-align: center;
    }
    
    /* Center problem closing section */
    .problem-closing {
        text-align: center;
    }
    
    .problem-closer {
        text-align: center;
    }
    
    /* Center gap statement */
    .gap-statement {
        text-align: center;
        align-items: center;
    }
    
    /* Center Who This Is For section */
    .who-header,
    .who-header h2,
    .who-header .section-intro {
        text-align: center;
    }
    
    .who-content {
        text-align: center;
    }
    
    .who-footer p {
        text-align: center;
    }
    
    /* Center criteria cards text on mobile */
    .criteria-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .criteria-text {
        text-align: center;
    }
    
    /* Center testimonials section */
    .testimonials-header,
    .testimonials-header h2,
    .testimonials-header p {
        text-align: center;
    }
    
    /* Center metrics section */
    .metrics-section {
        text-align: center;
    }
    
    /* Center transformation section */
    .transformation-section h2 {
        text-align: center;
    }
    
    /* Center How It Works section */
    .how-it-works-section h2 {
        text-align: center;
    }
    
    .timeline-content h3,
    .timeline-content p {
        text-align: left; /* Keep timeline items left-aligned for readability */
    }
    
    /* Center system section */
    .system-section h2 {
        text-align: center;
    }
    
    /* Center engine content on mobile */
    .engine-content {
        text-align: center;
    }
    
    .engine-title-v2,
    .engine-subtitle-v2,
    .engine-desc-v2 {
        text-align: center;
    }
    
    .engine-features {
        justify-content: center;
    }
}

@media (max-width: 400px) {
    .container {
        padding: 0 12px;
    }

    h2 {
        font-size: 1.5rem;
    }
}

/* Hidden utility for criteria list (legacy support) */
.criteria-list {
    list-style: none;
    margin-top: 0;
}

.criteria-list li {
    padding: 0;
    font-size: 0;
    display: none;
}

/* ==========================================================================
   Draft v1 - New Section Styles
   ========================================================================== */

/* Pain Points List */
.pain-points {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
}

.pain-points li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: var(--gray-300);
    line-height: 1.6;
}

.pain-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--pink);
    border-radius: 50%;
}

/* Options Grid (Comparison Section) */
.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.option-card {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.option-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.option-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.option-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--gray-300);
    line-height: 1.5;
}

.option-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gray-500);
}

.option-problem {
    font-size: 0.9rem;
    color: var(--gray-400);
    font-style: italic;
    padding-top: 16px;
    border-top: 1px solid var(--gray-800);
    margin: 0;
}

.option-diy,
.option-agency {
    opacity: 0.7;
}

.option-us {
    border-color: var(--pink);
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.1) 0%, rgba(233, 30, 140, 0.02) 100%);
}

.option-us .option-intro {
    font-size: 1.1rem;
    color: var(--pink);
    font-weight: 500;
    margin-bottom: 16px;
}

.option-us p {
    color: var(--gray-200);
    line-height: 1.7;
    margin-bottom: 12px;
}

.option-us p:last-child {
    margin-bottom: 0;
}

/* Engine List (for Personalization Engine) */
.engine-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.engine-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--gray-200);
}

.engine-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--pink);
}

/* Speed Section */
.speed-section {
    padding: 80px 0;
    text-align: center;
}

.speed-content {
    max-width: 700px;
    margin: 0 auto;
}

.speed-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.speed-content p {
    font-size: 1.2rem;
    color: var(--gray-300);
    line-height: 1.7;
}

.speed-content .pull-quote {
    font-size: 1.5rem;
    color: var(--pink);
    font-weight: 600;
    margin-top: 32px;
}

/* Options Grid Responsive */
@media (max-width: 900px) {
    .options-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .option-diy,
    .option-agency {
        opacity: 1;
    }
}

@media (max-width: 600px) {
    .pain-points li {
        font-size: 1rem;
        padding-left: 24px;
    }
    
    .option-card {
        padding: 24px;
    }
    
    .option-card h3 {
        font-size: 1.1rem;
    }
    
    .speed-content h2 {
        font-size: 1.75rem;
    }
    
    .speed-content p {
        font-size: 1rem;
    }
    
    .speed-content .pull-quote {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   Draft v1 - Visual Narrative Layout Styles
   ========================================================================== */

/* Problem Section - Narrative Style */
.problem-headline {
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.2;
    margin-bottom: 24px;
    text-align: center;
}

.problem-lead {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 20px;
    text-align: center;
}

.problem-content p:not(.problem-lead) {
    font-size: 1.1rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Options Stack Layout */
.options-stack {
    margin-top: 48px;
}

.options-muted {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.options-muted .option-card {
    opacity: 0.7;
    padding: 24px;
    transition: all 0.3s ease;
}

.options-muted .option-card:hover {
    opacity: 0.9;
}

.options-muted .option-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.options-muted .option-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.options-muted .option-card .option-problem {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.options-divider {
    text-align: center;
    padding: 32px 0;
    position: relative;
}

.options-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--dark-border), transparent);
}

.options-divider span {
    position: relative;
    z-index: 1;
    background: var(--dark);
    padding: 8px 24px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gray-400);
    font-style: italic;
}

.option-featured {
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.1) 0%, rgba(233, 30, 140, 0.02) 100%);
    border: 1px solid var(--pink);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
}

.option-featured:hover {
    box-shadow: 0 8px 40px rgba(233, 30, 140, 0.15);
    transform: translateY(-2px);
}

.option-featured h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.option-featured p {
    font-size: 1.1rem;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 16px;
}

.option-featured p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Options Stack V2 - Comparison Stack Design
   ========================================================================== */

.options-stack-v2 {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stack-muted-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stack-card {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    transition: all 0.4s ease;
}

.stack-card.muted {
    opacity: 0.65;
}

.stack-card.muted:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.stack-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.stack-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stack-card.muted .stack-card-icon {
    background: var(--dark-elevated);
}

.stack-card.muted .stack-card-icon svg {
    color: var(--gray-500);
    width: 20px;
    height: 20px;
}

.stack-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.stack-card-desc {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 16px;
}

.stack-card-problem {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    font-size: 0.85rem;
    color: #f87171;
}

.stack-card-problem svg {
    flex-shrink: 0;
}

/* Stack Divider */
.stack-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 8px 0;
}

.stack-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--dark-border), transparent);
}

.stack-divider-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-500);
    font-style: italic;
}

/* Featured Stack Card */
.stack-card.featured {
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.1) 0%, rgba(233, 30, 140, 0.02) 100%);
    border: 2px solid var(--pink);
    padding: 40px;
    box-shadow: 
        0 0 0 1px rgba(233, 30, 140, 0.1),
        0 8px 40px rgba(233, 30, 140, 0.2),
        0 0 80px rgba(233, 30, 140, 0.1);
    transform: scale(1.02);
}

.stack-card.featured .stack-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--pink), var(--pink-soft));
    box-shadow: 0 4px 20px rgba(233, 30, 140, 0.4);
}

.stack-card.featured .stack-card-icon svg {
    color: var(--white);
    width: 28px;
    height: 28px;
}

.stack-card.featured .stack-card-title {
    font-size: 1.35rem;
}

.stack-card.featured .stack-card-desc {
    font-size: 1.05rem;
    color: var(--gray-300);
}

.stack-card-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(233, 30, 140, 0.15);
    border: 1px solid rgba(233, 30, 140, 0.3);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--pink);
    font-weight: 500;
}

.stack-card-highlight svg {
    width: 18px;
    height: 18px;
}

/* Options Stack V2 Responsive */
@media (max-width: 900px) {
    .stack-muted-row {
        grid-template-columns: 1fr;
    }
    
    .stack-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 600px) {
    .options-stack-v2 {
        gap: 16px;
    }
    
    .stack-card {
        padding: 20px;
    }
    
    .stack-card.featured {
        padding: 28px;
    }
    
    .stack-card-header {
        gap: 12px;
    }
    
    .stack-card-icon {
        width: 40px;
        height: 40px;
    }
    
    .stack-card.muted .stack-card-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .stack-card.featured .stack-card-icon {
        width: 48px;
        height: 48px;
    }
    
    .stack-card.featured .stack-card-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .stack-card-title {
        font-size: 1rem;
    }
    
    .stack-card.featured .stack-card-title {
        font-size: 1.15rem;
    }
    
    .stack-card-desc {
        font-size: 0.85rem;
    }
    
    .stack-card.featured .stack-card-desc {
        font-size: 0.95rem;
    }
    
    .stack-card-problem {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
    
    .stack-card-highlight {
        padding: 8px 14px;
        font-size: 0.8rem;
        flex-wrap: wrap;
    }
}

/* Engine Rows - Alternating Layout */
.engines-rows {
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.engine-row {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    padding: 40px;
    background: var(--dark-elevated);
    border-radius: 16px;
    border: 1px solid var(--dark-border);
    transition: all 0.3s ease;
}

.engine-row:hover {
    border-color: rgba(233, 30, 140, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.engine-row:nth-child(even) {
    flex-direction: row-reverse;
}

.engine-row:nth-child(even) .engine-row-content {
    text-align: right;
}

.engine-row-content {
    flex: 1;
}

.engine-row-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--pink);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 8px;
}

.engine-row-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.engine-row-subtitle {
    font-size: 0.9rem;
    color: var(--pink);
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.engine-row-content p:last-child {
    font-size: 1.05rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin: 0;
}

.engine-row-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.15), rgba(233, 30, 140, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--pink);
}

/* Speed Section - Enhanced */
.speed-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.speed-guarantee {
    font-size: 1.75rem;
    font-weight: 600;
    margin-top: 32px;
}

/* Differentiation List - Single Column */
.diff-list {
    margin-top: 48px;
}

.diff-item {
    padding: 32px 0;
    border-bottom: 1px solid var(--dark-border);
}

.diff-item:first-child {
    padding-top: 0;
}

.diff-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.diff-item h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--white);
}

.diff-item p {
    font-size: 1.05rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin: 0;
}

/* Timeline - Vertical Steps */
.timeline {
    margin-top: 48px;
    position: relative;
    padding-left: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--pink), rgba(233, 30, 140, 0.2));
}

.timeline-step {
    position: relative;
    padding-bottom: 40px;
}

.timeline-step:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -60px;
    top: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--pink), var(--pink-soft));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(233, 30, 140, 0.3);
}

.timeline-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.timeline-content p {
    font-size: 1rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin: 0;
}

/* Guarantee Box - Simplified */
.guarantee-box-simple {
    text-align: left;
}

.guarantee-box-simple .guarantee-headline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
    letter-spacing: -0.02em;
}

.guarantee-box-simple p {
    text-align: left;
    margin-bottom: 16px;
}

.guarantee-box-simple p:last-child {
    margin-bottom: 0;
}

.guarantee-specifics {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
    padding: 20px 24px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--gray-300);
    line-height: 1.6;
}

.guarantee-item svg {
    flex-shrink: 0;
    color: #22c55e;
    margin-top: 2px;
}

/* ==========================================================================
   Visual Narrative - Responsive Styles
   ========================================================================== */

@media (max-width: 900px) {
    .options-muted {
        grid-template-columns: 1fr;
    }
    
    .engine-row,
    .engine-row:nth-child(even) {
        flex-direction: column;
        gap: 24px;
        padding: 28px;
    }
    
    .engine-row:nth-child(even) .engine-row-content {
        text-align: left;
    }
    
    .engine-row-icon {
        width: 72px;
        height: 72px;
        order: -1;
    }
    
    .engine-row-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .engine-row-number {
        font-size: 2.5rem;
    }
    
    .engine-row-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 600px) {
    .problem-headline {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .problem-lead {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .problem-content p:not(.problem-lead) {
        font-size: 1rem;
        text-align: center;
    }
    
    .options-divider {
        padding: 24px 0;
    }
    
    .option-featured {
        padding: 28px;
    }
    
    .option-featured h3 {
        font-size: 1.25rem;
    }
    
    .option-featured p {
        font-size: 1rem;
    }
    
    .engines-rows {
        gap: 24px;
        margin-top: 40px;
    }
    
    .engine-row {
        padding: 24px;
    }
    
    .engine-row-number {
        font-size: 2rem;
    }
    
    .engine-row-title {
        font-size: 1.15rem;
    }
    
    .engine-row-subtitle {
        font-size: 0.8rem;
        margin-bottom: 16px;
    }
    
    .engine-row-content p:last-child {
        font-size: 0.95rem;
    }
    
    .speed-headline {
        font-size: 2rem;
        text-align: center;
    }
    
    .speed-guarantee {
        font-size: 1.35rem;
        text-align: center;
    }
    
    .speed-content p {
        text-align: center;
    }
    
    .diff-item {
        padding: 24px 0;
        text-align: center;
    }
    
    .diff-item h3 {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .diff-item p {
        font-size: 1rem;
        text-align: center;
    }
    
    .timeline {
        padding-left: 48px;
        margin-top: 40px;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-marker {
        left: -48px;
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .timeline-step {
        padding-bottom: 32px;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .timeline-content p {
        font-size: 0.95rem;
    }
    
    .guarantee-box-simple .guarantee-headline {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .guarantee-box-simple p {
        text-align: center;
    }
    
    .guarantee-specifics {
        text-align: left; /* Keep guarantee items left-aligned for readability */
    }
}

/* ==========================================================================
   Aspiration Section - Growth Chart
   ========================================================================== */

.aspiration-section {
    padding: 60px 0 100px;
}

.aspiration-headline {
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.2;
    margin-bottom: 24px;
    text-align: center;
}

.aspiration-lead {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 20px;
    text-align: center;
}

.aspiration-content p:not(.aspiration-lead) {
    font-size: 1.1rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 48px;
}

.growth-chart-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 48px;
}

.growth-chart-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: center;
}

.growth-chart-content .lead {
    font-size: 1.15rem;
    color: var(--gray-300);
    margin-bottom: 16px;
    text-align: center;
}

.growth-chart-content p {
    color: var(--gray-400);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Chart Visual */
.chart-visual {
    position: relative;
    height: 320px;
    background: linear-gradient(180deg, rgba(233, 30, 140, 0.05), transparent);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--dark-border);
}

.chart-grid {
    position: absolute;
    inset: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chart-grid-line {
    height: 1px;
    background: var(--dark-border);
    position: relative;
}

.chart-grid-line::before {
    content: attr(data-value);
    position: absolute;
    left: -50px;
    top: -8px;
    font-size: 0.7rem;
    color: var(--gray-600);
    font-family: 'Outfit', sans-serif;
}

.chart-line-container {
    position: absolute;
    inset: 24px;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.chart-path {
    fill: none;
    stroke: var(--pink);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawLine 3s ease-out forwards;
    filter: drop-shadow(0 0 8px var(--pink-glow));
}

.chart-area {
    fill: url(#chartGradient);
    opacity: 0;
    animation: fadeIn 1s ease-out 2s forwards;
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

@keyframes fadeIn {
    to { opacity: 0.4; }
}

.chart-unlock-point {
    position: absolute;
    transform: translate(-50%, 50%);
}

.chart-unlock-point.point-1 {
    bottom: 22%;
    left: 25%;
}

.chart-unlock-point.point-2 {
    bottom: 38%;
    left: 50%;
}

.chart-unlock-point.point-3 {
    bottom: 62%;
    left: 70%;
}

.chart-unlock-point.point-4 {
    bottom: 82%;
    left: 88%;
}

.unlock-marker {
    width: 32px;
    height: 32px;
    background: var(--dark);
    border: 2px solid var(--pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 16px var(--pink-glow);
    opacity: 0;
    transform: scale(0);
    position: relative;
}

.chart-unlock-point.point-1 .unlock-marker {
    animation: markerAppear 0.5s ease-out 1s forwards, pulse 2s ease-in-out 1.5s infinite;
}

.chart-unlock-point.point-2 .unlock-marker {
    animation: markerAppear 0.5s ease-out 1.5s forwards, pulse 2s ease-in-out 2s infinite;
}

.chart-unlock-point.point-3 .unlock-marker {
    animation: markerAppear 0.5s ease-out 2s forwards, pulse 2s ease-in-out 2.5s infinite;
}

.chart-unlock-point.point-4 .unlock-marker {
    animation: markerAppear 0.5s ease-out 2.5s forwards, pulse 2s ease-in-out 3s infinite;
}

@keyframes markerAppear {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.unlock-marker svg {
    width: 14px;
    height: 14px;
    color: var(--pink);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 16px var(--pink-glow); }
    50% { box-shadow: 0 0 24px var(--pink-glow); }
}

.unlock-label {
    position: absolute;
    white-space: nowrap;
    background: var(--dark-elevated);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--pink);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid rgba(233, 30, 140, 0.4);
    opacity: 0;
    pointer-events: none;
}

.chart-unlock-point.point-1 .unlock-label {
    top: 44px;
    left: 50%;
    transform: translateX(-50%);
    animation: labelAppear 0.4s ease-out 1.2s forwards;
}

.chart-unlock-point.point-2 .unlock-label {
    top: -42px;
    left: 50%;
    transform: translateX(-80%);
    animation: labelAppear 0.4s ease-out 1.7s forwards;
}

.chart-unlock-point.point-3 .unlock-label {
    top: 44px;
    left: 50%;
    transform: translateX(-20%);
    animation: labelAppear 0.4s ease-out 2.2s forwards;
}

.chart-unlock-point.point-4 .unlock-label {
    top: -42px;
    left: 50%;
    transform: translateX(-100%);
    animation: labelAppear 0.4s ease-out 2.7s forwards;
}

@keyframes labelAppear {
    to { opacity: 1; }
}

.unlock-label .label-number {
    color: var(--white);
    font-weight: 700;
}

.chart-metrics {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    gap: 24px;
}

.chart-metric {
    text-align: right;
}

.chart-metric-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green);
}

.chart-metric-label {
    font-size: 0.7rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 900px) {
    .growth-chart-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .chart-visual {
        height: 280px;
    }
}

@media (max-width: 600px) {
    .chart-visual {
        height: 240px;
    }
}

/* ==========================================================================
   Problem Section - Competitor Comparison Visual
   ========================================================================== */

.competitor-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    max-width: 940px;
    margin: 56px auto;
    align-items: stretch;
    position: relative;
}

.comparison-column {
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* You Column - Muted, stuck feeling */
.you-column {
    background: linear-gradient(145deg, rgba(35, 35, 42, 0.85) 0%, rgba(25, 25, 30, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-right: -12px;
    z-index: 1;
}

.you-column::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 0%, rgba(100, 100, 120, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(60, 60, 80, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

/* Them Column - Aspirational, energetic */
.them-column {
    background: linear-gradient(145deg, rgba(233, 30, 140, 0.12) 0%, rgba(20, 20, 24, 0.95) 100%);
    border: 2px solid rgba(233, 30, 140, 0.4);
    margin-left: -12px;
    z-index: 2;
    box-shadow: 
        0 0 60px rgba(233, 30, 140, 0.15),
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(233, 30, 140, 0.2);
}

.them-column::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 0%, rgba(233, 30, 140, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(233, 30, 140, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.them-column:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 0 80px rgba(233, 30, 140, 0.2),
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(233, 30, 140, 0.3);
}

/* Column Headers */
.column-header {
    margin-bottom: 32px;
    position: relative;
}

.column-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.column-label::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.you-column .column-label {
    color: var(--gray-300);
}

.you-column .column-label::before {
    background: var(--gray-400);
    box-shadow: 0 0 8px rgba(180, 180, 180, 0.4);
}

.them-column .column-label {
    color: var(--pink);
}

.them-column .column-label::before {
    background: var(--pink);
    box-shadow: 0 0 12px var(--pink-glow);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* Comparison Items */
.comparison-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    position: relative;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.you-column .comparison-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.them-column .comparison-item {
    background: rgba(233, 30, 140, 0.06);
    border: 1px solid rgba(233, 30, 140, 0.12);
}

.them-column .comparison-item:hover {
    background: rgba(233, 30, 140, 0.1);
    border-color: rgba(233, 30, 140, 0.2);
    transform: translateX(4px);
}

/* Item Icons */
.item-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.you-column .item-icon {
    background: rgba(120, 120, 140, 0.25);
    color: var(--gray-300);
}

.them-column .item-icon {
    background: linear-gradient(135deg, var(--pink), var(--pink-soft));
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(233, 30, 140, 0.3);
}

/* Item Text */
.item-text {
    font-size: 0.95rem;
    line-height: 1.5;
    padding-top: 4px;
}

.you-column .item-text {
    color: var(--gray-200);
}

.them-column .item-text {
    color: var(--gray-200);
    font-weight: 450;
}

/* Column Results */
.column-result {
    margin-top: 32px;
    padding: 24px;
    border-radius: 14px;
    text-align: center;
    position: relative;
}

.you-column .column-result {
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(255, 255, 255, 0.15);
}

.them-column .column-result {
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.15) 0%, rgba(233, 30, 140, 0.05) 100%);
    border: 1px solid rgba(233, 30, 140, 0.3);
    box-shadow: 0 4px 20px rgba(233, 30, 140, 0.1);
}

.result-number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.you-column .result-number {
    color: var(--gray-400);
}

.them-column .result-number {
    background: linear-gradient(135deg, var(--pink), var(--pink-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(233, 30, 140, 0.3));
}

.result-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.you-column .result-label {
    color: var(--gray-400);
}

.them-column .result-label {
    color: var(--gray-300);
}

/* Center Divider */
.comparison-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 40px 8px;
    z-index: 3;
}

.comparison-divider .divider-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(180deg, 
        transparent 0%, 
        var(--dark-border) 20%, 
        var(--pink) 50%, 
        var(--dark-border) 80%, 
        transparent 100%
    );
    opacity: 0.5;
}

.divider-vs {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--gray-500);
    letter-spacing: 0.15em;
    padding: 12px 6px;
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: 6px;
}

/* Problem Closing Section */
.problem-closing {
    max-width: 700px;
    margin: 64px auto 0;
    text-align: center;
}

/* Gap Statement - Bold centered statement */
.gap-statement {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
}

.gap-text {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

.gap-emphasis {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--pink);
    position: relative;
}

.gap-emphasis::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--pink), transparent);
}

/* Problem closer text */
.problem-closer {
    text-align: center;
    color: var(--gray-400);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Competitor Comparison Responsive */
@media (max-width: 860px) {
    .competitor-comparison {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 500px;
    }
    
    .you-column {
        margin-right: 0;
        margin-bottom: -12px;
        border-radius: 20px 20px 8px 8px;
    }
    
    .them-column {
        margin-left: 0;
        margin-top: -12px;
        border-radius: 8px 8px 20px 20px;
    }
    
    .comparison-divider {
        flex-direction: row;
        padding: 0 20px;
        height: 24px;
        z-index: 4;
    }
    
    .comparison-divider .divider-line {
        width: auto;
        height: 2px;
        flex: 1;
        background: linear-gradient(90deg, 
            transparent 0%, 
            var(--dark-border) 20%, 
            var(--pink) 50%, 
            var(--dark-border) 80%, 
            transparent 100%
        );
    }
    
    .divider-vs {
        padding: 8px 14px;
    }
    
    .comparison-column {
        padding: 32px;
    }
    
    .column-header {
        margin-bottom: 24px;
    }
    
    .comparison-items {
        gap: 14px;
    }
    
    .comparison-item {
        padding: 12px 14px;
    }
    
    .item-text {
        font-size: 0.9rem;
    }
    
    .result-number {
        font-size: 2.75rem;
    }
    
    .column-result {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .comparison-column {
        padding: 24px;
    }
    
    .column-label {
        font-size: 0.7rem;
    }
    
    .item-icon {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
    
    .item-text {
        font-size: 0.85rem;
    }
    
    .comparison-item {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .column-result {
        margin-top: 24px;
        padding: 18px;
    }
    
    .result-number {
        font-size: 2.25rem;
    }
    
    .result-label {
        font-size: 0.65rem;
    }
}

/* ==========================================================================
   Engines V2 - Split Cards with Gradient Border
   ========================================================================== */

@property --gradient-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.engines-v2 {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
    margin: 64px auto 0;
}

.engine-card-v2 {
    display: grid;
    grid-template-columns: 200px 1fr;
    background: var(--dark-surface);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.engine-card-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(
        var(--gradient-angle, 0deg),
        var(--pink) 0%,
        transparent 30%,
        transparent 70%,
        var(--pink-soft) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.engine-card-v2:hover {
    transform: scale(1.02);
}

.engine-card-v2:hover::before {
    opacity: 1;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    to { --gradient-angle: 360deg; }
}

.engine-visual {
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.15) 0%, rgba(233, 30, 140, 0.02) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    position: relative;
    overflow: hidden;
}

.engine-visual::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--pink), transparent);
    opacity: 0.3;
}

.engine-number {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--pink), var(--pink-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.engine-icon-v2 {
    width: 56px;
    height: 56px;
    background: var(--dark);
    border: 1px solid rgba(233, 30, 140, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.engine-card-v2:hover .engine-icon-v2 {
    background: var(--pink);
    border-color: var(--pink);
    transform: rotate(10deg) scale(1.1);
}

.engine-icon-v2 svg {
    width: 28px;
    height: 28px;
    color: var(--pink);
    transition: color 0.4s ease;
}

.engine-card-v2:hover .engine-icon-v2 svg {
    color: var(--white);
}

.engine-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.engine-title-v2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.engine-subtitle-v2 {
    font-size: 0.8rem;
    color: var(--pink);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.engine-desc-v2 {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 20px;
}

.engine-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.engine-feature {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(233, 30, 140, 0.08);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--gray-300);
    font-weight: 500;
}

.engine-feature::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--pink);
    border-radius: 50%;
}

/* Engines V2 Responsive */
@media (max-width: 900px) {
    .engine-card-v2 {
        grid-template-columns: 1fr;
    }
    
    .engine-visual {
        flex-direction: row;
        justify-content: flex-start;
        gap: 20px;
        padding: 24px;
    }
    
    .engine-visual::after {
        display: none;
    }
    
    .engine-number {
        font-size: 2.5rem;
        margin-bottom: 0;
    }
    
    .engine-content {
        padding: 24px;
    }
}

@media (max-width: 600px) {
    .engines-v2 {
        gap: 20px;
        margin-top: 40px;
    }
    
    .engine-card-v2 {
        border-radius: 16px;
    }
    
    .engine-visual {
        padding: 20px;
    }
    
    .engine-number {
        font-size: 2rem;
    }
    
    .engine-icon-v2 {
        width: 48px;
        height: 48px;
    }
    
    .engine-icon-v2 svg {
        width: 24px;
        height: 24px;
    }
    
    .engine-content {
        padding: 20px;
    }
    
    .engine-title-v2 {
        font-size: 1.15rem;
    }
    
    .engine-desc-v2 {
        font-size: 0.9rem;
    }
    
    .engine-features {
        gap: 6px;
    }
    
    .engine-feature {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
}

