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

body {
    font-family: 'Georgia', 'Garamond', serif;
    line-height: 1.7;
    color: #2c1810;
    background: #fdfbf7;
}

.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: 1rem 0;
    box-shadow: 0 2px 20px 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: bold;
    color: #8b4513;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

.nav-cta {
    background: #8b4513;
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.3s;
}

.nav-cta:hover {
    background: #a0522d;
}

.hero-visual {
    position: relative;
    height: 85vh;
    margin-top: 70px;
    overflow: hidden;
}

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

.hero-overlay {
    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.5));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: normal;
    margin-bottom: 1.5rem;
    max-width: 900px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    font-style: italic;
}

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

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

.opening-line {
    font-size: 1.6rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: #8b4513;
}

.narrow-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.problem-amplification {
    padding: 5rem 2rem;
    background: #f5f0e8;
}

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

.content-wide h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: normal;
}

.split-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.text-block {
    flex: 1;
}

.text-block p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
}

.image-block {
    flex: 1;
}

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

.insight-reveal {
    padding: 6rem 2rem;
    background: #2c1810;
    color: #fff;
}

.centered {
    text-align: center;
}

.insight-reveal h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: normal;
}

.large-text {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: #d4a574;
}

.cta-inline {
    margin-top: 3rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.btn-secondary:hover {
    background: white;
    color: #2c1810;
}

.storytelling-flow {
    padding: 5rem 2rem;
    background: #fff;
}

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

.asymmetric-layout.reverse {
    flex-direction: row-reverse;
}

.content-block {
    flex: 1.2;
}

.content-block h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.content-block p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.offset-left {
    padding-right: 2rem;
}

.offset-right {
    padding-left: 2rem;
}

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

.testimonials-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.quote {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.author {
    font-size: 0.95rem;
    color: #8b4513;
    font-weight: bold;
}

.benefits-reveal {
    padding: 6rem 2rem;
    background: #fff;
}

.section-intro {
    font-size: 1.2rem;
    color: #666;
    margin-top: 1rem;
}

.services-showcase {
    max-width: 1300px;
    margin: 4rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-item {
    display: flex;
    gap: 3rem;
    background: #fafafa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
}

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

.service-details {
    flex: 1.3;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: normal;
    color: #2c1810;
}

.service-details p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.price-tag {
    font-size: 2rem;
    color: #8b4513;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.btn-select {
    padding: 1rem 2rem;
    background: #8b4513;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.05rem;
    transition: background 0.3s;
    align-self: flex-start;
}

.btn-select:hover {
    background: #a0522d;
}

.urgency-section {
    padding: 5rem 2rem;
    background: #fff4e6;
}

.urgency-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: normal;
}

.highlight-text {
    font-size: 1.3rem;
    color: #8b4513;
    font-weight: bold;
    margin-top: 1.5rem;
}

.form-section {
    padding: 6rem 2rem;
    background: #fff;
}

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

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

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.order-form {
    background: #f9f9f9;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #2c1810;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background: #fff;
    cursor: not-allowed;
}

.btn-primary-large {
    width: 100%;
    padding: 1.2rem;
    background: #8b4513;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: bold;
}

.btn-primary-large:hover {
    background: #a0522d;
}

.form-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

.form-note a {
    color: #8b4513;
    text-decoration: underline;
}

.final-trust {
    padding: 5rem 2rem;
    background: #f5f0e8;
}

.guarantees-flex {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.guarantee-item {
    flex: 1;
    text-align: center;
    padding: 2rem;
}

.guarantee-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: normal;
    color: #8b4513;
}

.guarantee-item p {
    font-size: 1.05rem;
    color: #555;
}

.footer {
    background: #2c1810;
    color: #d4a574;
    padding: 4rem 2rem 2rem;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: normal;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-column a {
    color: #d4a574;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a3020;
}

.footer-bottom p {
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: rgba(139, 69, 19, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    display: none;
}

.sticky-btn {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
    padding: 1.2rem;
    background: white;
    color: #8b4513;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

.sticky-btn:hover {
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c1810;
    color: white;
    padding: 1.5rem;
    z-index: 1001;
    display: none;
}

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.btn-accept {
    background: #8b4513;
    color: white;
}

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

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

    .split-content,
    .asymmetric-layout,
    .testimonials-grid,
    .guarantees-flex,
    .footer-content {
        flex-direction: column;
    }

    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .sticky-cta {
        display: block;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}