:root {
    --primary-color: #FF6B35;
    --primary-dark: #FF5722;
    --primary-light: #FF8E53;
    --secondary-color: #004E89;
    --secondary-dark: #003A6B;
    --dark-bg: #1A1A2E;
    --light-bg: #F7F7F7;
    --text-dark: #2C3E50;
    --text-light: #FFFFFF;
    --accent-green: #2ECC71;
    --gradient: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
    --gradient-dark: linear-gradient(135deg, #FF5722 0%, #FF6B35 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    hyphens: none;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    word-break: normal;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    hyphens: none;
    -webkit-hyphens: none;
    -ms-hyphens: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.nav-logo-img {
    height: 60px;
    width: auto;
    mix-blend-mode: normal;
    background: transparent;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.login-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: transparent;
    color: var(--text-light);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.login-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-color);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.login-button:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.login-button:hover::before {
    width: 300px;
    height: 300px;
}

.login-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}

.login-button i {
    transition: transform 0.3s ease;
}

.login-button:hover i {
    transform: translateX(3px);
}
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.login-button i {
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    background: var(--gradient);
    color: var(--text-light);
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.logo-container {
    margin-bottom: 20px;
    animation: fadeInScale 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-logo {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
    mix-blend-mode: normal;
    background: transparent;
    animation: logoFloat 3s ease-in-out infinite, logoGlow 2s ease-in-out infinite;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

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

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255,107,53,0.6)) drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
    }
}

.badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.95rem;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.subheadline {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.cta-group {
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 20px 50px;
    background: var(--text-light);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.cta-button.large {
    padding: 22px 60px;
    font-size: 1.3rem;
}

.cta-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    margin-left: 15px;
    padding: 18px 45px;
}

.cta-secondary:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

.trial-note {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 10px;
}

.trial-note.existing-user {
    margin-top: 20px;
    font-size: 0.9rem;
}

.login-link {
    color: var(--text-light);
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.login-link:hover {
    opacity: 0.8;
}

/* Problem Section */
.problem-section {
    background: var(--light-bg);
    padding: 100px 20px;
}

.problem-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #7F8C8D;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.problem-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.problem-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.problem-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.problem-card p {
    color: #7F8C8D;
    line-height: 1.7;
}

/* Solution Section */
.solution-section {
    padding: 100px 20px;
    background: white;
}

.solution-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-dark);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.solution-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.solution-card.featured {
    background: linear-gradient(135deg, rgba(255,107,53,0.08) 0%, rgba(255,142,83,0.08) 100%);
    border-color: var(--primary-color);
}

.solution-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(255,107,53,0.4);
}

.solution-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.solution-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.solution-card p {
    color: #7F8C8D;
    line-height: 1.7;
    margin-bottom: 20px;
}

.solution-benefit {
    color: var(--accent-green);
    font-weight: 600;
    font-size: 0.95rem;
}

.solution-benefit.highlight {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
}

/* Real Examples Section - iPhone Messages Style */
.real-examples-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #F7F7F7 0%, #E8F4F8 100%);
    position: relative;
}

.real-examples-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-header-center h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #000000;
    font-weight: 800;
}

.section-header-center .section-subtitle {
    font-size: 1.2rem;
    color: #000000;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
}

.examples-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.example-wrapper {
    position: relative;
}

.example-wrapper.featured {
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255,107,53,0.4);
}

.example-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.example-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(255,107,53,0.4);
}

.example-title h3 {
    font-size: 1.8rem;
    margin: 0 0 5px 0;
    color: var(--text-dark);
}

.example-subtitle {
    font-size: 1rem;
    color: #666;
    margin: 0;
    font-style: italic;
}

