/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

@media (max-width: 700px) {
    html {
        scroll-padding-top: 120px;
    }
    
    .footer-copyright {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    
    .footer-copyright p {
        margin: 0 !important;
    }
    
    .maker-gully-footer-link img {
        width: 28px !important;
        height: 28px !important;
    }
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

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

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D9334D;
}

.maker-gully-logo {
    height: 24px;
    width: auto;
    margin-left: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    border-radius: 6px;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #D9334D;
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #D9334D;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(217, 51, 77, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 51, 77, 0.4);
}

.btn-secondary {
    background: #66CC99;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(102, 204, 153, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 204, 153, 0.4);
}

.btn-primary:disabled {
    background: #D9334D; /* Yarn theme colors */
    color: #ffffff;
    cursor: not-allowed;
    box-shadow: 0 4px 12px rgba(217, 51, 77, 0.2);
    opacity: 0.6;
    transform: none;
}

.btn-primary:disabled:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(217, 51, 77, 0.2);
}

.coming-soon {
    color: #856404;
    font-size: 0.75rem;
    margin-top: 0.5rem;
    font-weight: 500;
    text-align: center;
    background: #FFF3CD;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    display: inline-block;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #3399E6 0%, #B366E6 100%);
    color: white;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-image {
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #ffffff;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #D9334D;
}

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

.feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
}

.feature-card:nth-child(1) .feature-icon {
    background: #D9334D; /* Maroon */
}

.feature-card:nth-child(2) .feature-icon {
    background: #66CC99; /* Sage */
}

.feature-card:nth-child(3) .feature-icon {
    background: #FFB31A; /* Gold */
}

.feature-card:nth-child(4) .feature-icon {
    background: #3399E6; /* Ocean */
}

.feature-card:nth-child(5) .feature-icon {
    background: #B366E6; /* Lavender */
}

.feature-card:nth-child(6) .feature-icon {
    background: #D9334D; /* Maroon */
}


.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #D9334D;
}

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

.step {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #D9334D;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background: #ffffff;
}

.categories h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #D9334D;
}

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

.tab-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tab-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.tab-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.tab-card:nth-child(1) .tab-icon {
    background: #3399E6; /* Ocean */
}

.tab-card:nth-child(2) .tab-icon {
    background: #66CC99; /* Sage */
}

.tab-card:nth-child(3) .tab-icon {
    background: #FFB31A; /* Gold */
}

.tab-card:nth-child(4) .tab-icon {
    background: #D9334D; /* Maroon */
}

.tab-card:nth-child(5) .tab-icon {
    background: #B366E6; /* Lavender */
}

.tab-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.tab-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tab-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
}

