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

:root {
    --primary-dark: #1a1a1a;
    --primary-light: #f4f4f4;
    --accent-color: #2c3e50;
    --accent-highlight: #34495e;
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --border-color: #e0e0e0;
    --success-green: #27ae60;
    --warning-red: #c0392b;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    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: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--success-green);
    color: #fff;
}

.btn-accept:hover {
    background: #229954;
}

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

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

.main-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-dark);
    transition: all 0.3s;
}

.hero-immersive {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}

.hero-text-container {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 2rem;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtext {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    background: #fff;
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 3px solid #fff;
}

.cta-primary:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
}

.curiosity-hook {
    padding: 5rem 2rem;
    background: var(--primary-light);
}

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

.hook-question {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--accent-color);
    line-height: 1.4;
}

.hook-statement {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.story-section {
    padding: 6rem 2rem;
}

.story-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.story-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.problem-amplification {
    background: var(--accent-color);
    color: #fff;
    padding: 6rem 2rem;
}

.problem-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.problem-wrapper h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.problem-grid {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.problem-card {
    flex: 1;
    background: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-left: 4px solid #fff;
}

.problem-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.problem-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-secondary {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.cta-secondary:hover {
    background: #fff;
    color: var(--accent-color);
}

.insight-reveal {
    padding: 6rem 2rem;
    background: #fff;
}

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

.insight-container h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
    color: var(--primary-dark);
}

.insight-lead {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: var(--accent-color);
    font-weight: 500;
}

.insight-content {
    display: flex;
    gap: 3.5rem;
    align-items: center;
}

.insight-content img {
    flex: 1;
    max-width: 45%;
    height: auto;
}

.insight-text {
    flex: 1;
}

.insight-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.trust-building {
    padding: 6rem 2rem;
    background: var(--primary-light);
}

.trust-wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

.trust-wrapper h2 {
    font-size: 2.6rem;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 700;
}

.trust-features {
    display: flex;
    gap: 3rem;
}

.feature-block {
    flex: 1;
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 40px;
    height: 40px;
}

.feature-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.feature-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.testimonial-inline {
    padding: 5rem 2rem;
    background: var(--accent-highlight);
    color: #fff;
}

.testimonial-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.testimonial-quote {
    flex: 1;
}

.testimonial-quote p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-quote cite {
    font-style: normal;
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

.benefits-cascade {
    padding: 6rem 2rem;
}

.benefits-wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

.benefits-wrapper h2 {
    font-size: 2.6rem;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 700;
}

.benefit-item {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.benefit-item.reverse {
    flex-direction: row-reverse;
}

.benefit-visual {
    flex: 1;
}

.benefit-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.benefit-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.social-proof {
    padding: 5rem 2rem;
    background: var(--primary-light);
}

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

.proof-container h2 {
    font-size: 2.4rem;
    margin-bottom: 3.5rem;
    font-weight: 700;
}

.proof-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 4rem;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.proof-featured {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.logo-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.publication-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    opacity: 0.7;
}

.collection-preview {
    padding: 6rem 2rem;
}

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

.collection-container h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.collection-intro {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-secondary);
}

.collection-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.collection-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background: #fff;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

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

.item-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.collection-item:hover .item-image img {
    transform: scale(1.05);
}

.item-details {
    padding: 2rem;
}

.item-details h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.item-details p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.item-cta {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.item-cta:hover {
    background: var(--accent-highlight);
}

.pricing-reveal {
    padding: 6rem 2rem;
    background: var(--primary-dark);
    color: #fff;
}

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

.pricing-container h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.pricing-philosophy {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.9;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.price-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.price-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.3);
}

.price-card.featured {
    border: 2px solid #fff;
}

.price-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.price-context {
    font-size: 1rem;
    opacity: 0.85;
    line-height: 1.6;
}

.value-proposition {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255,255,255,0.1);
    border-left: 4px solid #fff;
}

.value-proposition p {
    font-size: 1.2rem;
    line-height: 1.7;
}

.urgency-element {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
}

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

.urgency-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.urgency-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.urgency-highlight {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 1.5rem;
}

.order-section {
    padding: 6rem 2rem;
    background: var(--primary-light);
}

.order-container {
    max-width: 800px;
    margin: 0 auto;
}

.order-container h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.order-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-secondary);
}

.order-form {
    background: #fff;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-row {
    display: flex;
    gap: 2rem;
}

.btn-submit {
    width: 100%;
    padding: 1.3rem;
    background: var(--accent-color);
    color: #fff;
    border: none;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--accent-highlight);
}

.final-cta {
    padding: 6rem 2rem;
    background: var(--accent-color);
    color: #fff;
}

.final-cta-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-wrapper h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.final-cta-wrapper p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-large {
    display: inline-block;
    padding: 1.4rem 3.5rem;
    background: #fff;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s;
}

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

.sticky-btn {
    display: block;
    padding: 1.2rem 2.5rem;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: var(--accent-highlight);
    transform: translateY(-2px);
}

.main-footer {
    background: var(--primary-dark);
    color: #fff;
    padding: 4rem 2rem 2rem;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    font-size: 1rem;
    opacity: 0.85;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.95rem;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--success-green);
    font-weight: 700;
}

.thanks-container p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
}

.thanks-container .selected-service {
    font-weight: 700;
    color: var(--accent-color);
}

.thanks-container a {
    display: inline-block;
    margin-top: 2rem;
    padding: 1.1rem 2.5rem;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.thanks-container a:hover {
    background: var(--accent-highlight);
}

.page-header {
    background: var(--accent-color);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.page-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-content h2 {
    font-size: 2.2rem;
    margin: 3rem 0 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.page-content h3 {
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.page-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.page-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-content ul li {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.contact-info {
    background: var(--primary-light);
    padding: 3rem;
    margin: 3rem 0;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 1rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin: 3rem 0;
}

.service-card {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 300px;
    background: var(--primary-light);
    padding: 2.5rem;
    border-left: 4px solid var(--accent-color);
}

.service-card h3 {
    margin-top: 0;
    color: var(--accent-color);
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

@media (max-width: 1024px) {
    .hero-headline {
        font-size: 2.8rem;
    }

    .story-container {
        flex-direction: column;
    }

    .problem-grid {
        flex-direction: column;
    }

    .insight-content {
        flex-direction: column;
    }

    .insight-content img {
        max-width: 100%;
    }

    .trust-features {
        flex-direction: column;
    }

    .testimonial-container {
        flex-direction: column;
    }

    .benefit-item,
    .benefit-item.reverse {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: #fff;
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-headline {
        font-size: 2.2rem;
    }

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

    .hook-question {
        font-size: 1.5rem;
    }

    .collection-item {
        flex: 1 1 100%;
    }

    .price-card {
        flex: 1 1 100%;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .sticky-btn {
        width: 100%;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .service-card {
        flex: 1 1 100%;
    }
}