/* iPhone Mockup */
.iphone-mockup {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.iphone-frame {
    width: 100%;
    max-width: 390px;
    background: #000;
    border-radius: 45px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 
                0 0 0 1px rgba(255,255,255,0.1),
                inset 0 0 2px rgba(255,255,255,0.2);
    position: relative;
}

.iphone-notch {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 26px;
    background: #000;
    border-radius: 0 0 18px 18px;
    z-index: 10;
}

.iphone-screen {
    background: #F2F2F7;
    border-radius: 35px;
    overflow: hidden;
    height: 650px;
    display: flex;
    flex-direction: column;
}

/* Messages Header */
.messages-header {
    background: linear-gradient(135deg, #F8F8F8 0%, #FAFAFA 100%);
    padding: 50px 15px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 0.5px solid rgba(0,0,0,0.1);
}

.header-left, .header-right {
    width: 30px;
    color: #007AFF;
    font-size: 1.1rem;
}

.header-center {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-info {
    flex: 1;
}

.contact-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 2px;
}

.contact-status {
    font-size: 0.75rem;
    color: #8E8E93;
}

/* Messages Container */
.messages-container {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.message {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.user-message {
    justify-content: flex-end;
}

.coach-message {
    justify-content: flex-start;
}

.message-bubble {
    max-width: 75%;
    padding: 10px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.user-message .message-bubble {
    background: #007AFF;
    color: white;
    border-bottom-right-radius: 4px;
}

.coach-message .message-bubble {
    background: #E9E9EB;
    color: #000;
    border-bottom-left-radius: 4px;
}

.message-image {
    width: 200px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    background: #ddd;
    position: relative;
}

.message-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(135deg, #E9E9EB 0%, #D1D1D6 100%);
}

.message-time {
    text-align: center;
    font-size: 0.7rem;
    color: #8E8E93;
    margin: 4px 0;
}

/* Example Insights */
.example-insights {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-top: 30px;
}

.insight-badge {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.insight-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.insight-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
}

.insight-list li:last-child {
    border-bottom: none;
}

.insight-list li strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* CTA Section */
.examples-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-highlight {
    display: flex;
    align-items: center;
    gap: 25px;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFF 100%);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    border: 2px solid var(--primary-light);
    text-align: left;
}

.highlight-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.highlight-content h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.highlight-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .real-examples-section {
        padding: 60px 20px;
    }
    
    .section-header-center h2 {
        font-size: 2rem;
    }
    
    .section-header-center .section-subtitle {
        font-size: 1rem;
    }
    
    .example-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .example-title h3 {
        font-size: 1.4rem;
    }
    
    .example-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .featured-badge {
        font-size: 0.7rem;
        padding: 8px 14px;
        top: -10px;
        right: 10px;
    }
    
    .iphone-frame {
        max-width: 340px;
    }
    
    .iphone-screen {
        height: 550px;
    }
    
    .cta-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

/* Comparison Section */
.comparison-section {
    padding: 100px 20px;
    background: var(--light-bg);
}

.comparison-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-dark);
}

.comparison-wrapper {
    overflow-x: auto;
    margin: 60px 0;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.comparison-table {
    width: 100%;
    background: white;
    border-collapse: collapse;
    min-width: 900px;
}

/* Scrollable wrapper for comparison table */
.table-scroll-wrapper {
    overflow-x: auto;
    overflow-y: visible;
    position: relative;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Sticky first column */
.sticky-col {
    position: sticky;
    left: 0;
    z-index: 10;
    background: #ffffff;  /* Solid white, no transparency */
    background-clip: padding-box;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    border-right: 2px solid #f0f0f0;  /* Clear separation */
}

.comparison-table thead .sticky-col {
    background: var(--dark-bg);
    background-clip: padding-box;
    z-index: 20;
    border-right: 2px solid rgba(255,255,255,0.1);
}

.comparison-table tbody tr:hover .sticky-col {
    background: #fff9f7;  /* Solid background on hover */
    background-clip: padding-box;
}

.comparison-table thead {
    background: var(--dark-bg);
    color: white;
}

.comparison-table th {
    padding: 25px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-table th i {
    margin-right: 8px;
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid var(--light-bg);
}

.comparison-table tbody tr:hover {
    background: rgba(255,107,53,0.03);
}

.highlight-col {
    background: linear-gradient(135deg, rgba(255,107,53,0.1) 0%, rgba(255,142,83,0.1) 100%);
    font-weight: 600;
}

.comparison-table thead .highlight-col {
    background: var(--gradient);
}

.text-red {
    color: #e74c3c;
}

.text-green {
    color: var(--accent-green);
}

.price-row {
    font-size: 1.3rem;
    font-weight: 700;
}

.price-row .sticky-col {
    background: #ffffff !important;  /* Ensure solid white for price row */
}

.price-highlight {
    color: var(--primary-color);
    font-size: 2rem;
}

.comparison-cta {
    text-align: center;
    margin-top: 50px;
}

.comparison-cta p {
    font-size: 1.2rem;
    color: #7F8C8D;
    margin-bottom: 25px;
}

/* Creator Section */
.creator-section {
    padding: 100px 20px;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255,107,53,0.1) 0%, rgba(255,142,83,0.1) 100%);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-top: 15px;
}

.creator-card {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    background: linear-gradient(135deg, var(--light-bg) 0%, white 100%);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* Creator Visual Column */
.creator-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.photo-frame {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.creator-photo {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.photo-frame:hover .creator-photo {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 25px;
}

.badge-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.creator-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.creator-badge.primary {
    background: var(--primary-color);
    color: white;
}

.creator-badge.secondary {
    background: white;
    color: var(--primary-color);
}

.creator-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.stat-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.85rem;
    color: #7F8C8D;
    font-weight: 500;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Creator Content Column */
.creator-content {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.quote-container {
    position: relative;
    background: white;
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.creator-quote {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
    padding-left: 10px;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.story-point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.point-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(255,107,53,0.3);
}

.point-text h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.point-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #7F8C8D;
    margin: 0;
}

.creator-signature-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(255,107,53,0.08) 0%, rgba(255,142,83,0.08) 100%);
    padding: 25px 30px;
    border-radius: 20px;
    border: 2px solid rgba(255,107,53,0.2);
    margin-top: 10px;
}

.signature-content {
    flex: 1;
}

.signature-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.signature-title {
    font-size: 1.05rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 3px;
}

.signature-subtitle {
    font-size: 0.95rem;
    color: #7F8C8D;
}

.signature-cta {
    flex-shrink: 0;
}

.signature-button {
    display: inline-block;
    padding: 15px 35px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255,107,53,0.3);
}

.signature-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,107,53,0.4);
}

/* Features Section */
.features-section {
    padding: 100px 20px;
    background: white;
}

.features-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: var(--light-bg);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-card p {
    color: #7F8C8D;
    line-height: 1.7;
}

/* Testimonials Carousel Section */
.testimonials-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="testimonial-grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,107,53,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23testimonial-grid)"/></svg>');
    opacity: 0.3;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(255,107,53,0.2);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255,107,53,0.3);
}