/* Download Section */
.download {
    padding: 80px 0;
    background: linear-gradient(135deg, #3399E6 0%, #B366E6 100%);
    color: white;
    text-align: center;
}

.download h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.download p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Footer */
.footer {
    background: #ffffff;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.footer-logo-img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

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

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #D9334D;
}

.footer-copyright {
    text-align: center;
    color: #6e6e73;
    font-size: 0.9rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Privacy Policy Styles */
.privacy-content {
    padding: 120px 0 80px;
    background: #ffffff;
}

.privacy-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #D9334D;
}

.last-updated {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.privacy-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 16px;
    border-left: 4px solid #D9334D;
}

.privacy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.privacy-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

/* Download Section */
.download {
    padding: 80px 0;
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    color: white;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.download-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.download-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.download-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.download-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: white;
}

.download-benefits .benefit-item i {
    color: #FFD700;
    font-size: 1.2rem;
}

.download-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.yarn-demo {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.spindle-demo {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.demo-spindle {
    width: 60px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 8px;
    gap: 4px;
}

.yarn-segment {
    height: 20px;
    border-radius: 10px;
    animation: yarnPulse 2s ease-in-out infinite alternate;
}

.yarn-segment.ocean { background: #4682B4; }
.yarn-segment.sage { background: #9CAF88; }
.yarn-segment.gold { background: #FFD700; }

@keyframes yarnPulse {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.download-actions {
    text-align: center;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #8B4513;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

.download-btn:hover {
    background: #A0522D;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 1rem 2rem;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .tabs-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .features, .how-it-works, .categories, .download {
        padding: 60px 0;
    }
    
    .feature-card, .step, .tab-card {
        padding: 1.5rem;
    }
    
    .phone-image {
        max-width: 250px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .features h2, .how-it-works h2, .categories h2 {
        font-size: 2rem;
    }
    
    .download h2 {
        font-size: 2rem;
    }
}

/* New Knit-Knot Visual Design */

/* Hero Section - Organic Yarn Design */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #3399E6 0%, #B366E6 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.yarn-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.yarn-strands {
    position: absolute;
    width: 100%;
    height: 100%;
}

.strand {
    position: absolute;
    width: 4px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    animation: sway 8s ease-in-out infinite;
}

.strand-1 { top: 10%; left: 15%; animation-delay: 0s; }
.strand-2 { top: 30%; right: 20%; animation-delay: 1.5s; }
.strand-3 { top: 60%; left: 25%; animation-delay: 3s; }
.strand-4 { top: 80%; right: 30%; animation-delay: 4.5s; }
.strand-5 { top: 40%; left: 70%; animation-delay: 6s; }

@keyframes sway {
    0%, 100% { transform: rotate(0deg) translateY(0px); }
    25% { transform: rotate(2deg) translateY(-10px); }
    50% { transform: rotate(0deg) translateY(-20px); }
    75% { transform: rotate(-2deg) translateY(-10px); }
}

.floating-yarn {
    position: absolute;
    width: 100%;
    height: 100%;
}

.yarn-ball {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    animation: bounce 6s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.yarn-ball.ocean { top: 20%; left: 10%; background: #3399E6; animation-delay: 0s; }
.yarn-ball.sage { top: 50%; right: 15%; background: #9CAF88; animation-delay: 1s; }
.yarn-ball.gold { top: 70%; left: 20%; background: #D4AF37; animation-delay: 2s; }
.yarn-ball.maroon { top: 30%; right: 25%; background: #D9334D; animation-delay: 3s; }
.yarn-ball.lavender { top: 80%; left: 60%; background: #B366E6; animation-delay: 4s; }

@keyframes bounce {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    margin-bottom: 24px;
}

.title-main {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.title-sub {
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #3399E6;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.stars {
    color: #ffd700;
    font-size: 1.1rem;
}

/* Yarn Colors Section */
.yarn-colors {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.2rem;
    color: #6e6e73;
    max-width: 600px;
    margin: 0 auto;
}

.colors-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.color-card {
    background: white;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e7;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.color-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.color-card.ocean { border-top: 4px solid #3399E6; }
.color-card.sage { border-top: 4px solid #9CAF88; }
.color-card.gold { border-top: 4px solid #D4AF37; }
.color-card.maroon { border-top: 4px solid #D9334D; }
.color-card.lavender { border-top: 4px solid #B366E6; }

.color-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.color-card.ocean .color-circle { background: #3399E6; }
.color-card.sage .color-circle { background: #9CAF88; }
.color-card.gold .color-circle { background: #D4AF37; }
.color-card.maroon .color-circle { background: #D9334D; }
.color-card.lavender .color-circle { background: #B366E6; }

.yarn-sample {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.color-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
}

.color-card p {
    color: #6e6e73;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Skill Progression Section */
.skill-progression {
    padding: 100px 0;
    background: white;
}

.progression-path {
    max-width: 800px;
    margin: 0 auto;
}

.skill-level {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 20px;
    border: 1px solid #e5e5e7;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.skill-level:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.level-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D9334D, #B366E6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    color: white;
}

.level-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 4px;
}

.level-range {
    display: block;
    font-size: 0.9rem;
    color: #6e6e73;
    font-weight: 500;
    margin-bottom: 12px;
}

.level-content p {
    color: #6e6e73;
    line-height: 1.5;
    margin-bottom: 16px;
}

.level-skills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.skill-tag {
    background: #D9334D;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Brain Benefits Section */
.brain-benefits {
    padding: 100px 0;
    background: #f8f9fa;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 24px;
}

.benefits-intro {
    font-size: 1.2rem;
    color: #6e6e73;
    margin-bottom: 40px;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e7;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #D9334D, #B366E6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.benefit-content p {
    color: #6e6e73;
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
}

.benefits-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brain-demo {
    position: relative;
    width: 200px;
    height: 200px;
}

.brain-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D9334D, #B366E6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    z-index: 2;
}

.neural-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.connection {
    position: absolute;
    background: linear-gradient(45deg, #D9334D, #B366E6);
    border-radius: 2px;
    animation: pulse 3s ease-in-out infinite;
}

.connection-1 {
    top: 20%;
    left: 20%;
    width: 60px;
    height: 2px;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.connection-2 {
    top: 20%;
    right: 20%;
    width: 60px;
    height: 2px;
    transform: rotate(-45deg);
    animation-delay: 0.5s;
}

.connection-3 {
    bottom: 20%;
    left: 20%;
    width: 60px;
    height: 2px;
    transform: rotate(-45deg);
    animation-delay: 1s;
}

.connection-4 {
    bottom: 20%;
    right: 20%;
    width: 60px;
    height: 2px;
    transform: rotate(45deg);
    animation-delay: 1.5s;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-sub {
        font-size: 1.2rem;
    }
    
    .hero-features {
        gap: 12px;
    }
    
    .colors-showcase {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .skill-level {
        flex-direction: column;
        text-align: center;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .download-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .download-text h2 {
        font-size: 2rem;
    }
    
    .download-benefits {
        align-items: center;
    }
    
    .spindle-demo {
        flex-direction: row;
        justify-content: center;
    }
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 24px;
}

.story-intro {
    font-size: 1.2rem;
    color: #6e6e73;
    margin-bottom: 40px;
    line-height: 1.6;
}

.story-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e7;
}

.point-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D9334D, #B366E6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.point-icon i {
    font-size: 1.5rem;
    color: white;
}

.point-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.point-content p {
    color: #6e6e73;
    line-height: 1.5;
}

.story-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.yarn-demo {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.spindle-group {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.spindle {
    width: 60px;
    height: 120px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 8px;
    gap: 4px;
}

.yarn-segment {
    height: 20px;
    border-radius: 4px;
}

.yarn-segment.ocean {
    background: #3399E6;
}

.yarn-segment.sage {
    background: #9CAF88;
}

.yarn-segment.gold {
    background: #D4AF37;
}

/* Journey Levels Section */
.journey-levels {
    padding: 80px 0;
    background: white;
}

.journey-levels h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d1d1f;
    text-align: center;
    margin-bottom: 16px;
}

.journey-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.journey-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid #e5e5e7;
    position: relative;
}

.step-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D9334D, #B366E6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-marker i {
    font-size: 1.5rem;
    color: white;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.step-content p {
    color: #6e6e73;
    line-height: 1.5;
    margin-bottom: 16px;
}

.step-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: #D9334D;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Yarn Benefits Section */
.yarn-benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 24px;
}

.benefits-intro {
    font-size: 1.2rem;
    color: #6e6e73;
    margin-bottom: 40px;
    line-height: 1.6;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e5e7;
}

.benefit-item i {
    font-size: 1.2rem;
    color: #D9334D;
    width: 20px;
    text-align: center;
}

.benefit-item span {
    color: #1d1d1f;
    font-weight: 500;
}

.benefits-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e7;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #D9334D;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.1rem;
    color: #6e6e73;
    font-weight: 500;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-text h2 {
        font-size: 2rem;
    }
    
    .spindle-group {
        justify-content: center;
    }
    
    .journey-step {
        flex-direction: column;
        text-align: center;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits-text h2 {
        font-size: 2rem;
    }
}
