* {
    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: #2c3e50;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

.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: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background: white;
    color: #000;
}

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    z-index: 1000;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

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

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

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

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
    border-radius: 20px;
    filter: blur(30px);
}

.hero-overlay h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-overlay p {
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-hero {
    display: inline-block;
    padding: 18px 50px;
    background: white;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.story-hook {
    padding: 120px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.story-wrapper h2 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 700;
}

.story-wrapper p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

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

.visual-left {
    flex: 1;
    overflow: hidden;
}

.visual-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-right {
    flex: 1;
    padding: 80px 60px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-right h3 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.content-right p {
    font-size: 19px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.problem-amplify {
    padding: 100px 20px;
    background: #1a1a1a;
    color: white;
}

.problem-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    background: #2d2d2d;
    border-radius: 15px;
}

.problem-card h4 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #ff6b6b;
}

.problem-list {
    list-style: none;
    margin-bottom: 40px;
}

.problem-list li {
    font-size: 20px;
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
}

.problem-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
}

.problem-conclusion {
    font-size: 22px;
    font-weight: 600;
    color: #ffd93d;
    border-top: 2px solid #444;
    padding-top: 30px;
}

.insight-reveal {
    padding: 120px 20px;
    background: white;
}

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

.insight-content h2 {
    font-size: 52px;
    text-align: center;
    margin-bottom: 80px;
    color: #2c3e50;
}

.insight-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.insight-item {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
}

.insight-item h5 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.insight-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.testimonials-flow {
    padding: 100px 20px;
    background: #ecf0f1;
}

.testimonials-flow h3 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.testimonial-scroll {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    padding-bottom: 20px;
}

.testimonial {
    flex: 0 0 350px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    color: #555;
}

.testimonial span {
    font-weight: 600;
    color: #3498db;
}

.collection-reveal {
    padding: 120px 20px;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.collection-reveal h2 {
    font-size: 52px;
    text-align: center;
    margin-bottom: 80px;
    color: #2c3e50;
}

.collection-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    justify-content: center;
}

.collection-card {
    flex: 0 0 calc(50% - 15px);
    min-width: 300px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.collection-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.card-info {
    padding: 30px;
}

.card-info h4 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.card-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

.trust-builder {
    padding: 80px 20px;
    background: #2c3e50;
    color: white;
}

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

.trust-content h3 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.trust-item {
    flex: 0 0 calc(25% - 30px);
    min-width: 200px;
    text-align: center;
    padding: 30px;
}

.trust-icon {
    display: block;
    font-size: 48px;
    margin-bottom: 20px;
    color: #27ae60;
}

.trust-item p {
    font-size: 18px;
    font-weight: 600;
}

.urgency-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
}

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

.urgency-box h3 {
    font-size: 42px;
    margin-bottom: 25px;
}

.urgency-box p {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.urgency-highlight {
    font-size: 24px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.form-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-wrapper h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 17px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    padding: 15px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
}

.btn-submit {
    padding: 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.final-push {
    padding: 100px 20px;
    background: #1a1a1a;
    color: white;
}

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

.final-content h3 {
    font-size: 42px;
    margin-bottom: 30px;
}

.final-content p {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-final {
    display: inline-block;
    padding: 20px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s ease;
}

.cta-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 20px 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: 200px;
}

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

.footer-col p {
    opacity: 0.8;
}

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

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

.footer-col ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
}

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        top: 10px;
        border-radius: 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-overlay h1 {
        font-size: 42px;
    }

    .hero-overlay p {
        font-size: 18px;
    }

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

    .content-right {
        padding: 40px 30px;
    }

    .content-right h3 {
        font-size: 32px;
    }

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

    .collection-card {
        flex: 0 0 100%;
    }

    .trust-item {
        flex: 0 0 calc(50% - 20px);
    }

    .form-wrapper {
        padding: 40px 30px;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

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