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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 1.5rem;
    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: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

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

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

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

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

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: #2a2a2a;
}

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #2a2a2a;
    transition: all 0.3s ease;
}

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

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

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

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

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #d4af37;
    color: #000;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

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

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

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

.opening-line {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: #d4af37;
    line-height: 1.5;
}

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

.visual-break {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

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

.image-caption {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 3rem;
    max-width: 600px;
    text-align: center;
}

.image-caption p {
    font-size: 1.2rem;
    font-style: italic;
    color: #2a2a2a;
}

.problem-amplify {
    padding: 7rem 2rem;
    background: #f5f5f5;
}

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

.content-left {
    flex: 1;
}

.content-left h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.content-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.emphasis {
    font-size: 1.3rem;
    font-style: italic;
    color: #d4af37;
    margin-top: 2rem;
}

.content-right {
    flex: 1;
}

.content-right img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

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

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

.insight-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #d4af37;
}

.insight-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.insight-visual img {
    width: 100%;
    height: auto;
    margin-top: 2rem;
}

.trust-build {
    padding: 7rem 2rem;
    background: #fff;
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 300px;
}

.trust-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

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

.trust-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

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

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

.testimonial-content blockquote {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #2a2a2a;
}

.testimonial-content cite {
    font-size: 1rem;
    font-style: normal;
    color: #888;
}

.visual-immersion {
    padding: 4rem 2rem;
    background: #fff;
}

.immersion-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.immersion-grid img {
    object-fit: cover;
}

.img-tall {
    width: calc(25% - 1.5rem);
    height: 600px;
}

.img-wide {
    width: calc(50% - 1.5rem);
    height: 400px;
}

.img-square {
    width: calc(25% - 1.5rem);
    height: 400px;
}

.img-landscape {
    width: calc(50% - 1.5rem);
    height: 600px;
}

.story-continuation {
    padding: 7rem 2rem;
    background: #f5f5f5;
}

.story-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.story-wrapper h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 4rem;
    text-align: center;
}

.story-steps {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.step-number {
    font-size: 3rem;
    color: #d4af37;
    display: block;
    margin-bottom: 1rem;
    font-weight: 300;
}

.step h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.step p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.social-proof {
    padding: 6rem 2rem;
    background: #2a2a2a;
    color: #fff;
}

.social-proof h3 {
    font-size: 2.3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    color: #d4af37;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial-box {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-left: 3px solid #d4af37;
}

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

.testimonial-author {
    font-size: 0.95rem;
    color: #d4af37;
    font-style: normal;
}

.benefits-visual {
    padding: 7rem 2rem;
    background: #fff;
}

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

.benefits-img {
    flex: 1;
    width: 100%;
    height: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.benefits-text {
    flex: 1;
}

.benefits-text h3 {
    font-size: 2.3rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    line-height: 1.3;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.benefits-list li {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    padding-left: 2rem;
    position: relative;
}

.benefits-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 1.2rem;
}

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

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

.urgency-soft {
    padding: 4rem 2rem;
    background: #f9f9f9;
}

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

.urgency-text {
    font-size: 1.25rem;
    line-height: 1.8;
    font-style: italic;
    color: #555;
}

.services-reveal {
    padding: 7rem 2rem;
    background: #fff;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-intro h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.services-intro p {
    font-size: 1.2rem;
    color: #555;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.service-card {
    flex: 1;
    min-width: 350px;
    background: #fafafa;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
}

.service-content h4 {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.service-details {
    font-size: 0.9rem;
    font-style: italic;
    color: #888;
    margin-bottom: 1.5rem;
}

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

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

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

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

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
    font-size: 2.3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.form-intro {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 2.5rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #2a2a2a;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

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

.final-cta {
    padding: 6rem 2rem;
    background: #2a2a2a;
    color: #fff;
    text-align: center;
}

.final-content h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.final-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #d4af37;
    color: #000;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-final:hover {
    background: #f4cf57;
}

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

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

.footer-brand h4 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.footer-brand p {
    font-size: 0.95rem;
    color: #aaa;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h5 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #d4af37;
}

.footer-column a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.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.9rem;
    color: #888;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9998;
}

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #d4af37;
    color: #000;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #f4cf57;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .floating-nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: #fff;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .immersion-grid img {
        width: 100%;
        height: 300px;
    }

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

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

    .story-steps {
        flex-direction: column;
    }

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

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

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}