* {
    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: #2c2c2c;
    background: #ffffff;
}

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

.cookie-banner.show {
    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 {
    margin: 0;
    flex: 1;
}

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

.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: #ffd700;
    color: #000;
}

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

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

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

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

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

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

.nav-cta-btn {
    background: #1a1a1a;
    color: #fff;
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.nav-cta-btn:hover {
    background: #d4af37;
    color: #000;
}

.hero-visual {
    position: relative;
    height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7), rgba(212, 175, 55, 0.5)),
                url('https://images.unsplash.com/photo-1441984904996-e0b6ba687e04?w=1600&h=1200&fit=crop') center/cover;
    z-index: 0;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 40px;
}

.hero-title {
    font-size: 62px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
}

.hero-cta {
    background: #d4af37;
    color: #000;
    padding: 18px 48px;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.hero-cta:hover {
    background: #ffd700;
    transform: translateY(-2px);
}

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

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.story-text p {
    font-size: 19px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.7;
}

.story-visual {
    flex: 1;
}

.visual-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.problem-section {
    padding: 90px 40px;
    background: #fff;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.problem-section h2 {
    font-size: 44px;
    margin-bottom: 24px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 800;
}

.lead-text {
    font-size: 20px;
    text-align: center;
    margin-bottom: 60px;
    color: #4a4a4a;
    line-height: 1.6;
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.problem-card {
    background: #f4f4f4;
    padding: 36px;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

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

.problem-card p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.6;
}

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

.insight-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.insight-image {
    flex: 1;
}

.insight-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.insight-content {
    flex: 1;
}

.insight-content h2 {
    font-size: 42px;
    margin-bottom: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.insight-content p {
    font-size: 19px;
    margin-bottom: 20px;
    line-height: 1.7;
    opacity: 0.92;
}

.cta-inline {
    background: #d4af37;
    color: #000;
    padding: 16px 36px;
    border: none;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 16px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

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

.trust-building {
    padding: 90px 40px;
    background: #f9f9f9;
}

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

.section-title-center {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 800;
}

.trust-items {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 32px;
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #d4af37;
}

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

.trust-item p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.6;
}

.testimonials-inline {
    padding: 80px 40px;
    background: #fff;
}

.testimonial {
    margin-bottom: 48px;
    padding: 32px;
    background: #f4f4f4;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

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

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

.collections-preview {
    padding: 100px 40px;
    background: #f9f9f9;
}

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

.collection-card {
    flex: 1;
    min-width: 380px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.collection-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

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

.collection-info {
    padding: 32px;
}

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

.collection-info p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 24px;
    line-height: 1.6;
}

.collection-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.collection-items {
    font-size: 14px;
    color: #666;
}

.collection-price {
    font-size: 22px;
    font-weight: 700;
    color: #d4af37;
}

.urgency-block {
    padding: 80px 40px;
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    color: #fff;
    text-align: center;
}

.urgency-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 800;
}

.urgency-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-urgent {
    background: #d4af37;
    color: #000;
    padding: 18px 48px;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.cta-urgent:hover {
    background: #ffd700;
    transform: scale(1.05);
}

.form-section {
    padding: 100px 40px;
    background: #f9f9f9;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.form-intro {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 40px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-privacy {
    margin-bottom: 32px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #4a4a4a;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-label a {
    color: #d4af37;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.final-cta-section {
    padding: 90px 40px;
    background: #fff;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 44px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 800;
}

.final-cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #4a4a4a;
}

.cta-final {
    background: #d4af37;
    color: #000;
    padding: 18px 48px;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.cta-final:hover {
    background: #ffd700;
    transform: translateY(-2px);
}

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

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

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #d4af37;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 8px;
}

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

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

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    opacity: 0.85;
}

.footer-section ul li a:hover {
    color: #d4af37;
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.sticky-cta-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #d4af37;
    color: #000;
    padding: 16px 32px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s ease;
    display: none;
}

.sticky-cta-button.show {
    display: block;
}

.sticky-cta-button:hover {
    background: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

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

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

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

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

    .story-wrapper,
    .insight-wrapper {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .collection-card {
        min-width: 100%;
    }

    .form-container {
        padding: 40px 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .sticky-cta-button {
        bottom: 20px;
        right: 20px;
        padding: 14px 24px;
        font-size: 14px;
    }
}