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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #2a2a2a;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.nav-floating {
    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;
    border-bottom: 1px solid #e0e0e0;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: lowercase;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #2a2a2a;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.6;
}

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    font-style: italic;
    padding: 0.3rem 0.8rem;
    border: 1px solid #ccc;
    border-radius: 3px;
}

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

.hero-image-overlay {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

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

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

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

.cta-hero {
    display: inline-block;
    padding: 1rem 3rem;
    background: white;
    color: #2a2a2a;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.cta-hero:hover {
    background: transparent;
    color: white;
}

.narrative-intro {
    padding: 6rem 2rem;
    background: #ffffff;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
    color: #3a3a3a;
}

.image-section-full {
    width: 100%;
    overflow: hidden;
}

.problem-reveal {
    padding: 6rem 2rem;
    background: #f5f5f5;
}

.content-offset-left {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 8%;
}

.content-offset-left h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: 0.5px;
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.problem-item h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.problem-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    max-width: 600px;
}

.insight-visual {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.insight-image {
    flex: 1;
}

.insight-content {
    flex: 1;
}

.insight-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.insight-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.trust-elements {
    padding: 5rem 2rem;
    background: #2a2a2a;
    color: white;
}

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

.trust-card {
    flex: 1;
    text-align: center;
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

.trust-card h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.trust-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.testimonials-inline {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

.testimonial-flow {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial {
    border-left: 3px solid #d4af37;
    padding-left: 2rem;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.testimonial cite {
    font-size: 0.95rem;
    font-style: normal;
    color: #666;
}

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

.collection-header {
    text-align: center;
    margin-bottom: 4rem;
}

.collection-header h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.collection-header p {
    font-size: 1.1rem;
    color: #666;
}

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

.collection-card {
    width: calc(50% - 1.5rem);
    background: #f9f9f9;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

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

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.card-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
}

.price {
    font-size: 1.5rem;
    font-weight: 400;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.select-service {
    width: 100%;
    padding: 0.9rem;
    background: #2a2a2a;
    color: white;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.select-service:hover {
    background: #1a1a1a;
}

.select-service.selected {
    background: #d4af37;
    color: #1a1a1a;
}

.cta-sticky-reveal {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #3a3a3a 0%, #1a1a1a 100%);
    color: white;
    text-align: center;
}

.cta-container h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.cta-container p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.form-section {
    padding: 5rem 2rem;
    background: #f5f5f5;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
}

.form-control {
    padding: 0.9rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
    background: #f9f9f9;
}

.form-control:focus {
    outline: none;
    border-color: #2a2a2a;
}

.btn-submit {
    padding: 1rem;
    background: #2a2a2a;
    color: white;
    border: none;
    font-size: 1.1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #1a1a1a;
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

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

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

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

.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 2rem 2rem;
}

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

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

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

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

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

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

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

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

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

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

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

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

.thanks-container {
    max-width: 700px;
    margin: 150px auto 100px;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #2a2a2a;
}

.thanks-container p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.thanks-container .service-selected {
    font-size: 1.3rem;
    color: #d4af37;
    font-weight: 400;
    margin: 2rem 0;
}

.thanks-container a {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 3rem;
    background: #2a2a2a;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.thanks-container a:hover {
    background: #1a1a1a;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

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

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

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

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

    .collection-card {
        width: 100%;
    }

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

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