* {
    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: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

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

.btn-accept {
    background: #d4af37;
    color: #000;
}

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

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

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

.header-minimal {
    padding: 20px 40px;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #2c2c2c;
}

.ad-disclosure {
    font-size: 12px;
    color: #888;
    padding: 5px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

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

.nav-floating a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-floating a:hover {
    color: #d4af37;
}

.hero-visual {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    max-width: 900px;
    padding: 40px;
}

.hero-title {
    font-size: 56px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.story-intro {
    padding: 100px 40px;
    background: #f9f9f9;
}

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

.story-lead {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 300;
}

.story-container p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.insight-section {
    padding: 80px 40px;
    background: #fff;
}

.insight-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.insight-image {
    flex: 1;
    background-color: #f0f0f0;
}

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

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 400;
    color: #1a1a1a;
}

.insight-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.problem-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
    color: #fff;
}

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

.problem-container h2 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 300;
}

.problem-container p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.collection-showcase {
    padding: 100px 40px;
    background: #fff;
}

.section-heading {
    text-align: center;
    font-size: 42px;
    margin-bottom: 80px;
    font-weight: 300;
    color: #1a1a1a;
}

.collection-item {
    max-width: 1200px;
    margin: 0 auto 100px auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.collection-visual {
    flex: 1;
    background-color: #f5f5f5;
}

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

.collection-info {
    flex: 1;
}

.collection-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #2c2c2c;
}

.collection-info p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #555;
}

.cta-inline {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 35px;
    background: #d4af37;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-inline:hover {
    background: #b8941f;
}

.trust-section {
    padding: 80px 40px;
    background: #f9f9f9;
}

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

.trust-container h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    font-weight: 300;
}

.trust-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.trust-card {
    flex: 1;
    padding: 30px;
    background: #fff;
    border-left: 4px solid #d4af37;
}

.trust-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.testimonial-section {
    padding: 80px 40px;
    background: #fff;
}

.testimonial-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.testimonial {
    flex: 1;
    padding: 40px;
    background: #f9f9f9;
    border-left: 3px solid #d4af37;
}

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

.testimonial cite {
    font-size: 14px;
    font-style: normal;
    color: #888;
}

.pricing-reveal {
    padding: 100px 40px;
    background: linear-gradient(to bottom, #f5f5f5 0%, #fff 100%);
}

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

.pricing-container h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 300;
}

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

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.price-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    padding: 40px 30px;
    background: #fff;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.price {
    font-size: 36px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 25px;
}

.price-card ul {
    list-style: none;
}

.price-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    color: #666;
}

.price-card ul li:last-child {
    border-bottom: none;
}

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

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

.form-container h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 300;
    text-align: center;
}

.form-container > p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 50px;
    opacity: 0.9;
}

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

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

.form-group label {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    padding: 15px;
    font-size: 16px;
    border: 1px solid #555;
    background: #2a2a2a;
    color: #fff;
}

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

.btn-submit {
    padding: 18px 40px;
    background: #d4af37;
    color: #000;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #b8941f;
}

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

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

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

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

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

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

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

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

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

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

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

.footer-col ul li a:hover {
    color: #d4af37;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

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

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

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

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

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

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

    .nav-floating {
        gap: 15px;
    }

    .nav-floating a {
        font-size: 13px;
    }
}