* {
    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;
    overflow-x: hidden;
}

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

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

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

.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: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

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

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

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

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

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

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

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 50px;
}

.hero-text-block {
    max-width: 600px;
    color: #fff;
}

.hero-text-block h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

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

.btn-hero {
    display: inline-block;
    padding: 16px 40px;
    background: #d4a574;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 16px;
}

.btn-hero:hover {
    background: #c09463;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.3);
}

.intro-asymmetric {
    padding: 100px 0;
    background: #fafafa;
}

.intro-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: #2c2c2c;
}

.intro-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.intro-image {
    flex: 0.8;
}

.intro-image img {
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.story-section {
    padding: 0;
    margin: 80px 0;
}

.story-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
}

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

.story-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    align-items: center;
}

.story-inner {
    max-width: 500px;
    padding: 60px;
    color: #fff;
}

.story-inner h3 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.story-inner p {
    font-size: 17px;
    margin-bottom: 30px;
    line-height: 1.7;
    opacity: 0.95;
}

.btn-ghost {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    background: transparent;
}

.btn-ghost:hover {
    background: #fff;
    color: #2c2c2c;
}

.benefits-offset {
    padding: 100px 0;
    background: #fff;
}

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-card {
    flex: 1 1 calc(50% - 15px);
    background: #fafafa;
    padding: 40px;
    border-radius: 8px;
    min-width: 280px;
}

.benefit-large {
    flex: 1 1 100%;
    background: #f5f0eb;
}

.benefit-accent {
    background: #2c2c2c;
    color: #fff;
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.benefit-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.benefit-accent p {
    color: #ddd;
}

.testimonial-visual {
    padding: 100px 0;
    background: #fafafa;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.testimonial-image-side {
    flex: 0.8;
}

.testimonial-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.testimonial-content-side {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    padding: 20px;
}

blockquote {
    border-left: 4px solid #d4a574;
    padding-left: 30px;
}

blockquote p {
    font-size: 19px;
    line-height: 1.7;
    font-style: italic;
    color: #2c2c2c;
    margin-bottom: 15px;
}

cite {
    font-style: normal;
    font-weight: 600;
    color: #555;
    font-size: 15px;
}

.testimonial-secondary {
    opacity: 0.85;
}

.services-presentation {
    padding: 120px 0;
    background: #fff;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #2c2c2c;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-visual-card {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 300px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    cursor: pointer;
}

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

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

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

.service-visual-card:hover .service-image-wrapper img {
    transform: scale(1.08);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #2c2c2c;
}

.service-info p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: 700;
}

.cta-immersive {
    position: relative;
    height: 500px;
    margin: 80px 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 44, 44, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 40px;
    text-align: center;
}

.cta-overlay-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-overlay-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-large-white {
    display: inline-block;
    padding: 18px 50px;
    background: #fff;
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 17px;
}

.btn-large-white:hover {
    background: #d4a574;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.process-visual {
    padding: 100px 0;
    background: #fafafa;
}

.section-title-offset {
    font-size: 44px;
    margin-bottom: 60px;
    font-weight: 700;
    color: #2c2c2c;
    padding-left: 40px;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 15px;
}

.process-step h4 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.process-step p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.process-connector {
    width: 60px;
    height: 2px;
    background: #d4a574;
    flex-shrink: 0;
}

.form-section-visual {
    padding: 100px 0;
    background: #fff;
}

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

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
}

.form-header p {
    font-size: 16px;
    color: #666;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-weight: 600;
    color: #2c2c2c;
    font-size: 15px;
}

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

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

.btn-submit {
    padding: 16px 40px;
    background: #d4a574;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #c09463;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.trust-section {
    padding: 100px 0;
    background: #2c2c2c;
    color: #fff;
}

.trust-content {
    text-align: center;
}

.trust-content h3 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 700;
}

.trust-content p {
    font-size: 17px;
    margin-bottom: 50px;
    opacity: 0.9;
    line-height: 1.7;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.8;
}

.final-cta-sticky {
    position: relative;
}

.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #d4a574;
    padding: 18px 30px;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-cta-text {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.btn-sticky {
    display: inline-block;
    padding: 12px 35px;
    background: #fff;
    color: #d4a574;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-sticky:hover {
    background: #2c2c2c;
    color: #fff;
}

.footer-visual {
    background: #1a1a1a;
    color: #ddd;
    padding: 60px 0 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.8;
}

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

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

.footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #d4a574;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 20px 30px;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.btn-cookie-accept {
    background: #d4a574;
    color: #fff;
}

.btn-cookie-accept:hover {
    background: #c09463;
}

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

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

.thanks-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.thanks-overlay.hidden {
    display: none;
}

.thanks-content {
    background: #fff;
    padding: 60px 50px;
    border-radius: 8px;
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.thanks-checkmark {
    font-size: 80px;
    color: #d4a574;
    margin-bottom: 20px;
}

.thanks-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #2c2c2c;
}

.thanks-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-primary {
    padding: 14px 40px;
    background: #d4a574;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #c09463;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-text-block h1 {
        font-size: 40px;
    }

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

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

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

    .service-visual-card {
        flex: 1 1 100%;
    }

    .process-flow {
        flex-direction: column;
    }

    .process-connector {
        width: 2px;
        height: 40px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

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

    .benefit-card {
        flex: 1 1 100%;
    }

    .trust-stats {
        flex-direction: column;
        gap: 30px;
    }

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

    .sticky-cta-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
