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

:root {
    --primary: #1a1a1a;
    --secondary: #f4f4f4;
    --accent: #d4a574;
    --text: #333;
    --text-light: #666;
    --white: #fff;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    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;
    margin: 0;
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--accent);
    color: var(--primary);
}

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

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

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

.floating-nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 3rem;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s;
}

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

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--accent);
}

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

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

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 90%;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.story-intro {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--secondary);
}

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

.narrow-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.narrow-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.visual-break {
    position: relative;
    height: 70vh;
    min-height: 500px;
}

.image-grid-overlay {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.overlay-text {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 2.5rem;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.overlay-text p {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.problem-amplification {
    padding: var(--spacing-xl) 0;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
}

.split-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.insight-reveal {
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
}

.insight-reveal h2 {
    color: var(--white);
}

.insight-reveal p {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem;
    border-left: 4px solid var(--accent);
    background: rgba(255, 255, 255, 0.05);
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: var(--accent);
}

.visual-break-2 {
    position: relative;
}

.full-image-section {
    position: relative;
}

.full-image-section img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
}

.image-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 3rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    max-width: 600px;
}

.trust-building {
    padding: var(--spacing-xl) 0;
}

.trust-building h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
}

.process-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-card {
    flex: 1;
    min-width: 250px;
    padding: 2.5rem;
    background: var(--secondary);
    border-radius: 10px;
    transition: transform 0.3s;
}

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

.process-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 1rem;
}

.process-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.process-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.testimonials-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--primary);
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--accent);
    color: var(--white);
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    display: block;
    font-style: normal;
    color: var(--accent);
    font-size: 0.9rem;
}

.benefits-reveal {
    padding: var(--spacing-xl) 0;
}

.benefits-reveal h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
}

.benefits-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-large {
    flex: 2;
    min-width: 300px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.benefit-content {
    padding: 2rem;
    background: var(--white);
}

.benefit-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.benefit-small {
    flex: 1;
    min-width: 250px;
    padding: 2.5rem;
    background: var(--secondary);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefit-small h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.benefit-small p {
    color: var(--text-light);
    line-height: 1.6;
}

.cta-section-mid {
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(135deg, var(--accent) 0%, #c89660 100%);
    text-align: center;
}

.cta-overlay h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 2rem;
}

.cta-button-large {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.services-preview {
    padding: var(--spacing-xl) 0;
    background: var(--secondary);
}

.services-preview h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 3px solid var(--accent);
}

.service-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.limited-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(212, 165, 116, 0.95);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
}

.limited-badge.exclusive {
    background: rgba(26, 26, 26, 0.95);
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
}

.service-card p {
    padding: 0 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.price {
    padding: 0 1.5rem 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.select-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background: var(--accent);
    color: var(--primary);
}

.urgency-section {
    padding: var(--spacing-lg) var(--spacing-md);
    background: var(--primary);
}

.urgency-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.urgency-box h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1.5rem;
}

.urgency-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.urgency-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.form-section {
    padding: var(--spacing-xl) var(--spacing-md);
}

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

.form-container h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.form-container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.order-form {
    background: var(--secondary);
    padding: 2.5rem;
    border-radius: 10px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
}

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

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.form-group label:has(input[type="checkbox"]) {
    display: flex;
    align-items: center;
    font-weight: 400;
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background: #c89660;
    transform: translateY(-2px);
}

.guarantee-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.guarantee-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
}

.guarantee-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.guarantee-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.guarantee-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.site-footer {
    background: var(--primary);
    color: var(--white);
    padding: 3rem var(--spacing-md) 1.5rem;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent);
    padding: 1rem;
    z-index: 999;
    display: none;
}

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

.sticky-cta-btn {
    display: block;
    text-align: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.75rem;
}

@media (max-width: 768px) {
    .floating-nav {
        top: 1rem;
        padding: 1rem;
        gap: 1rem;
        width: 90%;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .split-content {
        flex-direction: column;
        gap: 2rem;
    }

    .overlay-text {
        left: 1rem;
        bottom: 1rem;
        padding: 1.5rem;
        max-width: calc(100% - 2rem);
    }

    .form-row {
        flex-direction: column;
    }

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

    .urgency-stats {
        gap: 2rem;
    }

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

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--white) 100%);
}

.thanks-content {
    max-width: 600px;
    text-align: center;
    background: var(--white);
    padding: 4rem 2rem;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.thanks-content h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.thanks-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.thanks-details {
    background: var(--secondary);
    padding: 1.5rem;
    border-radius: 5px;
    margin: 2rem 0;
    text-align: left;
}

.thanks-details p {
    margin-bottom: 0.5rem;
}

.thanks-details strong {
    color: var(--primary);
}

.btn-home {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent);
    color: var(--white);
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
    margin-top: 1rem;
}

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

.contact-page {
    padding: 8rem var(--spacing-md) var(--spacing-xl);
}

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

.contact-container h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 3rem;
    text-align: center;
}

.contact-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.legal-page {
    padding: 8rem var(--spacing-md) var(--spacing-xl);
    background: var(--secondary);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
}

.legal-container h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.legal-container ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-container li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: var(--accent);
    text-decoration: underline;
}

.legal-date {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}