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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

.nav-menu {
    position: fixed;
    top: 65px;
    right: -100%;
    background: #fff;
    padding: 30px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    min-width: 200px;
}

.nav-menu.active {
    right: 0;
}

.nav-menu a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

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

.hero-visual {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
}

.hero-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    padding: 20px;
    max-width: 800px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.cta-hero {
    display: inline-block;
    padding: 18px 45px;
    background: #d4a574;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.cta-hero:hover {
    background: #c49563;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.6);
}

.intro-narrative {
    padding: 80px 20px;
    background: #fff;
}

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

.narrative-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c2c2c;
}

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

.problem-reveal {
    display: flex;
    flex-direction: column;
    background: #f8f8f8;
}

.problem-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
}

.problem-content {
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.problem-content h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.problem-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.cta-inline {
    display: inline-block;
    color: #d4a574;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    color: #c49563;
    transform: translateX(5px);
}

.visual-grid {
    display: flex;
    flex-direction: column;
    background: #fff;
}

.grid-item {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.grid-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.grid-item:hover .grid-image {
    transform: scale(1.05);
}

.grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
}

.grid-overlay h4 {
    font-size: 28px;
    margin-bottom: 10px;
}

.grid-overlay p {
    font-size: 16px;
    opacity: 0.9;
}

.story-depth {
    padding: 100px 20px;
    background: #2c2c2c;
    color: #fff;
}

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

.story-wrapper h2 {
    font-size: 38px;
    margin-bottom: 35px;
    text-align: center;
}

.story-wrapper p {
    font-size: 19px;
    margin-bottom: 25px;
    line-height: 1.8;
    color: #e0e0e0;
}

.testimonials-flow {
    padding: 80px 20px;
    background: #f5f1ed;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    border-left: 4px solid #d4a574;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial cite {
    font-size: 16px;
    color: #777;
    font-style: normal;
}

.trust-layer {
    padding: 80px 20px;
    background: #fff;
}

.trust-content {
    max-width: 800px;
    margin: 0 auto;
}

.trust-content h3 {
    font-size: 34px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c2c2c;
}

.trust-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trust-list li {
    padding: 20px;
    background: #f8f8f8;
    border-radius: 6px;
    font-size: 18px;
    color: #555;
    padding-left: 50px;
    position: relative;
}

.trust-list li:before {
    content: "✓";
    position: absolute;
    left: 20px;
    color: #d4a574;
    font-size: 24px;
    font-weight: bold;
}

.pricing-reveal {
    padding: 100px 20px;
    background: #fafafa;
}

.pricing-intro {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.pricing-intro h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.pricing-intro p {
    font-size: 19px;
    color: #555;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
}

.service-info {
    padding: 30px;
}

.service-info h4 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-info p {
    font-size: 17px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 15px;
    background: #2c2c2c;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.urgency-block {
    padding: 60px 20px;
    background: linear-gradient(135deg, #d4a574, #c49563);
    color: #fff;
    text-align: center;
}

.urgency-content h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.urgency-content p {
    font-size: 19px;
    max-width: 600px;
    margin: 0 auto 15px;
    line-height: 1.7;
}

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

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 38px;
    margin-bottom: 15px;
    text-align: center;
    color: #2c2c2c;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #d4a574;
    color: #fff;
    border: none;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.final-push {
    padding: 80px 20px;
    background: #f8f8f8;
    text-align: center;
}

.final-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.final-content p {
    font-size: 19px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

.cta-final {
    display: inline-block;
    padding: 18px 50px;
    background: #2c2c2c;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-final:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.footer {
    background: #2c2c2c;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #d4a574;
}

.footer-section p {
    font-size: 16px;
    color: #b0b0b0;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #d4a574;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
    text-align: center;
    color: #888;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 16px 32px;
    background: #d4a574;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #c49563;
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

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

    .nav-menu {
        position: static;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        background: transparent;
    }

    .hero-title {
        font-size: 72px;
    }

    .hero-subtitle {
        font-size: 28px;
    }

    .problem-reveal {
        flex-direction: row;
    }

    .problem-image {
        width: 50%;
        height: auto;
    }

    .problem-content {
        width: 50%;
        padding: 80px 60px;
    }

    .visual-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .grid-item {
        width: 50%;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        width: calc(50% - 15px);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .grid-item {
        width: 33.333%;
    }

    .service-card {
        width: calc(33.333% - 20px);
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }
}
