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

:root {
    --primary-color: #1a4d5e;
    --secondary-color: #2d7a92;
    --accent-color: #e8925c;
    --dark-bg: #0f1419;
    --light-bg: #f5f7fa;
    --text-dark: #1a1a1a;
    --text-light: #4a5568;
    --border-color: #e2e8f0;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 32px;
    --spacing-lg: 64px;
    --spacing-xl: 96px;
}

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

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

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

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

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

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

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

.cookie-actions {
    display: flex;
    gap: 12px;
}

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

.btn-cookie {
    background: var(--accent-color);
    color: #fff;
}

.btn-cookie:hover {
    background: #d17d47;
}

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

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

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

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

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

.nav-links a {
    color: var(--text-dark);
    font-size: 15px;
    transition: color 0.3s;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 40px 80px;
    overflow: hidden;
}

.hero-text-offset {
    max-width: 600px;
    position: relative;
    z-index: 10;
    margin-left: 8%;
}

.hero-headline {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.hero-subtext {
    font-size: 22px;
    color: var(--text-light);
    line-height: 1.5;
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 55%;
    height: 70%;
    z-index: 1;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.hero-cta-floating {
    position: absolute;
    bottom: 100px;
    left: 8%;
    z-index: 20;
}

.btn-primary {
    display: inline-block;
    padding: 18px 40px;
    background: var(--accent-color);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(232,146,92,0.4);
}

.btn-primary:hover {
    background: #d17d47;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(232,146,92,0.5);
}

.insight-block {
    padding: var(--spacing-xl) 40px;
    background: var(--light-bg);
}

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.insight-left {
    flex: 0 0 400px;
}

.label-small {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-color);
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.insight-left h2 {
    font-size: 38px;
    line-height: 1.3;
    color: var(--primary-color);
}

.insight-right {
    flex: 1;
    padding-top: 40px;
}

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

.story-section {
    padding: var(--spacing-xl) 40px;
}

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

.story-image {
    flex: 0 0 500px;
    position: relative;
    left: -40px;
}

.story-image img {
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.story-content {
    flex: 1;
}

.story-content h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.story-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.problem-amplify {
    padding: var(--spacing-xl) 40px;
    background: var(--dark-bg);
    color: #fff;
}

.problem-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 100px;
    align-items: center;
}

.problem-stat-offset {
    flex: 0 0 300px;
    text-align: center;
}

.stat-number {
    font-size: 96px;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 20px;
    color: #cbd5e0;
}

.problem-text {
    flex: 1;
}

.problem-text h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.problem-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #cbd5e0;
}

.reveal-section {
    padding: var(--spacing-xl) 40px;
    background: #fff;
}

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

.reveal-content-overlap h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.reveal-intro {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 800px;
}

.features-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 12px;
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
}

.feature-card.offset-1 {
    transform: translateY(-20px);
}

.feature-card.offset-2 {
    transform: translateY(20px);
}

.feature-card.offset-3 {
    transform: translateY(-10px);
}

.feature-card.offset-4 {
    transform: translateY(30px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.trust-section {
    padding: var(--spacing-lg) 40px;
    background: var(--light-bg);
}

.trust-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-heading {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

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

.company-placeholder {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 14px;
    color: var(--text-light);
}

.testimonial-inline {
    padding: var(--spacing-xl) 40px;
}

.testimonial-card-large {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    background: var(--light-bg);
    padding: 60px;
    border-radius: 12px;
}

.testimonial-image {
    flex: 0 0 180px;
}

.testimonial-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

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

.testimonial-author strong {
    display: block;
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 4px;
}

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

.how-it-works {
    padding: var(--spacing-xl) 40px;
    background: #fff;
}

.how-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.how-wrapper h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
}

.steps-asymmetric {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.step-block {
    flex: 1;
    max-width: 320px;
    padding: 40px;
    background: var(--light-bg);
    border-radius: 12px;
}

.step-block.step-1 {
    transform: translateY(-20px);
}

.step-block.step-2 {
    transform: translateY(20px);
}

.step-block.step-3 {
    transform: translateY(0);
}

.step-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.step-block h4 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.step-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.services-preview {
    padding: var(--spacing-xl) 40px;
    background: var(--light-bg);
}

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

.services-intro h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.services-intro p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-light);
}

.services-grid-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    flex: 1 1 calc(33.333% - 27px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s;
}

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

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

.service-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.service-header h3 {
    font-size: 28px;
    color: var(--primary-color);
}

.service-duration {
    background: var(--light-bg);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-light);
}

