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

:root {
    --primary-color: #2563eb;
    --secondary-color: #7c3aed;
    --accent-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --error-color: #ef4444;
}

html {
    scroll-behavior: smooth;
}

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

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

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

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

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

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    padding: 60px;
    background: var(--bg-light);
}

.hero-right {
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    padding: 60px;
}

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

.hero-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-image svg {
    max-width: 100%;
    height: auto;
}

.btn-primary,
.btn-secondary,
.btn-primary-large {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

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

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

.btn-primary-large {
    background: var(--primary-color);
    color: white;
    font-size: 18px;
    padding: 16px 40px;
}

.btn-primary-large:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.trust-indicators {
    padding: 60px 0;
    background: white;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

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

.trust-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

.problem-section,
.split-layout,
.split-reverse,
.split-layout-alt {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

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

.split-image,
.split-content,
.split-image-alt,
.split-content-alt {
    flex: 1;
    padding: 40px;
}

.split-reverse {
    flex-direction: row-reverse;
    background: white;
}

.split-layout-alt {
    background: var(--bg-light);
}

.split-content h2,
.split-content-alt h2 {
    font-size: 38px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.split-content p,
.split-content-alt p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.split-image svg,
.split-image-alt svg {
    max-width: 100%;
    height: auto;
}

.approach-section {
    padding: 80px 0;
    background: white;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-center h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.section-header-center p {
    font-size: 20px;
    color: var(--text-light);
}

.approach-cards {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.approach-card {
    flex: 1;
    text-align: center;
    padding: 30px;
}

.approach-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.approach-icon svg {
    width: 100%;
    height: 100%;
}

.approach-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.approach-card p {
    color: var(--text-light);
}

.services-highlight {
    padding: 80px 0;
    background: var(--bg-light);
}

.services-intro {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.services-intro-left {
    flex: 1;
}

.services-intro-left h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.services-intro-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.highlight-text {
    font-size: 20px;
    color: var(--text-light);
    font-style: italic;
}

.service-items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.service-header h3 {
    font-size: 24px;
    flex: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
    margin-left: 20px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

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

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

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

.testimonial-section {
    padding: 80px 0;
    background: white;
}

.testimonial-large {
    padding: 50px;
    background: var(--bg-light);
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
}

.testimonial-large p {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

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

.comparison-mini {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding: 25px;
    background: white;
    border-radius: 8px;
}

.comp-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comp-col strong {
    font-size: 16px;
}

.comp-col span {
    font-size: 28px;
    font-weight: 700;
}

.form-section {
    padding: 80px 0;
    background: white;
}

.form-header-centered {
    text-align: center;
    margin-bottom: 50px;
}

.form-header-centered h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.form-header-centered p {
    font-size: 18px;
    color: var(--text-light);
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.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 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

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

.final-cta {
    padding: 80px 0;
    background: var(--bg-light);
}

.cta-box {
    text-align: center;
    background: white;
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: #9ca3af;
    line-height: 1.8;
}

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

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

.footer-col ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

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

.btn-sticky {
    display: inline-block;
    padding: 16px 30px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(16,185,129,0.4);
    transition: all 0.3s;
}

.btn-sticky:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(16,185,129,0.5);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 22px;
    opacity: 0.9;
}

.about-story {
    padding: 80px 0;
}

.team-approach {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.approach-item {
    flex: 1 1 calc(50% - 20px);
    background: white;
    padding: 35px;
    border-radius: 10px;
}

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

.approach-item p {
    color: var(--text-light);
}

.expertise-section {
    padding: 80px 0;
}

.expertise-list {
    list-style: none;
    margin: 25px 0;
}

.expertise-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 18px;
}

.expertise-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

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

.section-title-center {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

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

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

.numbers-section {
    padding: 80px 0;
    background: white;
}

.numbers-grid {
    display: flex;
    gap: 40px;
    justify-content: space-around;
}

.number-card {
    text-align: center;
}

.number-big {
    font-size: 64px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.number-card p {
    font-size: 18px;
    color: var(--text-light);
}

.clients-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.cta-section {
    padding: 80px 0;
}

.services-detailed {
    padding: 60px 0;
}

.service-detail-card {
    background: white;
    margin-bottom: 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.service-detail-header {
    padding: 50px;
    background: var(--bg-light);
}

.service-detail-left h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.price-tag {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-tagline {
    font-size: 20px;
    color: var(--text-light);
}

.service-detail-content {
    padding: 50px;
}

.service-detail-content h3 {
    font-size: 28px;
    margin: 35px 0 20px 0;
}

.service-detail-content h3:first-child {
    margin-top: 0;
}

.detailed-list {
    list-style: none;
    margin: 20px 0;
}

.detailed-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
}

.detailed-list li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.services-cta {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-info-section {
    padding: 60px 0;
}

.contact-split {
    display: flex;
    gap: 60px;
}

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

.contact-left h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-detail p {
    font-size: 18px;
    line-height: 1.8;
}

.contact-detail a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
}

.contact-questions {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
}

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

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

.contact-cta {
    padding: 80px 0;
}

.thanks-section {
    padding: 100px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-box {
    text-align: center;
    background: white;
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.thanks-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.thanks-box h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.service-confirmation {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.selected-service {
    font-size: 18px;
}

.thanks-next {
    text-align: left;
    max-width: 600px;
    margin: 40px auto;
}

.thanks-next h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.thanks-steps {
    padding-left: 20px;
}

.thanks-steps li {
    font-size: 18px;
    color: var(--text-light);
    padding: 8px 0;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.legal-page {
    padding: 60px 0 80px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.legal-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

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

.legal-page ul {
    margin: 15px 0;
    padding-left: 25px;
}

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

.legal-page a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.legal-table th,
.legal-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.legal-table th {
    background: var(--bg-light);
    font-weight: 600;
}

.legal-table td {
    color: var(--text-light);
}

@media (max-width: 968px) {
    .hero-split,
    .split-layout,
    .split-reverse,
    .split-layout-alt {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        padding: 40px 30px;
    }

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

    .approach-cards,
    .service-items,
    .footer-grid {
        flex-direction: column;
    }

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

    .services-intro {
        flex-direction: column;
        gap: 30px;
    }

    .numbers-grid,
    .trust-grid {
        flex-wrap: wrap;
        gap: 30px;
    }

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

    .approach-item {
        flex: 1 1 100%;
    }

    .service-detail-header {
        padding: 30px;
    }

    .service-detail-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        display: none;
    }

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

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

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

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

    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .comparison-mini {
        flex-direction: column;
    }
}
