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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #ffffff;
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.2rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #999;
    padding: 0.3rem 0.8rem;
    background: #f5f5f5;
    border-radius: 4px;
}

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

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

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 900px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

.story-intro {
    padding: 6rem 2rem;
    background: #fafafa;
}

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

.story-image {
    flex: 1;
    background-color: #e5e5e5;
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    line-height: 1.3;
    color: #1a1a1a;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.problem-reveal {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.reveal-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

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

.problem-card {
    flex: 1;
    max-width: 350px;
    padding: 2.5rem;
    background: #f9f9f9;
    border-left: 4px solid #d32f2f;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.problem-card p {
    color: #555;
    line-height: 1.7;
}

.insight-section {
    position: relative;
    height: 700px;
    background-color: #2c2c2c;
}

.insight-visual {
    width: 100%;
    height: 100%;
}

.insight-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.insight-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insight-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 4rem;
    max-width: 700px;
    margin: 0 2rem;
}

.insight-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.insight-box p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.trust-building {
    padding: 6rem 2rem;
    background: #fafafa;
}

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

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 2.3rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

.pillars-list {
    list-style: none;
}

.pillars-list li {
    margin-bottom: 2rem;
    padding-left: 2rem;
    position: relative;
}

.pillars-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #2196f3;
    border-radius: 50%;
}

.pillars-list strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.pillars-list span {
    display: block;
    color: #555;
    line-height: 1.6;
}

.trust-image {
    flex: 1;
    background-color: #e5e5e5;
}

.trust-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.testimonials-inline {
    padding: 5rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

.testimonials-inline h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.testimonials-flow {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    max-width: 400px;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #2196f3;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #aaa;
}

.benefits-reveal {
    background: #ffffff;
}

.benefits-hero {
    height: 500px;
    background-color: #2c2c2c;
}

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

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

.benefits-content h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.benefit-item {
    flex: 1;
    min-width: 280px;
}

.benefit-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.benefit-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

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

.collection-preview h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.collection-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
}

.collection-card {
    flex: 1;
    background: #ffffff;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.card-image {
    width: 100%;
    height: 280px;
    background-color: #e5e5e5;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.card-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-cta {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #2196f3;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.card-cta:hover {
    background: #1976d2;
}

.pricing-reveal {
    padding: 6rem 2rem;
    background: #ffffff;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.pricing-intro p {
    font-size: 1.2rem;
    color: #666;
}

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

.pricing-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2.5rem;
    background: #fafafa;
    border: 2px solid #e5e5e5;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: #2196f3;
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.15);
}

.pricing-card.featured {
    background: #f0f7ff;
    border-color: #2196f3;
}

.pricing-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2196f3;
    margin-bottom: 2rem;
}

.features {
    list-style: none;
}

.features li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2196f3;
    font-weight: 700;
}

.order-section {
    padding: 6rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

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

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

.order-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 3rem;
}

.order-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-size: 1rem;
    color: #e5e5e5;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 4px;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #2c2c2c;
    color: #ffffff;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: #2196f3;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #1976d2;
}

.final-cta {
    padding: 5rem 2rem;
    background: #f0f7ff;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.final-cta-content p {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: #2196f3;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #1976d2;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background: #fafafa;
}

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

.disclaimer-text {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.7;
    text-align: center;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

.footer-section {
    flex: 1;
}

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

.footer-section p {
    color: #aaa;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #2196f3;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #2196f3;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background: #2196f3;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #1976d2;
}

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

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .story-wrapper,
    .trust-container {
        flex-direction: column;
    }

    .problem-grid,
    .testimonials-flow,
    .collection-grid {
        flex-direction: column;
    }

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

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