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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

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

ul {
    list-style: none;
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0066cc;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #0066cc;
}

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

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

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

.hero-split {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-split h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-lead {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background: #0066cc;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
}

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

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #0066cc;
    padding: 1rem 2.5rem;
    border: 2px solid #0066cc;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
}

.cta-secondary:hover {
    background: #0066cc;
    color: #ffffff;
}

.cta-inline {
    color: #0066cc;
    font-weight: 600;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 2px;
}

.cta-inline:hover {
    color: #0052a3;
    border-color: #0052a3;
}

.cta-large {
    display: inline-block;
    background: #0066cc;
    color: #ffffff;
    padding: 1.4rem 3.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.2rem;
}

.cta-large:hover {
    background: #0052a3;
    transform: scale(1.05);
}

.section-label {
    display: inline-block;
    color: #0066cc;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.trust-section,
.problem-section,
.case-section {
    background: #ffffff;
}

.trust-section h2,
.problem-section h2,
.case-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #1a1a1a;
}

.trust-section p,
.problem-section p,
.case-section p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.centered-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.insight-section {
    background: #f8f9fa;
}

.insight-section h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

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

.insight-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

.insight-card p {
    color: #4a4a4a;
    line-height: 1.7;
}

.services-preview {
    background: #ffffff;
}

.services-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    color: #1a1a1a;
}

.services-split-grid {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.service-card-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.service-card-split.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
}

.service-visual img {
    border-radius: 10px;
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-info p {
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
    margin: 1.5rem 0;
}

.service-link {
    color: #0066cc;
    font-weight: 600;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 2px;
}

.service-link:hover {
    color: #0052a3;
}

.testimonial-section {
    background: #f1f3f5;
}

.testimonial-section blockquote {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-section cite {
    font-style: normal;
    color: #6c757d;
    font-size: 1rem;
}

.benefits-section {
    background: #ffffff;
}

.benefits-section h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
}

.benefits-alternating {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.benefit-row {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.benefit-row.reverse {
    flex-direction: row-reverse;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.benefit-text p {
    color: #4a4a4a;
    line-height: 1.8;
    font-size: 1.1rem;
}

.benefit-visual {
    flex: 1;
}

.benefit-visual img {
    border-radius: 10px;
}

.cta-section {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-section .cta-large {
    background: #ffffff;
    color: #0066cc;
}

.cta-section .cta-large:hover {
    background: #f8f9fa;
}

.form-section {
    background: #f8f9fa;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-group input,
.form-group select {
    padding: 0.9rem;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0066cc;
}

.btn-submit {
    background: #0066cc;
    color: #ffffff;
    padding: 1.1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #0066cc;
}

.footer-column p,
.footer-column a {
    color: #b8b8b8;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    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: 2rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #0066cc;
    color: #ffffff;
}

.btn-accept:hover {
    background: #0052a3;
}

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

.btn-reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.page-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 2rem;
    text-align: center;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto;
}

.services-detail {
    background: #ffffff;
}

.service-detail-item {
    border-bottom: 1px solid #e9ecef;
}

.service-detail-item:last-child {
    border-bottom: none;
}

.service-tag {
    display: inline-block;
    background: #e7f3ff;
    color: #0066cc;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-features {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-features li {
    list-style: disc;
    color: #4a4a4a;
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.service-specs {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.spec-label {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
}

.spec-value {
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.service-pricing {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066cc;
    display: block;
    margin-bottom: 1rem;
}

.price-note {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.services-cta {
    background: #f8f9fa;
    text-align: center;
    padding: 5rem 2rem;
}

.services-cta h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.about-intro,
.expertise-section,
.partners-section {
    background: #ffffff;
}

.about-intro h2,
.expertise-section h2,
.partners-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.about-intro p,
.expertise-section p,
.partners-section p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.values-section {
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.values-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-card p {
    color: #4a4a4a;
    line-height: 1.7;
}

.track-record {
    background: #ffffff;
}

.track-record h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
}

.stats-alternating {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.stat-row {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.stat-row.reverse {
    flex-direction: row-reverse;
}

.stat-text {
    flex: 1;
}

.stat-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.stat-text p {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.stat-year {
    display: inline-block;
    background: #e7f3ff;
    color: #0066cc;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
}

.stat-visual {
    flex: 1;
}

.stat-visual img {
    border-radius: 10px;
}

.team-section {
    background: #f8f9fa;
}

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

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
}

.team-info {
    margin-top: 3rem;
}

.expertise-list {
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.expertise-list li {
    list-style: disc;
    color: #4a4a4a;
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.partner-list {
    padding-left: 1.5rem;
    margin-top: 1.5rem;
}

.partner-list li {
    list-style: disc;
    color: #4a4a4a;
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.approach-section {
    background: #ffffff;
}

.approach-section h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
}

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

.step-item {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.step-item p {
    color: #4a4a4a;
    line-height: 1.7;
}

.about-cta {
    background: #0066cc;
    color: #ffffff;
    text-align: center;
    padding: 5rem 2rem;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.about-cta .cta-large {
    background: #ffffff;
    color: #0066cc;
}

.about-cta .cta-large:hover {
    background: #f8f9fa;
}

.contact-section {
    background: #ffffff;
}

.contact-info-block {
    margin-bottom: 2.5rem;
}

.contact-info-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-info-block p {
    color: #4a4a4a;
    line-height: 1.8;
}

.contact-info-block a {
    color: #0066cc;
    font-weight: 600;
}

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

.info-note {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

.office-note {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.office-note p {
    margin: 0;
    color: #4a4a4a;
}

.contact-map-section {
    background: #f8f9fa;
}

.contact-map-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.map-placeholder {
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.map-directions {
    text-align: center;
    color: #4a4a4a;
    font-size: 1rem;
}

.faq-contact {
    background: #ffffff;
}

.faq-contact h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
}

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

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.faq-item p {
    color: #4a4a4a;
    line-height: 1.8;
}

.contact-alternatives {
    background: #f8f9fa;
    text-align: center;
}

.contact-alternatives h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.contact-alternatives p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: #f8f9fa;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-section h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.3rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.service-confirmation {
    background: #e7f3ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.1rem;
    color: #0066cc;
}

.next-steps {
    margin: 4rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

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

.steps-list .step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.steps-list .step-number {
    background: #0066cc;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #1a1a1a;
}

.step-content p {
    color: #4a4a4a;
    line-height: 1.7;
}

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

.thanks-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
}

.thanks-contact p {
    color: #4a4a4a;
}

.thanks-contact a {
    color: #0066cc;
    font-weight: 600;
}

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

.legal-page {
    background: #ffffff;
    padding: 4rem 2rem;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.last-updated {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.legal-content p {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-content ul {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    list-style: disc;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 0.7rem;
}

.legal-content a {
    color: #0066cc;
    font-weight: 600;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    color: #4a4a4a;
}

@media (max-width: 968px) {
    .split-container,
    .split-container.reverse {
        flex-direction: column;
        gap: 3rem;
        padding: 3rem 1.5rem;
    }

    .service-card-split,
    .service-card-split.reverse,
    .benefit-row,
    .benefit-row.reverse,
    .stat-row,
    .stat-row.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-split h1 {
        font-size: 2.2rem;
    }

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

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

    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

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

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

    .cookie-content {
        flex-direction: column;
        gap: 1.5rem;
    }

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

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

@media (max-width: 640px) {
    .nav-container {
        padding: 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .hero-split h1 {
        font-size: 1.8rem;
    }

    .service-specs {
        flex-direction: column;
        gap: 1rem;
    }
}