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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

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

ul {
    list-style: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 10000;
    display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

.hero-split {
    display: flex;
    min-height: 100vh;
    padding-top: 80px;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
}

.hero-left {
    background: var(--bg-light);
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.hero-content {
    max-width: 580px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cta-secondary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #1a252f;
}

.cta-inline {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.cta-inline:hover {
    color: #d35400;
}

section {
    padding: 100px 40px;
}

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

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

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

.split-text,
.split-image {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--primary-color);
    line-height: 1.3;
}

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

.split-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.problem-section {
    background: var(--bg-light);
}

.insight-section {
    background: var(--primary-color);
    color: white;
}

.insight-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    opacity: 0.9;
}

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

.insight-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.1);
    padding: 32px;
    border-radius: 8px;
}

.insight-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.insight-card p {
    opacity: 0.9;
    line-height: 1.7;
}

.trust-section {
    background: var(--bg-light);
}

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

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

.testimonial {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.testimonial cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 15px;
}

.services-reveal {
    background: var(--bg-white);
}

.services-reveal h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

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

.service-card {
    flex: 1;
    min-width: 320px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 22px;
    padding: 24px 24px 12px;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 24px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    padding: 0 24px 16px;
}

.cta-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.urgency-section {
    background: #fff8f0;
}

.form-section {
    background: var(--bg-light);
}

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

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

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

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    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: var(--secondary-color);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 999;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.sticky-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta span {
    font-size: 17px;
    font-weight: 600;
}

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

.btn-sticky:hover {
    background: #d35400;
}

.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 40px 20px;
}

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

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

.footer-col h4 {
    margin-bottom: 16px;
    font-size: 20px;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.7;
}

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

.footer-col ul li a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

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

.page-hero {
    padding: 180px 40px 80px;
    text-align: center;
    background: var(--bg-light);
}

.page-hero h1 {
    font-size: 52px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-story,
.team-section {
    padding: 100px 40px;
}

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

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

.value-card {
    flex: 1;
    min-width: 260px;
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-about {
    text-align: center;
    padding: 100px 40px;
    background: var(--bg-light);
}

.cta-about h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 32px;
}

.services-detail {
    padding: 80px 40px;
}

.service-card-detail {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-card-detail .service-image {
    flex: 0 0 400px;
    height: auto;
}

.service-content {
    flex: 1;
    padding: 40px;
}

.service-content h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-includes {
    list-style: none;
    margin-bottom: 24px;
}

.service-includes li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
    color: var(--text-light);
}

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

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

.cta-services {
    text-align: center;
    padding: 80px 40px;
    background: var(--bg-light);
}

.cta-services h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.cta-services p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-section {
    padding: 80px 40px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info,
.contact-form-wrapper {
    flex: 1;
    min-width: 320px;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 32px;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.info-block p {
    color: var(--text-light);
    line-height: 1.7;
}

.info-block a {
    color: var(--secondary-color);
}

.note {
    font-size: 14px;
    font-style: italic;
    margin-top: 8px;
}

.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
    background: var(--bg-light);
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background: white;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 24px;
}

.thanks-container h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.service-confirmation {
    background: var(--bg-light);
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 32px;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    background: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #1a252f;
}

.next-steps {
    text-align: left;
    background: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
}

.next-steps h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

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

.steps-list li {
    counter-increment: steps;
    position: relative;
    padding-left: 36px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.steps-list li:before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.legal-page {
    padding: 120px 40px 80px;
}

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

.legal-container h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.last-updated {
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-container h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-container h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-container p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-container ul {
    list-style: disc;
    margin-left: 32px;
    margin-bottom: 16px;
}

.legal-container ul li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-container a {
    color: var(--secondary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        margin-top: 10px;
        border-radius: 12px;
        box-shadow: var(--shadow);
    }

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

    .nav-toggle {
        display: block;
    }

    .floating-nav {
        width: calc(100% - 40px);
        padding: 15px 20px;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-right {
        min-height: 400px;
    }

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

    section {
        padding: 60px 20px;
    }

    .insight-grid,
    .testimonial-grid,
    .services-grid,
    .values-grid {
        flex-direction: column;
    }

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

    .service-card-detail .service-image {
        flex: 0 0 auto;
        height: 250px;
    }

    .service-content {
        padding: 24px;
    }

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

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

    .sticky-cta {
        flex-direction: column;
        gap: 12px;
        padding: 16px 20px;
    }

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