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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    padding: 12px 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-button {
    display: block;
    text-align: center;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    transition: background 0.3s ease;
}

.sticky-cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

@media (min-width: 769px) {
    .sticky-cta {
        bottom: 20px;
        left: auto;
        right: 20px;
        width: auto;
        max-width: 300px;
        border-radius: 12px;
        padding: 16px 24px;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 100px 20px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 600px;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #e0e0e0;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #c0c0c0;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

/* Styles Section */
.styles-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.styles-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.style-card {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.style-card.reverse {
    flex-direction: row-reverse;
}

.style-image {
    flex: 1;
    max-width: 400px;
}

.style-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.style-content {
    flex: 1;
}

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

.style-tag {
    display: inline-block;
    background: #6366f1;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.style-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.style-details {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #6366f1;
    margin-bottom: 20px;
}

.style-who,
.style-characteristics,
.style-placement {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #333;
}

.style-who strong,
.style-characteristics strong,
.style-placement strong {
    color: #1a1a2e;
    font-weight: 700;
}

.style-link {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.style-link:hover {
    color: #4f46e5;
    text-decoration: underline;
}

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

.comparison-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a2e;
}

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

.comparison-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.comparison-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.comparison-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.comparison-item {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.comparison-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #6366f1;
}

.comparison-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #333;
}

.comparison-note {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    padding: 15px;
    background: #e0e7ff;
    border-radius: 8px;
}

/* Combos Section */
.combos-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.combos-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.combo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.combo-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.combo-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.combo-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.combo-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.combo-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #333;
    font-size: 0.95rem;
}

.combo-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6366f1;
    font-weight: 700;
}

.combo-link {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.combo-link:hover {
    color: #4f46e5;
    text-decoration: underline;
}

/* Related Pages Section */
.related-pages-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.related-pages-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.related-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.related-link-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

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

.related-link-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.related-link-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #e0e0e0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button.secondary:hover {
    background: white;
    color: #1a1a2e;
}

/* Footer */
.footer {
    background-color: #1a1a2e;
    color: white;
    padding: 60px 20px 30px;
}

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

.footer-logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-section p {
    color: #c0c0c0;
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #c0c0c0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-section span {
    color: #c0c0c0;
    font-size: 0.95rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #c0c0c0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        padding: 60px 20px 40px;
        min-height: auto;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .hero-image {
        max-width: 100%;
        margin-top: 30px;
    }

    .styles-section h2,
    .comparison-section h2,
    .combos-section h2,
    .related-pages-section h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .style-card {
        flex-direction: column !important;
        padding: 25px;
    }

    .style-card.reverse {
        flex-direction: column !important;
    }

    .style-image {
        max-width: 100%;
    }

    .style-content h3 {
        font-size: 1.5rem;
    }

    .comparison-grid,
    .combo-grid,
    .related-links-grid {
        grid-template-columns: 1fr;
    }

    .cta-links {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .section-intro {
        font-size: 1rem;
    }

    .style-card,
    .comparison-card,
    .combo-card,
    .related-link-card {
        padding: 20px;
    }

    .style-content h3 {
        font-size: 1.3rem;
    }
}