.section-header-center h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.section-header-center .section-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    color: rgba(255,255,255,0.8);
}

/* Carousel Container */
.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-track {
    position: relative;
    width: 100%;
    min-height: 500px;
    margin-bottom: 40px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateX(100px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
    z-index: 2;
}

.testimonial-card.exiting {
    opacity: 0;
    transform: translateX(-100px) scale(0.95);
    z-index: 1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.testimonial-avatar {
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 0.95rem;
    color: #7F8C8D;
    margin-bottom: 10px;
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    color: #FFD700;
    font-size: 1rem;
}

.testimonial-content {
    color: var(--text-dark);
}

.testimonial-quote {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2C3E50;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-result {
    display: flex;
    justify-content: flex-start;
    margin-top: 15px;
}

.result-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,107,53,0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(255,107,53,0.4);
}

.carousel-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

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

.carousel-dot.active {
    background: var(--primary-color);
    width: 40px;
    border-radius: 6px;
}

.carousel-dot:hover {
    background: rgba(255,107,53,0.6);
}

/* Testimonials CTA */
.testimonials-cta {
    text-align: center;
    margin-top: 60px;
}

.testimonials-cta .cta-text {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.9);
}

.testimonials-cta .cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255,107,53,0.4);
}

.testimonials-cta .cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,107,53,0.6);
}

/* Pricing Section */
.pricing-section {
    padding: 100px 20px;
    background: var(--light-bg);
}

.pricing-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
}

.pricing-card {
    max-width: 600px;
    margin: 60px auto 0;
    background: white;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    overflow: hidden;
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-green);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 1;
}

.price-container {
    background: var(--gradient);
    color: white;
    padding: 60px 40px 40px;
    text-align: center;
}

.currency {
    font-size: 2.5rem;
    font-weight: 700;
    vertical-align: top;
}

.price-amount {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
}

.price-period {
    font-size: 2rem;
    font-weight: 500;
    opacity: 0.9;
}

.price-subtitle {
    font-size: 1.2rem;
    margin-top: 15px;
    opacity: 0.95;
    text-align: center;
}

.pricing-features {
    list-style: none;
    padding: 40px;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pricing-features i {
    color: var(--accent-green);
    font-size: 1.3rem;
}

.pricing-card .cta-button {
    width: calc(100% - 80px);
    margin: 0 40px 30px;
    text-align: center;
}

.trial-terms {
    text-align: center;
    color: #7F8C8D;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.guarantee {
    background: var(--light-bg);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.guarantee i {
    font-size: 3rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.guarantee p {
    color: #7F8C8D;
    line-height: 1.6;
}

/* Compact Guarantee Section */
.guarantee-compact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(255, 107, 53, 0.2);
    max-width: 600px;
    margin: 30px auto 0;
}

.guarantee-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.3;
}

.guarantee-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.5;
}

