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

:root {
    --primary: #1a2940;
    --secondary: #3d5a80;
    --accent: #ee6c4d;
    --light: #e0fbfc;
    --dark: #0d1b2a;
    --gray: #98c1d9;
    --white: #ffffff;
    --text: #2c3e50;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
}

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

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-right {
    display: flex;
    gap: 2rem;
}

.nav-right a {
    color: var(--text);
    font-weight: 500;
}

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

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 5%;
    background: var(--primary);
    color: var(--white);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-visual {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: var(--white);
    font-weight: 600;
    border-radius: 5px;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #d85a3a;
    transform: translateY(-2px);
}

.insight-section {
    padding: 6rem 5%;
    background: var(--light);
}

.insight-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.insight-narrow h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.insight-narrow p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.problem-amplify {
    padding: 4rem 5%;
    background: var(--white);
}

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

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
}

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

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.trust-build {
    padding: 6rem 5%;
    background: var(--secondary);
    color: var(--white);
}

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

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

.trust-build h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.trust-build p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    flex: 1;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.feature-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 1rem;
    opacity: 0.9;
}

.testimonial-inline {
    padding: 5rem 5%;
    background: var(--light);
}

.testimonial-content blockquote {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary);
    border-left: 5px solid var(--accent);
    padding-left: 2rem;
}

.testimonial-content cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-style: normal;
    color: var(--secondary);
}

.services-reveal {
    padding: 6rem 5%;
    background: var(--white);
}

.services-reveal h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 4rem;
    max-width: 700px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    padding: 2.5rem;
    background: var(--light);
    border-radius: 10px;
    border-left: 5px solid var(--accent);
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.btn-select {
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section {
    padding: 6rem 5%;
    background: var(--secondary);
    color: var(--white);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-container > p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

#selected-service {
    font-weight: 700;
    color: var(--accent);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 5px;
    font-size: 1rem;
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

.btn-submit {
    padding: 1rem 3rem;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.urgency-block {
    padding: 5rem 5%;
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

.urgency-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.urgency-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--white);
    font-weight: 600;
    border-radius: 5px;
}

.cta-secondary:hover {
    background: var(--accent);
}

.final-trust {
    padding: 6rem 5%;
    background: var(--white);
}

.cta-final {
    padding: 6rem 5%;
    background: var(--accent);
    text-align: center;
}

.cta-final-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--white);
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 5px;
}

.cta-large:hover {
    background: var(--light);
    transform: translateY(-3px);
}

footer {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

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

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

.footer-col p {
    opacity: 0.8;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent);
    color: var(--white);
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(238, 108, 77, 0.4);
}

.sticky-cta a:hover {
    background: #d85a3a;
    transform: translateY(-2px);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 1.5rem 5%;
    z-index: 10000;
    display: none;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--accent);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--accent);
    color: var(--white);
}

.btn-cookie.secondary {
    background: transparent;
    border: 2px solid var(--white);
}

.btn-cookie:hover {
    transform: translateY(-2px);
}

.page-hero {
    padding: 5rem 5%;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-story {
    padding: 6rem 5%;
    background: var(--white);
}

.team-approach {
    padding: 6rem 5%;
    background: var(--light);
}

.approach-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.approach-item {
    flex: 1;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.approach-item h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.experience-numbers {
    padding: 5rem 5%;
    background: var(--secondary);
    color: var(--white);
}

.stats-flex {
    display: flex;
    justify-content: space-around;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 1.1rem;
}

.philosophy {
    padding: 6rem 5%;
    background: var(--white);
}

.services-detailed {
    padding: 4rem 5%;
}

.service-detail-item {
    margin-bottom: 4rem;
    padding: 3rem;
    background: var(--light);
    border-radius: 10px;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.service-detail-header h2 {
    font-size: 2rem;
    color: var(--primary);
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.service-detail-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.service-desc {
    flex: 2;
}

.service-desc h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin: 1.5rem 0 1rem;
}

.service-desc ul {
    list-style: none;
    padding-left: 0;
}

.service-desc li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-desc li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.service-image {
    flex: 1;
}

.service-image img {
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.services-cta {
    padding: 5rem 5%;
    background: var(--primary);
    color: var(--white);
}

.center {
    text-align: center;
}

.contact-info-section {
    padding: 5rem 5%;
    background: var(--white);
}

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

.contact-info-block {
    flex: 1;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-item a {
    color: var(--accent);
}

.contact-item .note {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.contact-visual {
    flex: 1;
}

.contact-note {
    padding: 4rem 5%;
    background: var(--light);
}

.contact-cta {
    padding: 5rem 5%;
    background: var(--secondary);
    color: var(--white);
}

.legal-page {
    padding: 5rem 5%;
    background: var(--white);
}

.legal-page h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.updated {
    color: var(--gray);
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 2.5rem 0 1rem;
}

.legal-page h3 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin: 1.5rem 0 0.75rem;
}

.legal-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.thanks-section {
    padding: 8rem 5%;
    background: var(--light);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text);
}

.service-confirm {
    margin: 2rem 0;
    padding: 1rem;
    background: var(--white);
    border-radius: 5px;
    font-size: 1.1rem;
}

.service-selected {
    color: var(--primary);
}

.thanks-next {
    margin: 3rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-next h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.thanks-steps {
    list-style: none;
    counter-reset: step-counter;
}

.thanks-steps li {
    counter-increment: step-counter;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: var(--white);
    border-radius: 5px;
    position: relative;
    padding-left: 3rem;
}

.thanks-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn-primary {
    padding: 1rem 2rem;
    background: var(--accent);
    color: var(--white);
    font-weight: 600;
    border-radius: 5px;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-weight: 600;
    border-radius: 5px;
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--white);
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .split-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .split-layout.reverse {
        flex-direction: column;
    }

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

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

    .service-price {
        align-items: flex-start;
    }

    .footer-content {
        flex-direction: column;
    }

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

    .stats-flex {
        flex-direction: column;
        gap: 2rem;
    }

    .service-detail-content {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        gap: 1rem;
    }

    .hero-content {
        padding: 3rem 5%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .thanks-actions {
        flex-direction: column;
    }
}