.service-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
    flex: 1;
}

.service-features li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.service-features li:before {
    content: "✓ ";
    color: var(--accent-color);
    font-weight: 700;
    margin-right: 8px;
}

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

.btn-service {
    display: block;
    text-align: center;
    padding: 16px 32px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.practical-info {
    padding: var(--spacing-xl) 40px;
}

.practical-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.practical-wrapper h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
}

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

.practical-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    padding: 40px;
    background: var(--light-bg);
    border-radius: 12px;
}

.practical-item h4 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.practical-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.urgency-section {
    padding: var(--spacing-lg) 40px;
    background: var(--dark-bg);
    color: #fff;
}

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

.urgency-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-color);
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.urgency-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.urgency-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #cbd5e0;
    margin-bottom: 40px;
}

.btn-urgency {
    display: inline-block;
    padding: 18px 40px;
    background: var(--accent-color);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

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

.faq-section {
    padding: var(--spacing-xl) 40px;
    background: var(--light-bg);
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-wrapper h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
}

.faq-item h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.form-section {
    padding: var(--spacing-xl) 40px;
    background: #fff;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 60px;
}

.form-intro h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 24px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: #fff;
    transition: border-color 0.3s;
}

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

.form-checkbox {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
}

.form-checkbox label {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

.form-checkbox a {
    color: var(--primary-color);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--accent-color);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.final-cta {
    padding: var(--spacing-xl) 40px;
    background: var(--primary-color);
    color: #fff;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 48px;
    margin-bottom: 24px;
}

.final-cta-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #cbd5e0;
}

.btn-final {
    display: inline-block;
    padding: 18px 40px;
    background: var(--accent-color);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

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

.footer {
    background: var(--dark-bg);
    color: #fff;
    padding: 60px 40px 30px;
}

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

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

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

.footer-section p,
.footer-section ul {
    font-size: 14px;
    line-height: 1.8;
    color: #cbd5e0;
}

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

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

.footer-section a {
    color: #cbd5e0;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #cbd5e0;
}

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

.btn-sticky {
    display: block;
    padding: 16px 32px;
    background: var(--accent-color);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(232,146,92,0.5);
    transition: all 0.3s;
}

.btn-sticky:hover {
    background: #d17d47;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(232,146,92,0.6);
}

@media (max-width: 768px) {
    .nav-floating {
        width: calc(100% - 40px);
        left: 20px;
        transform: none;
        padding: 12px 20px;
        gap: 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        flex-direction: column;
        padding: 20px;
        margin-top: 10px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

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

    .nav-toggle {
        display: block;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 100px 20px 60px;
        min-height: auto;
    }

    .hero-text-offset {
        margin-left: 0;
        margin-bottom: 40px;
    }

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

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

    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 300px;
    }

    .hero-cta-floating {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 30px;
    }

    .insight-wrapper,
    .story-grid-irregular,
    .problem-container,
    .testimonial-card-large {
        flex-direction: column;
        gap: 40px;
    }

    .insight-left,
    .story-image {
        flex: 1;
        left: 0;
    }

    .insight-left h2,
    .problem-text h2,
    .reveal-content-overlap h2,
    .services-intro h2,
    .how-wrapper h2,
    .practical-wrapper h2,
    .faq-wrapper h2,
    .form-intro h2,
    .final-cta-content h2 {
        font-size: 32px;
    }

    .steps-asymmetric {
        flex-direction: column;
    }

    .step-block {
        transform: none !important;
    }

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

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

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