.guarantee-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.guarantee-point {
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.guarantee-point:hover {
    border-color: #FF6B35;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.1);
}

.point-label {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 500;
}

.guarantee-stat {
    font-size: 1rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.stat-highlight {
    color: #FF6B35;
    font-size: 2.2rem;
    font-weight: 900;
    display: inline-block;
    margin-right: 4px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 20px;
    background: white;
}

.faq-section h2 {
    font-size: 3rem;
    margin-bottom: 60px;
    text-align: center;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-bg);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 30px;
    color: #7F8C8D;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 20px;
    background: var(--gradient);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.signup-form-container {
    max-width: 600px;
    margin: 0 auto 40px;
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.signup-form input,
.signup-form select {
    padding: 18px;
    border: 2px solid var(--light-bg);
    border-radius: 12px;
    font-size: 1.05rem;
    font-family: inherit;
    transition: all 0.3s ease;
    width: 100%;
}

.signup-form input:focus,
.signup-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}

.signup-form select {
    width: 100%;
}

.form-note {
    color: #7F8C8D;
    font-size: 0.9rem;
    margin-top: 10px;
}

.signup-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
}

.benefit-item i {
    color: white;
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: rgba(255,255,255,0.8);
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
    mix-blend-mode: normal;
    background: transparent;
}

.footer-brand p {
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-column h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .subheadline {
        font-size: 1.2rem;
    }
    
    .cta-secondary {
        margin-left: 0;
        margin-top: 15px;
        display: block;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Testimonials responsive */
    .testimonials-carousel {
        padding: 0 50px;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-avatar img {
        width: 70px;
        height: 70px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .creator-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    
    .creator-visual {
        order: -1;
    }
    
    .photo-frame {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .creator-stats {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .creator-signature-box {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-logo {
        max-width: 240px;
    }
    
    .nav-logo-img {
        height: 50px;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .login-button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    section {
        padding: 60px 20px;
    }
    
    h2 {
        font-size: 2.2rem !important;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .problem-grid,
    .solution-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-wrapper {
        overflow-x: scroll;
    }
    
    .signup-benefits {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .price-amount {
        font-size: 4.5rem;
    }
    
    /* Testimonials tablet */
    .testimonials-section {
        padding: 60px 20px;
    }
    
    .section-header-center h2 {
        font-size: 2.2rem;
    }
    
    .testimonials-carousel {
        padding: 0 40px;
    }
    
    .testimonial-card {
        padding: 25px;
        min-height: 380px;
    }
    
    .testimonial-header {
        flex-direction: row;
        text-align: left;
        gap: 15px;
    }
    
    .testimonial-avatar img {
        width: 60px;
        height: 60px;
    }
    
    .testimonial-info h4 {
        font-size: 1.2rem;
    }
    
    .testimonial-quote {
        font-size: 1.05rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .testimonials-cta .cta-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 20px 60px;
    }
    
    .top-nav {
        padding: 12px 0;
    }
    
    .nav-actions {
        gap: 10px;
    }
    
    .nav-link {
        display: none;
    }
    
    .login-button {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .login-button span {
        display: inline;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .subheadline {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 16px 35px;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
    
    .problem-card,
    .solution-card,
    .feature-card {
        padding: 30px 20px;
    }
    
    .creator-card {
        padding: 30px 20px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .story-point {
        flex-direction: column;
        text-align: center;
    }
    
    .point-icon {
        margin: 0 auto;
    }
    
    .signature-button {
        width: 100%;
        text-align: center;
    }
    
    /* Testimonials mobile */
    .testimonials-section {
        padding: 50px 15px;
    }
    
    .section-header-center {
        margin-bottom: 40px;
    }
    
    .section-header-center h2 {
        font-size: 1.8rem;
    }
    
    .testimonials-carousel {
        padding: 0 35px;
    }
    
    .testimonial-card {
        padding: 20px;
        min-height: 420px;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .testimonial-avatar img {
        width: 70px;
        height: 70px;
        margin: 0 auto;
    }
    
    .testimonial-info h4 {
        font-size: 1.15rem;
    }
    
    .testimonial-role {
        font-size: 0.9rem;
    }
    
    .testimonial-quote {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .testimonial-quote::before {
        font-size: 3rem;
        top: -15px;
    }
    
    .result-badge {
        font-size: 0.85rem;
        padding: 8px 15px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
    
    .carousel-btn.prev {
        left: 0;
    }
    
    .carousel-btn.next {
        right: 0;
    }
    
    .carousel-dots {
        gap: 8px;
        margin-top: 30px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .carousel-dot.active {
        width: 30px;
    }
    
    .testimonials-cta {
        margin-top: 40px;
    }
    
    .testimonials-cta .cta-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .testimonials-cta .cta-button {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

/* Simple Header for Legal Pages */
.simple-header {
    background: var(--gradient);
    padding: 20px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.logo-link {
    display: inline-block;
}

.header-logo {
    height: 80px;
    width: auto;
    mix-blend-mode: normal;
    background: transparent;
}

/* Legal Pages */
.legal-page {
    padding: 80px 20px;
    background: var(--light-bg);
    min-height: 100vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.legal-content h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.effective-date {
    font-size: 1rem;
    color: #7F8C8D;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.legal-section h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 25px 0 15px;
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #7F8C8D;
    margin-bottom: 15px;
}

.legal-section ul,
.legal-section ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-section li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #7F8C8D;
    margin-bottom: 10px;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.legal-section a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-info {
    list-style: none;
    margin-left: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.acknowledgment {
    background: linear-gradient(135deg, rgba(255,107,53,0.08) 0%, rgba(255,142,83,0.08) 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(255,107,53,0.2);
}

.acknowledgment h2 {
    border-bottom: none;
    margin-bottom: 15px;
}

.back-link {
    margin-top: 50px;
    text-align: center;
}

.back-link .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Contact Page */
.contact-page {
    padding: 80px 20px;
    background: var(--light-bg);
    min-height: 100vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #7F8C8D;
    max-width: 700px;
    margin: 0 auto;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
}

/* Contact Info Section */
.contact-info-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: fit-content;
}

.contact-info-section h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-bg);
}

.contact-method:last-of-type {
    border-bottom: none;
}

.method-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.method-content h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.method-content p {
    font-size: 0.95rem;
    color: #7F8C8D;
    line-height: 1.6;
    margin-bottom: 5px;
}

.method-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.method-content a:hover {
    color: var(--primary-dark);
}

.support-categories {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--light-bg);
}

.support-categories h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.support-categories ul {
    list-style: none;
}

.support-categories li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #7F8C8D;
    margin-bottom: 10px;
}

.support-categories i {
    color: var(--accent-green);
    font-size: 1.1rem;
}

/* Contact Form Section */
.contact-form-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-form-section h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    border: 2px solid var(--light-bg);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form .cta-button {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

.contact-form .form-note {
    font-size: 0.9rem;
    color: #7F8C8D;
    text-align: center;
    margin-top: -10px;
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Responsive for Legal and Contact Pages */
@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .legal-content {
        padding: 40px 30px;
    }
    
    .legal-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .header-logo {
        height: 65px;
    }
    
    .legal-page,
    .contact-page {
        padding: 60px 20px;
    }
    
    .legal-content {
        padding: 30px 20px;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .contact-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-info-section,
    .contact-form-section {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .legal-content h1 {
        font-size: 1.8rem;
    }
    
    .contact-header h1 {
        font-size: 2rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .method-icon {
        margin: 0 auto;
    }
}

/* ============================================ */
/* Coach AI vs ChatGPT Comparison Section */
/* ============================================ */

.comparison-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.comparison-header {
    text-align: center;
    margin-bottom: 60px;
}

.comparison-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.comparison-header .section-subtitle {
    font-size: 1.25rem;
    color: #b8b8d1;
    max-width: 700px;
    margin: 0 auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.comparison-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.comparison-card.generic-ai {
    border: 3px solid #e0e0e0;
}

.comparison-card.coach-ai {
    border: 3px solid #FF6B35;
    position: relative;
    transform: scale(1.02);
}

.comparison-card.coach-ai::before {
    content: "⭐ RECOMMENDED";
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #FF6B35 0%, #ff8c61 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.comparison-card-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.comparison-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.comparison-card-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.comparison-label {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.comparison-label.generic {
    background: #f0f0f0;
    color: #666;
}

.comparison-label.premium {
    background: linear-gradient(135deg, #FF6B35 0%, #ff8c61 100%);
    color: white;
}

.comparison-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.feature-item i {
    font-size: 1.5rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.feature-item.negative i {
    color: #e74c3c;
}

.feature-item.positive i {
    color: #2ECC71;
}

.feature-item strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.comparison-result {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.comparison-result.highlighted {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
    border: 2px solid #FF6B35;
}

.result-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.comparison-result p {
    font-size: 1.1rem;
    color: #1a1a2e;
    margin: 0;
}

/* Comparison Summary */
.comparison-summary {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px 40px;
    margin-bottom: 50px;
}

.comparison-summary h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 40px;
    white-space: nowrap;
    overflow-wrap: normal;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.summary-item {
    text-align: center;
}

.summary-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.summary-item strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.summary-item p {
    color: #b8b8d1;
    line-height: 1.8;
    margin-bottom: 10px;
}

.summary-item p.highlight {
    color: #FF6B35;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Comparison CTA */
.comparison-cta {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.comparison-cta h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.comparison-cta .highlight-text {
    color: #FF6B35;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.3;
}

.comparison-cta .cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #FF6B35 0%, #ff8c61 100%);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.comparison-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.comparison-cta .cta-note {
    margin-top: 15px;
    color: #b8b8d1;
    font-size: 0.95rem;
}

/* Responsive Design for Comparison Section */
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-card.coach-ai {
        transform: scale(1);
    }
    
    .comparison-header h2 {
        font-size: 2rem;
    }
    
    .comparison-card-header h3 {
        font-size: 1.5rem;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-cta h3 {
        font-size: 1.4rem;
        padding: 0 10px;
        line-height: 1.4;
    }
    
    .comparison-cta .highlight-text {
        font-size: 1.6rem;
        padding: 0 10px;
        line-height: 1.4;
    }
    
    .comparison-summary h3 {
        font-size: 1.6rem;
        padding: 0 10px;
    }
    
    .comparison-card {
        padding: 30px 20px;
    }
    
    .comparison-icon {
        font-size: 3rem;
    }
}

/* Success Timeline Section */
.timeline-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
}

.timeline-header {
    text-align: center;
    margin-bottom: 60px;
}

.timeline-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-header .subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #FF6B35 0%, #FF8E53 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

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

.timeline-content {
    flex: 1;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    margin: 0 40px;
    transition: all 0.3s ease;
    max-width: calc(50% - 60px);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    border-color: #FF6B35;
}

.timeline-week {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF5722 100%);
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.timeline-metrics {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.metric {
    flex: 1;
    min-width: 150px;
    padding: 15px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FF6B35;
    display: block;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 30px;
    width: 20px;
    height: 20px;
    background: #FF6B35;
    border: 4px solid #1a1a2e;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* Value Calculator Section */
.value-calculator-section {
    background: #f7f7f7;
    padding: 80px 0;
}

.calculator-header {
    text-align: center;
    margin-bottom: 50px;
}

.calculator-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.calculator-header .subtitle {
    font-size: 1.2rem;
    color: #666;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.cost-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.cost-card.diy {
    border: 2px solid #e74c3c;
}

.cost-card.coach-ai {
    border: 3px solid #FF6B35;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.2);
}

.cost-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.cost-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.cost-card.diy .cost-icon {
    color: #e74c3c;
}

.cost-card.coach-ai .cost-icon {
    color: #FF6B35;
}

.cost-header h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.cost-breakdown {
    margin-bottom: 30px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cost-item-label {
    font-size: 1rem;
    color: #666;
}

.cost-item-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.cost-total {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.cost-total-label {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.cost-total-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.cost-card.diy .cost-total-value {
    color: #e74c3c;
}

.cost-card.coach-ai .cost-total-value {
    color: #FF6B35;
}

.time-savings {
    background: rgba(46, 204, 113, 0.1);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #2ecc71;
}

.time-savings-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2ecc71;
    display: block;
    margin-bottom: 5px;
}

.time-savings-label {
    font-size: 0.9rem;
    color: #27ae60;
}

.savings-highlight {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.savings-highlight h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.savings-numbers {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.savings-item {
    text-align: center;
}

.savings-value {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.savings-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Guarantee Section */
.guarantee-section {
    background: linear-gradient(135deg, #004E89 0%, #003A6B 100%);
    color: #fff;
    padding: 80px 0;
}

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

.guarantee-badge {
    display: inline-block;
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.guarantee-badge i {
    font-size: 3rem;
    color: #2ecc71;
}

.guarantee-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.guarantee-content .subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.guarantee-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.guarantee-point {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.guarantee-point i {
    font-size: 2.5rem;
    color: #2ecc71;
    margin-bottom: 15px;
}

.guarantee-point h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.guarantee-point p {
    opacity: 0.9;
    line-height: 1.6;
}

.guarantee-stat {
    background: rgba(46, 204, 113, 0.2);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.guarantee-stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: #2ecc71;
    display: block;
}

.guarantee-stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .timeline-section {
        padding: 60px 0;
        overflow-x: hidden;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
        padding-left: 50px;
        margin-bottom: 40px;
    }

    .timeline-content {
        margin: 0;
        padding: 20px;
        max-width: 100%;
        width: 100%;
    }

    .timeline-marker {
        left: 20px;
        width: 16px;
        height: 16px;
    }

    .timeline-week {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
    }

    .timeline-metrics {
        flex-direction: column;
        gap: 10px;
    }

    .metric {
        min-width: 100%;
    }

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

    .cost-card {
        padding: 30px 20px;
    }

    .savings-numbers {
        flex-direction: column;
        gap: 20px;
    }

    .savings-highlight {
        padding: 30px 20px;
    }

    .guarantee-points {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .guarantee-point {
        padding: 20px;
    }

    .timeline-header h2,
    .calculator-header h2,
    .guarantee-content h2 {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    .timeline-header .subtitle,
    .calculator-header .subtitle,
    .guarantee-content .subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .cost-total-value {
        font-size: 1.8rem;
    }

    .savings-value {
        font-size: 2rem;
    }

    .cost-item {
        padding: 10px 0;
    }

    .cost-item-label,
    .cost-item-value {
        font-size: 0.9rem;
    }
}

/* ============================================ */
/* New Mobile-First Timeline Section */
/* ============================================ */

.timeline-section-new {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow-x: hidden;
}

.timeline-header-new {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 15px;
}

.timeline-header-new .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35 0%, #ff8c61 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.timeline-header-new h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.2;
}

.timeline-header-new .section-subtitle {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.5;
}

.timeline-weeks {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    padding: 0 15px;
}

.week-card {
    background: white;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.week-card.featured {
    border-color: #FF6B35;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.2);
}

.week-card.success {
    border-color: #2ECC71;
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.2);
}

.week-header {
    margin-bottom: 16px;
}

.week-badge {
    margin-bottom: 12px;
}

.week-title {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35 0%, #ff8c61 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 700;
}

.week-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.3;
}

.week-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.week-checklist li {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 4px;
}

.week-result {
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 10px;
    border-left: 4px solid #FF6B35;
    font-size: 0.95rem;
    color: #333;
}

.week-result.success {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-left-color: #2ECC71;
}

.week-result strong {
    color: #1a1a2e;
    font-weight: 700;
}

.timeline-stats-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 35px;
    padding: 0 15px;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 20px 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stat-number-new {
    font-size: 2.2rem;
    font-weight: 900;
    color: #FF6B35;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.timeline-cta-new {
    text-align: center;
    padding: 0 15px;
}

.timeline-cta-new p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}

.timeline-cta-new strong {
    color: #1a1a2e;
}

.cta-button-new {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35 0%, #FF5722 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.cta-button-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Desktop styles for timeline */
@media (min-width: 769px) {
    .timeline-section-new {
        padding: 80px 0;
    }

    .timeline-header-new {
        margin-bottom: 50px;
    }

    .timeline-header-new h2 {
        font-size: 2.8rem;
    }

    .timeline-header-new .section-subtitle {
        font-size: 1.2rem;
    }

    .timeline-weeks {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        max-width: 1000px;
        margin: 0 auto 50px;
        padding: 0 20px;
    }

    .week-card {
        padding: 32px 28px;
    }

    .week-header h3 {
        font-size: 1.7rem;
    }

    .week-checklist li {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .week-result {
        font-size: 1rem;
        padding: 14px 18px;
    }

    .timeline-stats-new {
        max-width: 900px;
        margin: 0 auto 40px;
        gap: 20px;
        padding: 0 20px;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .stat-number-new {
        font-size: 3rem;
    }

    .stat-card p {
        font-size: 0.95rem;
    }

    .timeline-cta-new p {
        font-size: 1.15rem;
    }

    .cta-button-new {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
}

/* ============================================ */
/* Success Timeline Section */
/* ============================================ */

.timeline-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.timeline-header {
    text-align: center;
    margin-bottom: 60px;
}

.timeline-header .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35 0%, #ff8c61 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.timeline-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.timeline-header .section-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.timeline-item {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.timeline-item.featured {
    border: 3px solid #FF6B35;
    transform: scale(1.02);
}

.timeline-week {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35 0%, #ff8c61 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.timeline-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.timeline-item h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.timeline-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.timeline-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.timeline-list i {
    color: #2ECC71;
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.timeline-result {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 12px;
    border-left: 4px solid #FF6B35;
}

.timeline-result.highlighted {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
    border-left: 4px solid #2ECC71;
}

.timeline-result strong {
    color: #1a1a2e;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: #FF6B35;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.timeline-cta {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline-cta-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 25px;
}

/* ============================================ */
/* Value Calculator Section */
/* ============================================ */

.value-calculator {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.value-calculator h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.calculator-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.calculator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.calculator-column {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
}

.calculator-column.traditional {
    border: 3px solid #e74c3c;
}

.calculator-column.coach-ai {
    border: 3px solid #2ECC71;
    background: linear-gradient(135deg, #f0fff4 0%, #e6f9ee 100%);
}

.calculator-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.calculator-header i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.calculator-column.traditional .calculator-header i {
    color: #e74c3c;
}

.calculator-column.coach-ai .calculator-header i {
    color: #2ECC71;
}

.calculator-header h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a2e;
}

.calculator-items {
    margin-bottom: 25px;
}

.calculator-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.item-name {
    font-size: 1rem;
    color: #666;
}

.item-cost {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e74c3c;
}

.item-benefit {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2ECC71;
}

.calculator-total {
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.calculator-total.negative {
    background: #fee;
    border: 2px solid #e74c3c;
}

.calculator-total.positive {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #2ECC71;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.total-row strong {
    color: #1a1a2e;
}

.total-pain,
.total-benefit {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.total-pain p,
.total-benefit p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.calculator-savings {
    background: linear-gradient(135deg, #FF6B35 0%, #ff8c61 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    color: white;
}

.savings-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.savings-icon {
    font-size: 4rem;
}

.savings-text {
    text-align: left;
}

.savings-text h4 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.savings-text p {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.savings-annual {
    font-size: 1rem !important;
    opacity: 0.9;
}

/* ============================================ */
/* Improved Guarantee Styling */
/* ============================================ */

.guarantee {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid #3b82f6;
    margin-top: 30px;
}

.guarantee i {
    font-size: 3rem;
    color: #3b82f6;
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

.guarantee-content {
    text-align: center;
}

.guarantee-content h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.guarantee-content p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 12px;
}

.guarantee-highlight {
    font-weight: 700;
    color: #1a1a2e !important;
    background: white;
    padding: 12px 20px;
    border-radius: 8px;
    margin: 15px 0 !important;
}

.guarantee-stat {
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    color: #FF6B35 !important;
    margin: 15px 0 !important;
}

.guarantee-cancel {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #6b7280 !important;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .timeline-header h2 {
        font-size: 2rem;
    }
    
    .timeline-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item.featured {
        transform: scale(1);
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .timeline-cta-text {
        font-size: 1.2rem;
    }
    
    .value-calculator {
        padding: 30px 20px;
    }
    
    .value-calculator h3 {
        font-size: 1.8rem;
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    
    .savings-content {
        flex-direction: column;
        text-align: center;
    }
    
    .savings-text {
        text-align: center;
    }
    
    .savings-text h4 {
        font-size: 1.5rem;
    }
    
    .guarantee-content h4 {
        font-size: 1.4rem;
    }
    
    .guarantee-content p {
        font-size: 1rem;
    }
}

/* ============================================ */
/* Mobile Overflow Prevention */
/* ============================================ */

@media (max-width: 768px) {
    /* Prevent horizontal scroll on all sections */
    section {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .container {
        padding: 0 15px;
        max-width: 100%;
    }

    /* Hero section mobile fixes */
    .hero {
        padding: 120px 15px 80px;
    }

    .hero h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }

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

    /* Solution section mobile fixes */
    .solution-section {
        padding: 60px 15px;
    }

    .solution-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Comparison section mobile fixes */
    .comparison-section {
        padding: 60px 15px;
    }

    .comparison-section h2 {
        font-size: 2rem !important;
    }

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

    .comparison-card {
        padding: 25px 15px;
    }

    /* Comparison CTA text overflow fix */
    .comparison-cta {
        padding: 30px 10px;
    }

    .comparison-cta h3 {
        font-size: 1.3rem !important;
        padding: 0 5px;
        line-height: 1.4 !important;
    }

    .comparison-cta .highlight-text {
        font-size: 1.5rem !important;
        padding: 0 5px;
        line-height: 1.4 !important;
    }

    /* Value calculator mobile fixes */
    .value-calculator-section {
        padding: 60px 15px;
    }

    .comparison-grid {
        gap: 20px;
    }

    .cost-card {
        padding: 25px 15px;
    }

    .cost-header h3 {
        font-size: 1.5rem;
    }

    .cost-breakdown {
        margin-bottom: 20px;
    }

    .cost-item {
        padding: 12px 0;
        flex-wrap: wrap;
    }

    .cost-item-label {
        font-size: 0.9rem;
        flex: 1 1 100%;
        margin-bottom: 5px;
    }

    .cost-item-value {
        font-size: 1rem;
        flex: 1 1 100%;
    }

    .savings-highlight h3 {
        font-size: 1.5rem;
    }

    .savings-numbers {
        gap: 25px;
    }

    .savings-item {
        padding: 15px;
    }

    .savings-value {
        font-size: 2.2rem !important;
    }

    .savings-label {
        font-size: 1rem;
    }

    /* Guarantee section mobile fixes */
    .guarantee-section {
        padding: 60px 15px;
    }

    .guarantee-badge {
        width: 100px;
        height: 100px;
    }

    .guarantee-badge i {
        font-size: 2.5rem;
    }

    .guarantee-content h2 {
        font-size: 1.8rem !important;
    }

    .guarantee-content .subtitle {
        font-size: 1.1rem;
    }

    .guarantee-point {
        padding: 20px 15px;
    }

    .guarantee-point i {
        font-size: 2rem;
    }

    .guarantee-point h4 {
        font-size: 1.1rem;
    }

    .guarantee-point p {
        font-size: 0.9rem;
    }

    /* Pricing section mobile fixes */
    .pricing-section {
        padding: 60px 15px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    /* Compact guarantee mobile fixes */
    .guarantee-compact {
        padding: 24px 16px;
    }

    .guarantee-icon-circle {
        margin-bottom: 16px;
    }

    .guarantee-compact {
        padding: 30px 20px;
    }

    .guarantee-title {
        font-size: 1.4rem;
    }

    .guarantee-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .guarantee-points {
        gap: 12px;
        margin-bottom: 24px;
    }

    .guarantee-point {
        padding: 14px 18px;
    }

    .point-label {
        font-size: 0.95rem;
    }

    .guarantee-stat {
        font-size: 0.95rem;
    }

    .stat-highlight {
        font-size: 1.8rem;
    }

    /* FAQ section mobile fixes */
    .faq-section {
        padding: 60px 15px;
    }

    .faq-item {
        padding: 20px 15px;
    }

    /* Testimonials mobile fixes */
    .testimonials-section {
        padding: 60px 15px;
    }

    .testimonials-track {
        min-height: 600px;
        margin-bottom: 30px;
    }

    .testimonials-carousel {
        padding: 0 40px;
    }

    .testimonial-card {
        padding: 25px 15px;
    }

    .testimonials-cta {
        margin-top: 30px;
    }

    /* Real examples mobile fixes */
    .real-examples-section {
        padding: 60px 15px;
    }

    .example-container {
        padding: 30px 15px;
    }

    /* Prevent wide images from causing overflow */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Prevent long text from causing overflow */
    h1, h2, h3, h4, h5, h6, p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: none;
        -webkit-hyphens: none;
        -ms-hyphens: none;
    }

    /* Fix buttons that might be too wide */
    .btn,
    .cta-button,
    .primary-cta {
        width: 100%;
        max-width: 100%;
        padding: 15px 20px;
        font-size: 1rem;
    }

    /* Fix any wide tables */
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

