/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #0f172a;
}

.btn-block {
    width: 100%;
    display: block;
}

/* Navigation */
.navbar {
    position: fixed;
    width: 100%;
    background: #0f172a;
    color: white;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
}

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

.nav-links a {
    color: white;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #60a5fa;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 1.5rem;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 4rem;
    left: 0;
    right: 0;
    background: #1e293b;
    padding: 1rem;
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: background 0.3s ease;
}

.mobile-menu a:hover {
    background: #334155;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    padding-top: 4rem;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.8));
    z-index: 10;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 20;
    color: white;
}

.hero-text {
    max-width: 42rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.25rem;
    color: #cbd5e1;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #0f172a;
}

.section-header p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 42rem;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
    cursor: pointer;
}

.service-icon {
    width: 3rem;
    height: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #64748b;
    margin: 0;
}

/* Services Detail */
.services-detail {
    padding: 5rem 0;
}

.service-detail-card {
    background: white;
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    scroll-margin-top: 5.5rem; /* navbar height (4rem) + breathing room */
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-detail-icon {
    width: 3rem;
    height: 3rem;
    color: #2563eb;
    flex-shrink: 0;
}

.service-detail-description {
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.service-features li {
    display: flex;
    align-items: center;
    color: #64748b;
    padding: 0.5rem 0;
}

.service-features li::before {
    content: "✓";
    color: #2563eb;
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
}

.process-number {
    width: 4rem;
    height: 4rem;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: #0f172a;
}

.process-step p {
    color: #64748b;
    margin: 0;
}

/* Principles Section */
.principles-section {
    padding: 5rem 0;
    background: #0f172a;
    color: white;
}

.principles-section .section-header h2 {
    color: white;
}

.principles-section .section-header p {
    color: #cbd5e1;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

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

.principle-icon {
    width: 3rem;
    height: 3rem;
    color: #60a5fa;
    margin: 0 auto 1rem;
}

.principle-item h3 {
    color: white;
}

.principle-item p {
    color: #cbd5e1;
    margin: 0;
}

/* Pricing Section */
.pricing-info {
    padding: 2rem 0;
    background: #fef3c7;
}

.info-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.info-banner svg {
    width: 2rem;
    height: 2rem;
    color: #d97706;
    flex-shrink: 0;
}

.info-banner p {
    color: #78350f;
    margin: 0;
}

.pricing-section {
    padding: 5rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid #2563eb;
}

.featured-badge {
    position: absolute;
    top: -0.75rem;
    right: 1rem;
    background: #2563eb;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: #2563eb;
}

.pricing-price {
    margin-bottom: 2rem;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
}

.price-unit {
    color: #64748b;
    font-size: 0.875rem;
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #64748b;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Consultation Section */
.consultation-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.consultation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.consultation-features {
    list-style: none;
    margin-top: 2rem;
}

.consultation-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.consultation-features svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #2563eb;
    flex-shrink: 0;
}

.consultation-contact {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #f8fafc;
    border-radius: 0.5rem;
}

.contact-method svg {
    width: 2rem;
    height: 2rem;
    color: #2563eb;
    flex-shrink: 0;
}

.contact-method .label {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
}

.contact-method .value {
    display: block;
    font-weight: 600;
    color: #0f172a;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    margin-bottom: 1rem;
}

.form-description,
.info-description {
    color: #64748b;
    margin-bottom: 2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #0f172a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.link {
    color: #2563eb;
    text-decoration: underline;
}

.link:hover {
    color: #1d4ed8;
}

/* Form validation error messages */
.form-error {
    display: none;
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.375rem;
}

.form-group input.input-error,
.form-group textarea.input-error {
    border-color: #dc2626;
    background-color: #fef2f2;
}

.form-group input.input-error:focus,
.form-group textarea.input-error:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

/* Submit button loading state */
.btn.is-loading {
    position: relative;
    opacity: 0.85;
    cursor: wait;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
}

.btn-spinner {
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: btn-spin 0.7s linear infinite;
    display: inline-block;
}

@keyframes btn-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Form success / error modal */
.form-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.form-modal.is-open {
    display: flex;
    animation: form-modal-fade 0.2s ease-out;
}

@keyframes form-modal-fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.form-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.form-modal__content {
    position: relative;
    background: #ffffff;
    border-radius: 1rem;
    padding: 2.5rem 2rem 2rem;
    max-width: 30rem;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    text-align: center;
    animation: form-modal-pop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
}

@keyframes form-modal-pop {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.form-modal__icon-wrapper {
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: #dcfce7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
    animation: form-modal-icon 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.form-modal__icon-wrapper--error {
    background: #fee2e2;
    color: #dc2626;
}

@keyframes form-modal-icon {
    from {
        transform: scale(0.4);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.form-modal__icon {
    width: 2.25rem;
    height: 2.25rem;
}

.form-modal__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.75rem;
}

.form-modal__lead {
    color: #475569;
    line-height: 1.6;
    margin: 0 0 1.5rem;
}

.form-modal__details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.5rem;
    padding: 1rem;
    background: #f1f5f9;
    border-radius: 0.625rem;
    margin-bottom: 1.5rem;
}

.form-modal__detail {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #334155;
    font-weight: 500;
}

.form-modal__detail svg {
    width: 1.125rem;
    height: 1.125rem;
    color: #2563eb;
    flex-shrink: 0;
}

.form-modal__secondary {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0 0 0.75rem;
}

.form-modal__phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2563eb;
    padding: 0.625rem 1.25rem;
    border: 2px solid #2563eb;
    border-radius: 0.5rem;
    margin-bottom: 1.25rem;
    transition: all 0.2s ease;
}

.form-modal__phone:hover {
    background: #2563eb;
    color: #ffffff;
}

.form-modal__phone svg {
    width: 1.125rem;
    height: 1.125rem;
}

.form-modal__close {
    margin-top: 0.5rem;
}

@media (max-width: 480px) {
    .form-modal__content {
        padding: 2rem 1.25rem 1.5rem;
    }

    .form-modal__title {
        font-size: 1.25rem;
    }

    .form-modal__details {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}

.contact-info-cards {
    margin-bottom: 2rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.info-card svg {
    width: 2rem;
    height: 2rem;
    color: #2563eb;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.info-content h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.info-content a {
    color: #2563eb;
    font-weight: 600;
}

.info-content a:hover {
    color: #1d4ed8;
}

.why-contact {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.why-list {
    list-style: none;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.why-list svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #2563eb;
    flex-shrink: 0;
}

.social-links {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #3b5998;
    color: white;
    border-radius: 0.5rem;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: #2d4373;
}

.social-link svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Compliance Section */
.compliance-section {
    padding: 3rem 0;
    background: #f8fafc;
}

.compliance-content {
    text-align: center;
}

.compliance-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.compliance-link {
    color: #2563eb;
    font-weight: 500;
    transition: color 0.3s ease;
}

.compliance-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #dbeafe;
}

.cta-section .btn {
    background: white;
    color: #2563eb;
}

.cta-section .btn:hover {
    background: #f1f5f9;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-col p {
    color: #94a3b8;
}

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

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

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

.footer-col ul li a {
    color: #94a3b8;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #60a5fa;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    margin: 0 0 1rem;
}

.footer-policy-link {
    color: #94a3b8;
    transition: color 0.3s ease;
}

.footer-policy-link:hover {
    color: #60a5fa;
}

.footer-compliance {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.compliance-logo {
    height: 50px;
    width: auto;
    border-radius: 0.375rem;
}

/* 404 Page */
.not-found-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    min-height: calc(100vh - 4rem);
    display: flex;
    align-items: center;
}

.not-found-content {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto;
}

.not-found-header {
    margin-bottom: 2rem;
}

.not-found-header h1 {
    font-size: 6rem;
    font-weight: 800;
    color: #60a5fa;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(96, 165, 250, 0.2);
}

.not-found-subtitle {
    font-size: 1.5rem;
    color: #cbd5e1;
    margin: 0;
}

.not-found-description {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.not-found-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.not-found-actions .btn {
    flex: 1;
    min-width: 200px;
}

.not-found-actions .btn-primary {
    background: #2563eb;
    color: white;
}

.not-found-actions .btn-primary:hover {
    background: #1d4ed8;
}

.not-found-actions .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.not-found-actions .btn-outline:hover {
    background: white;
    color: #0f172a;
}

.not-found-suggestions {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.not-found-suggestions h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.not-found-links {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.not-found-links li {
    text-align: left;
}

.not-found-links a {
    color: #60a5fa;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 0.5rem 0;
}

.not-found-links a:hover {
    color: #93c5fd;
    text-decoration: underline;
}

/* Legal Pages */
.legal-section {
    padding: 5rem 0;
    background: #f8fafc;
}

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

.legal-block {
    background: white;
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.legal-block h2 {
    font-size: 1.375rem;
    color: #0f172a;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
}

.legal-list {
    list-style: none;
    margin: 1rem 0;
}

.legal-list li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    color: #475569;
    position: relative;
    line-height: 1.6;
}

.legal-list li::before {
    content: "•";
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.legal-compliance-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
    margin: 1.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-block {
        padding: 1.5rem;
    }

    .legal-compliance-links {
        flex-direction: column;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0f172a;
    color: white;
    z-index: 9999;
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: transform 0.35s ease, opacity 0.35s ease;
    opacity: 1;
}

.cookie-banner--hidden {
    transform: translateY(110%);
    opacity: 0;
}

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

.cookie-banner__text {
    flex: 1;
    min-width: 260px;
}

.cookie-banner__text strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1rem;
}

.cookie-banner__text p {
    color: #cbd5e1;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

.cookie-banner__link {
    color: #60a5fa;
    text-decoration: underline;
    white-space: nowrap;
}

.cookie-banner__link:hover {
    color: #93c5fd;
}

.cookie-banner__actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-banner__btn {
    padding: 0.6rem 1.5rem;
    border-radius: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-banner__btn--primary {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.cookie-banner__btn--primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

.cookie-banner__btn--outline {
    background: transparent;
    color: white;
    border-color: #475569;
}

.cookie-banner__btn--outline:hover {
    border-color: #94a3b8;
    background: rgba(255, 255, 255, 0.05);
}

/* Cookie Table */
.cookie-table-wrapper {
    overflow-x: auto;
    margin: 1rem 0;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.cookie-table th {
    background: #f1f5f9;
    color: #0f172a;
    font-weight: 600;
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-table td {
    padding: 0.75rem 1rem;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
    line-height: 1.5;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-table code {
    background: #f1f5f9;
    padding: 0.15rem 0.4rem;
    border-radius: 0.25rem;
    font-family: monospace;
    font-size: 0.82rem;
    color: #0f172a;
}

@media (max-width: 640px) {
    .cookie-banner__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cookie-banner__actions {
        width: 100%;
    }

    .cookie-banner__btn {
        flex: 1;
        text-align: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        height: 500px;
    }

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

    .hero-buttons .btn {
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .principles-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .consultation-content {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .compliance-links {
        flex-direction: column;
        gap: 1rem;
    }

    .not-found-header h1 {
        font-size: 4rem;
    }

    .not-found-actions {
        flex-direction: column;
    }

    .not-found-actions .btn {
        width: 100%;
    }

    .not-found-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .page-header {
        padding: 6rem 0 3rem;
    }

    .services-section,
    .process-section,
    .principles-section,
    .pricing-section,
    .consultation-section,
    .contact-section,
    .cta-section {
        padding: 3rem 0;
    }

    .not-found-section {
        padding: 3rem 0;
        min-height: auto;
    }

    .not-found-header h1 {
        font-size: 3rem;
    }

    .not-found-subtitle {
        font-size: 1.25rem;
    }

    .not-found-description {
        font-size: 1rem;
    }

    .not-found-suggestions {
        padding: 1.5rem;
    }
}
