:root {
    --color-primary: #0d3b66;
    --color-primary-light: #1a5a9e;
    --color-secondary: #28a745;
    --color-accent: #ffc107;
    --color-dark: #1a1a2e;
    --color-light: #f8f9fa;
    --color-gray: #6c757d;
    --color-gray-light: #e9ecef;
    --color-white: #ffffff;
    --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background: var(--color-white);
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-primary-light);
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    transition: var(--transition);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--color-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
}

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

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

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

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

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

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

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

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

.btn-large {
    padding: 1.125rem 2.25rem;
    font-size: 1.125rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: var(--color-light);
}

.hero-tag {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.375rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.hero-content h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
    max-width: 500px;
}

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

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

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

.stats-bar {
    background: var(--color-primary);
    padding: 2rem 0;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    color: var(--color-white);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.split-section {
    display: flex;
    min-height: 600px;
}

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

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

.split-content.dark-bg {
    background: var(--color-dark);
    color: var(--color-white);
}

.split-content.dark-bg h2 {
    color: var(--color-white);
}

.split-content.dark-bg p {
    color: rgba(255,255,255,0.8);
}

.split-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.section-tag {
    display: inline-block;
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-tag.light {
    color: var(--color-accent);
}

.split-content h2 {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.split-content p {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: 700;
}

.benefit-grid {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.benefit-item {
    flex: 1;
    min-width: 150px;
}

.benefit-item strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.benefit-item span {
    font-size: 0.875rem;
    opacity: 0.8;
}

.services-preview {
    padding: 6rem 2rem;
    background: var(--color-white);
}

.services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.services-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.services-header p {
    color: var(--color-gray);
}

.services-cards {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition);
    position: relative;
}

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

.service-card.featured {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.25rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-primary);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--color-gray);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.card-link {
    font-weight: 600;
    color: var(--color-primary);
}

.card-link:hover {
    text-decoration: underline;
}

.process-section {
    padding: 6rem 2rem;
    background: var(--color-light);
}

.process-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.process-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.process-header p {
    color: var(--color-gray);
}

.process-steps {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--color-gray);
    font-size: 0.9375rem;
}

.testimonials-section {
    padding: 6rem 2rem;
    background: var(--color-white);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-header h2 {
    font-size: 2.25rem;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: var(--color-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    color: var(--color-dark);
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--color-gray);
}

.cta-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.25rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

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

.form-section .split-content {
    background: var(--color-white);
}

.split-form {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    background: var(--color-light);
}

.split-form form {
    width: 100%;
    max-width: 480px;
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--color-gray-light);
    border-radius: var(--radius-md);
    background: var(--color-white);
    transition: border-color var(--transition);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-gray);
    margin-bottom: 0;
}

.checkbox-group a {
    text-decoration: underline;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gray);
    font-size: 0.875rem;
}

.badge svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-secondary);
}

.partners-section {
    padding: 3rem 2rem;
    background: var(--color-white);
    border-top: 1px solid var(--color-gray-light);
}

.partners-header {
    text-align: center;
    margin-bottom: 2rem;
}

.partners-header p {
    color: var(--color-gray);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.partner-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray);
    opacity: 0.5;
}

.main-footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 4rem 2rem 0;
}

.footer-container {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    max-width: 300px;
}

.footer-links {
    flex: 2;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-col {
    min-width: 150px;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
}

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

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    padding: 1.5rem 2rem;
    z-index: 1001;
    display: none;
}

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

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

.cookie-content p {
    color: rgba(255,255,255,0.9);
    margin: 0;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 24px;
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all var(--transition);
}

.sticky-cta:hover {
    background: #218838;
    color: var(--color-white);
    transform: translateY(-2px);
}

.page-header {
    background: var(--color-light);
    padding: 8rem 2rem 4rem;
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    color: var(--color-dark);
}

.content-section h3 {
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
    color: var(--color-dark);
}

.content-section p {
    margin-bottom: 1rem;
    color: var(--color-gray);
}

.content-section ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--color-gray);
}

.content-section li {
    margin-bottom: 0.5rem;
}

.contact-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

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

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

.contact-item p {
    color: var(--color-gray);
}

.contact-map {
    flex: 1;
    min-width: 300px;
    min-height: 400px;
    background: var(--color-gray-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray);
}

.services-grid {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-full {
    display: flex;
    gap: 3rem;
    padding: 2.5rem;
    background: var(--color-light);
    border-radius: var(--radius-lg);
    flex-wrap: wrap;
}

.service-full:nth-child(even) {
    flex-direction: row-reverse;
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
}

.service-image {
    flex: 1;
    min-width: 280px;
    min-height: 250px;
    background: var(--color-gray-light);
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

.service-details {
    flex: 1.5;
    min-width: 300px;
}

.service-details h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.service-details p {
    color: var(--color-gray);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-dark);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 1.5rem 0;
}

.about-intro {
    display: flex;
    gap: 4rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--color-gray);
    margin-bottom: 1rem;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

.values-section {
    background: var(--color-light);
    padding: 5rem 2rem;
}

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

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.values-header h2 {
    font-size: 2rem;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 2rem;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--color-gray);
    font-size: 0.9375rem;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-content {
    max-width: 500px;
}

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

.thanks-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--color-white);
}

.thanks-content h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.thanks-content p {
    color: var(--color-gray);
    margin-bottom: 2rem;
}

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

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

    .hero-content,
    .split-content,
    .split-form {
        padding: 3rem 2rem;
    }

    .hero-visual,
    .split-visual {
        min-height: 400px;
    }

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

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

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        transform: translateX(-100%);
        transition: transform var(--transition);
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        padding: 1rem 0;
        border-bottom: 1px solid var(--color-gray-light);
    }

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

    .stats-container {
        flex-direction: column;
        text-align: center;
    }

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

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

    .sticky-cta {
        bottom: 80px;
        right: 16px;
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }

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

    .footer-links {
        gap: 2rem;
    }

    .service-full,
    .service-full:nth-child(even) {
        flex-direction: column;
    }
}
