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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #2ecc71;
    color: #fff;
}

.btn-accept:hover {
    background-color: #27ae60;
}

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 32px;
}

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

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

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 12px;
    background-color: #f5f5f5;
    border-radius: 12px;
}

.hero-visual {
    margin-top: 80px;
    position: relative;
    height: 90vh;
    min-height: 600px;
}

.hero-image-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    background-color: #1a1a1a;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    max-width: 900px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 24px;
    color: #fff;
    font-weight: 300;
}

.story-intro {
    padding: 120px 40px;
    background-color: #fff;
}

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

.story-lead {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 40px;
    line-height: 1.4;
}

.story-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 24px;
}

.visual-split {
    display: flex;
    min-height: 600px;
}

.split-image {
    flex: 1;
    background-color: #f5f5f5;
}

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

.split-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fafafa;
}

.split-text h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
}

.split-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.problem-amplification {
    padding: 100px 40px;
    background-color: #1a1a1a;
}

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

.problem-container h2 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
}

.problem-container p {
    font-size: 20px;
    color: #ddd;
    margin-bottom: 24px;
    line-height: 1.7;
}

.insight-visual {
    position: relative;
    min-height: 700px;
}

.insight-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    background-color: #333;
}

.insight-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 80px 60px;
}

.insight-overlay h2 {
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    max-width: 800px;
}

.insight-overlay p {
    font-size: 20px;
    color: #ddd;
    max-width: 800px;
}

.citation {
    color: #2ecc71;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.benefits-reveal {
    padding: 120px 40px;
    background-color: #f9f9f9;
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
}

.benefit-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.benefit-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.trust-building {
    padding: 100px 40px;
    background-color: #fff;
}

.trust-content {
    max-width: 900px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
}

.trust-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.7;
}

.trust-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 40px 0;
    background-color: #f5f5f5;
}

.testimonials-inline {
    padding: 100px 40px;
    background-color: #f5f5f5;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 40px;
    background-color: #fff;
    border-left: 4px solid #2ecc71;
}

.testimonial-text {
    font-size: 20px;
    color: #333;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

.collections-preview {
    padding: 120px 40px;
    background-color: #fff;
}

.collections-header {
    text-align: center;
    margin-bottom: 80px;
}

.collections-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.collections-header p {
    font-size: 20px;
    color: #666;
}

.collections-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.collection-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-8px);
}

.collection-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.collection-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 24px 24px 12px;
}

.collection-card p {
    font-size: 16px;
    color: #666;
    margin: 0 24px 20px;
}

.cta-link {
    display: inline-block;
    margin: 0 24px 24px;
    color: #2ecc71;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #27ae60;
}

.pricing-reveal {
    padding: 120px 40px;
    background-color: #fafafa;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-container h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 20px;
}

.pricing-intro {
    font-size: 20px;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
}

.pricing-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.price-card {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background-color: #fff;
    padding: 40px 32px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.price-card:hover {
    border-color: #2ecc71;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
    border-color: #2ecc71;
    transform: scale(1.05);
}

.price-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.features-list {
    list-style: none;
    margin-bottom: 32px;
}

.features-list li {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 700;
}

.price {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.btn-select {
    width: 100%;
    padding: 14px 24px;
    background-color: #2ecc71;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #27ae60;
}

.contact-form-section {
    padding: 100px 40px;
    background-color: #fff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 16px;
}

.form-container > p {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

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

.form-container input,
.form-container textarea {
    padding: 16px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.form-container input:focus,
.form-container textarea:focus {
    outline: none;
    border-color: #2ecc71;
}

.form-container input[readonly] {
    background-color: #f5f5f5;
    color: #333;
    font-weight: 600;
}

.btn-submit {
    padding: 16px 32px;
    background-color: #2ecc71;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #27ae60;
}

.disclaimer-section {
    padding: 60px 40px;
    background-color: #f5f5f5;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    text-align: center;
}

.references-section {
    padding: 60px 40px;
    background-color: #fff;
}

.references-content {
    max-width: 1000px;
    margin: 0 auto;
}

.references-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.references-list {
    list-style-position: inside;
}

.references-list li {
    font-size: 14px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.6;
}

.references-list a {
    color: #2ecc71;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

@media (max-width: 768px) {
    .nav-floating {
        padding: 16px 20px;
        flex-wrap: wrap;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .visual-split {
        flex-direction: column;
    }

    .split-text {
        padding: 40px 24px;
    }

    .collections-grid,
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .price-card.featured {
        transform: scale(1);
    }
}