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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #e8a87c;
    --accent-color: #c85a54;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

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

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

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

.btn-accept:hover {
    background: #234a3d;
}

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

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

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

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

.cta-hero {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(200,90,84,0.3);
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: #b54943;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(200,90,84,0.4);
}

.story-intro {
    padding: 100px 20px;
    background: var(--bg-light);
}

.story-intro h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--text-dark);
    line-height: 1.3;
}

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.visual-section {
    padding: 0;
}

.split-visual {
    display: flex;
    min-height: 600px;
}

.visual-left,
.visual-right {
    flex: 1;
}

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

.visual-right {
    padding: 80px 60px;
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visual-right h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.visual-right p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-inline {
    display: inline-block;
    margin-top: 20px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 17px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 4px;
}

.cta-inline:hover {
    color: #b54943;
    border-color: #b54943;
}

.problem-section {
    padding: 100px 20px;
    background: var(--text-dark);
    color: white;
}

.problem-section h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 60px;
}

.problem-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.problem-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.08);
}

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

.problem-card h4 {
    font-size: 22px;
    padding: 20px 25px 10px;
    color: var(--secondary-color);
}

.problem-card p {
    padding: 0 25px 25px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
}

.insight-visual {
    padding: 0;
}

.insight-container {
    display: flex;
    min-height: 700px;
}

.insight-image {
    flex: 1;
    background: var(--bg-light);
}

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

.insight-content {
    flex: 1;
    padding: 100px 70px;
    background: var(--primary-color);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insight-content h3 {
    font-size: 38px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.insight-content p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 22px;
    color: rgba(255,255,255,0.9);
}

.trust-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.trust-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    background: white;
    padding: 40px 50px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--secondary-color);
}

.testimonial-text {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 600;
}

.benefits-reveal {
    padding: 100px 20px;
    background: var(--bg-white);
}

.benefits-reveal h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 70px;
    color: var(--text-dark);
}

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

.benefit-large,
.benefit-small {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.benefit-large {
    flex: 1 1 calc(55% - 15px);
    min-width: 400px;
    height: 400px;
}

.benefit-small {
    flex: 1 1 calc(45% - 15px);
    min-width: 300px;
    height: 400px;
    background: var(--bg-light);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.benefit-large:hover,
.benefit-small:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.benefit-large img,
.benefit-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.benefit-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 40px;
}

.benefit-overlay h4,
.benefit-small h4 {
    font-size: 24px;
    margin-bottom: 12px;
}

.benefit-overlay p,
.benefit-small p {
    font-size: 16px;
    line-height: 1.6;
}

.benefit-small h4 {
    color: var(--primary-color);
}

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

.benefit-small img {
    position: relative;
    margin-bottom: 20px;
    height: 250px;
}

.services-preview {
    padding: 100px 20px;
    background: var(--bg-light);
}

.services-preview h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-intro {
    text-align: center;
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    max-width: 400px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

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

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

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

.service-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.btn-select-service {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #234a3d;
    transform: translateY(-2px);
}

.urgency-section {
    padding: 60px 20px;
    background: var(--accent-color);
    color: white;
}

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

.urgency-container h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.urgency-container p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.form-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.form-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.order-form {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}

.btn-submit {
    width: 100%;
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #b54943;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200,90,84,0.3);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

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

.sticky-text {
    font-size: 18px;
    font-weight: 600;
}

.btn-sticky {
    background: var(--accent-color);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

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

@media (max-width: 1024px) {
    .benefits-visual-grid {
        flex-direction: column;
    }

    .benefit-large,
    .benefit-small {
        flex: 1 1 100%;
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        width: 90%;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        padding-top: 20px;
        gap: 15px;
    }

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

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

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

    .story-intro h2,
    .problem-section h2,
    .trust-section h2,
    .benefits-reveal h2,
    .services-preview h2,
    .form-section h2 {
        font-size: 32px;
    }

    .split-visual,
    .insight-container {
        flex-direction: column;
    }

    .visual-right,
    .insight-content {
        padding: 50px 30px;
    }

    .service-cards {
        flex-direction: column;
    }

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

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

    .order-form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .cta-hero {
        padding: 14px 32px;
        font-size: 16px;
    }

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

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

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