* {
    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;
    background: #ffffff;
}

.hidden {
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.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-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #ffffff;
    color: #000000;
}

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

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

.btn-cookie-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.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 3px;
}

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

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

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

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

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

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

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.intro-narrative {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

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

.lead-text {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: #1a1a1a;
}

.narrative-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.visual-story {
    padding: 4rem 2rem;
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.story-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.insight-reveal {
    padding: 6rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

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

.insight-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
}

.insight-columns {
    display: flex;
    gap: 3rem;
}

.insight-item {
    flex: 1;
}

.insight-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.insight-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #cccccc;
}

.testimonial-inline {
    padding: 4rem 2rem;
    background: #f4f4f4;
}

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

blockquote {
    font-size: 1.6rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.6;
    color: #2c2c2c;
    border-left: 4px solid #2c2c2c;
    padding-left: 2rem;
}

cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    color: #666;
}

.benefits-visual {
    padding: 5rem 2rem;
}

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

.benefit-image-left {
    flex: 1;
    background-color: #e8e8e8;
}

.benefit-image-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.benefit-text-right {
    flex: 1;
}

.benefit-text-right h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    color: #444;
}

.benefit-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.image-break {
    height: 60vh;
    overflow: hidden;
    background-color: #2c2c2c;
}

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

.services-preview {
    padding: 6rem 2rem;
    background: #fafafa;
}

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

.services-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

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

.services-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #d0d0d0;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
}

.service-card p {
    margin: 0 1.5rem 1rem;
    color: #555;
    line-height: 1.6;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 1.5rem 1.5rem 1rem;
}

.cta-select-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-select-service:hover {
    background: #444;
}

.trust-building {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.trust-content h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
}

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

.trust-step {
    flex: 1;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: #2c2c2c;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.trust-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.trust-step p {
    color: #666;
    line-height: 1.7;
}

.testimonial-inline.secondary {
    background: #ffffff;
}

.cta-central {
    padding: 6rem 2rem;
    background: #f9f9f9;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.cta-content > p {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 3rem;
}

.consultation-form {
    background: #ffffff;
    padding: 3rem;
    border: 1px solid #e0e0e0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    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: #2c2c2c;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #444;
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

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

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

.footer-section p {
    color: #cccccc;
    line-height: 1.7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

    .story-grid,
    .benefits-layout,
    .insight-columns,
    .trust-steps,
    .footer-content {
        flex-direction: column;
    }

    .lead-text {
        font-size: 1.4rem;
    }

    .consultation-form {
        padding: 2rem 1.5rem;
    }
}