:root {
    --color-primary: #1a56db;
    --color-primary-dark: #1345b3;
    --color-primary-light: #3b82f6;
    --color-secondary: #0f172a;
    --color-accent: #06b6d4;
    --color-success: #10b981;
    --color-text: #1e293b;
    --color-text-light: #64748b;
    --color-bg: #ffffff;
    --color-bg-alt: #f8fafc;
    --color-bg-dark: #0f172a;
    --color-border: #e2e8f0;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-mono: "SF Mono", Monaco, "Courier New", monospace;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition: 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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-dark);
}

ul, ol {
    list-style-position: inside;
}

address {
    font-style: normal;
}

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

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-border);
}

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

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    letter-spacing: -0.02em;
}

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

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

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

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

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.938rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

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

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

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

.btn-secondary:hover {
    background: #1e293b;
    color: white;
}

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

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

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

.btn-light:hover {
    background: var(--color-bg-alt);
    color: var(--color-secondary);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

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

.section-header {
    margin-bottom: 3rem;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 640px;
}

.section-header.centered p {
    margin: 0 auto;
}

.hero {
    padding: 4rem 0;
}

.split-section {
    overflow: hidden;
}

.split-content {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

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

.split-text h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.split-text h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.split-text p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.split-image {
    flex: 1;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

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

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

.hero-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    background: rgba(26, 86, 219, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

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

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

.stats-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

.intro-section {
    padding: 5rem 0;
    background: var(--color-bg-alt);
}

.intro-wrapper {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.intro-heading {
    flex: 0 0 40%;
}

.intro-heading h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.3;
}

.intro-text {
    flex: 1;
}

.intro-text p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

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

.feature-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
}

.services-preview {
    padding: 5rem 0;
}

.services-cards {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.service-card {
    flex: 1;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
    position: relative;
}

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

.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: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-lg);
    white-space: nowrap;
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.938rem;
    margin-bottom: 1rem;
}

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

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

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

.services-cta {
    text-align: center;
}

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

.dark-bg h2 {
    color: white;
}

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

.case-study blockquote {
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 3px solid var(--color-accent);
    font-size: 1.125rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.case-study cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.875rem;
    font-style: normal;
    color: rgba(255, 255, 255, 0.6);
}

.process-section {
    padding: 5rem 0;
    background: var(--color-bg-alt);
}

.process-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    flex: 1;
    min-width: 240px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
}

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

.step-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 0.938rem;
    color: var(--color-text-light);
}

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

.trust-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.trust-content {
    flex: 0 0 40%;
}

.trust-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.trust-content p {
    color: var(--color-text-light);
}

.trust-logos {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo-item {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 150px;
    padding: 1.5rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.cta-section {
    padding: 5rem 0;
    background: var(--color-bg-alt);
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    background: var(--color-secondary);
    border-radius: var(--radius-xl);
    padding: 3rem 4rem;
}

.cta-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.cta-note {
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer {
    background: var(--color-bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

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

.footer-brand p {
    font-size: 0.938rem;
    line-height: 1.6;
}

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

.footer-nav h4,
.footer-contact h4 {
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

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

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.938rem;
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: white;
}

.footer-contact {
    min-width: 200px;
}

.footer-contact address {
    font-size: 0.938rem;
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: white;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 1.25rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin: 0;
}

.cookie-content a {
    text-decoration: underline;
}

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

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

.sticky-cta:hover {
    background: var(--color-primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.page-hero {
    padding: 4rem 0 3rem;
    background: var(--color-bg-alt);
}

.page-hero.compact {
    padding: 3rem 0 2rem;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1.2;
    margin-bottom: 1rem;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    max-width: 700px;
    line-height: 1.6;
}

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

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
}

.value-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.value-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
}

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

.team-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.team-stat {
    text-align: center;
    min-width: 80px;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
}

.stat-desc {
    display: block;
    font-size: 0.813rem;
    color: var(--color-text-light);
}

.milestones-section {
    padding: 5rem 0;
    background: var(--color-bg-alt);
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
    padding-left: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
    transform: translateX(-5px);
}

.timeline-year {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--color-text-light);
    font-size: 0.938rem;
}

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

.certs-wrapper {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.certs-content {
    flex: 0 0 40%;
}

.certs-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.certs-content p {
    color: var(--color-text-light);
}

.certs-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cert-item {
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1.5rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
}

.cert-item strong {
    font-size: 1rem;
    color: var(--color-secondary);
    margin-bottom: 0.25rem;
}

.cert-item span {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.services-intro {
    padding: 2rem 0;
}

.intro-box {
    background: var(--color-bg-alt);
    border-left: 4px solid var(--color-primary);
    padding: 1.5rem 2rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.intro-box p {
    margin: 0;
    color: var(--color-text);
}

.service-detail {
    padding: 4rem 0;
}

.service-detail.alt-bg {
    background: var(--color-bg-alt);
}

.service-detail-wrapper {
    margin-bottom: 3rem;
}

.pricing-table {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.pricing-header {
    background: var(--color-secondary);
    padding: 1.25rem 2rem;
}

.pricing-header h3 {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
}

.pricing-item {
    flex: 1 1 calc(33.333% - 1px);
    min-width: 280px;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
}

.pricing-name {
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.25rem;
}

.pricing-desc {
    font-size: 0.875rem;
    color: var(--color-text-light);
    flex: 1;
    margin-bottom: 0.75rem;
}

.pricing-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.quote-section {
    padding: 5rem 0;
    background: var(--color-bg-alt);
}

.quote-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

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

.quote-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.quote-header p {
    color: var(--color-text-light);
}

.quote-form,
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: flex;
    gap: 1.25rem;
}

.form-row .form-group {
    flex: 1;
}

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.checkbox-group span {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

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

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-secondary);
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: transform var(--transition);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    color: var(--color-text-light);
    font-size: 0.938rem;
    line-height: 1.7;
}

.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 0 0 40%;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
}

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

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

.info-note {
    display: block;
    font-size: 0.813rem;
    color: var(--color-text-light);
    opacity: 0.8;
}

.contact-form-wrapper {
    flex: 1;
    background: var(--color-bg-alt);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
}

.contact-form-wrapper h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.map-section {
    padding: 0 0 4rem;
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.map-placeholder {
    background: var(--color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-contact-section {
    padding: 4rem 0;
    background: var(--color-bg-alt);
}

.faq-contact-grid {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.faq-contact-content {
    flex: 0 0 40%;
}

.faq-contact-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
}

.faq-contact-content p {
    color: var(--color-text-light);
}

.faq-contact-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-link {
    display: block;
    padding: 1.25rem 1.5rem;
    background: white;
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.faq-link:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.faq-link strong {
    display: block;
    color: var(--color-secondary);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.faq-link span {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.thanks-section {
    padding: 5rem 0;
    text-align: center;
}

.thanks-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--color-success);
}

.thanks-section h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.thanks-details {
    background: var(--color-bg-alt);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2.5rem;
}

.thanks-details p {
    margin: 0;
    color: var(--color-text);
}

.thanks-next {
    text-align: left;
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2.5rem;
}

.thanks-next h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1.25rem;
}

.next-steps {
    list-style: none;
}

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

.next-steps li:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text {
    color: var(--color-text);
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.related-section {
    padding: 4rem 0;
    background: var(--color-bg-alt);
}

.related-cards {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.related-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.related-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.related-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.related-card p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin: 0;
}

.legal-page {
    padding: 3rem 0 5rem;
}

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

.legal-content h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: var(--color-text-light);
    font-size: 0.875rem;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
}

.legal-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin: 1.5rem 0 0.75rem;
}

.legal-section p {
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-section ul,
.legal-section ol {
    margin-bottom: 1rem;
    padding-left: 1.25rem;
}

.legal-section li {
    color: var(--color-text);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-section ul ul,
.legal-section ol ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 1024px) {
    .split-content {
        flex-direction: column;
        min-height: auto;
    }

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

    .split-text {
        padding: 2.5rem 1.5rem;
    }

    .split-text h1 {
        font-size: 2.25rem;
    }

    .split-image {
        min-height: 300px;
    }

    .intro-wrapper,
    .trust-grid,
    .certs-wrapper,
    .faq-contact-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .intro-heading,
    .trust-content,
    .certs-content,
    .faq-contact-content {
        flex: none;
    }

    .services-cards {
        flex-direction: column;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem;
    }

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

    .contact-info {
        flex: none;
    }

    .pricing-item {
        flex: 1 1 50%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

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

    .nav-menu a {
        display: block;
        padding: 1rem 0;
    }

    .nav-toggle {
        display: flex;
    }

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

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .split-text {
        padding: 2rem 1.25rem;
    }

    .split-text h1 {
        font-size: 1.875rem;
    }

    .split-text h2 {
        font-size: 1.5rem;
    }

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

    .stat-number {
        font-size: 2rem;
    }

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

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

    .section-header h2 {
        font-size: 1.75rem;
    }

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

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .process-timeline {
        flex-direction: column;
    }

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

    .form-row {
        flex-direction: column;
    }

    .quote-form-wrapper {
        padding: 2rem 1.5rem;
    }

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

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

    .sticky-cta {
        display: none;
    }

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

    .legal-content h1 {
        font-size: 1.75rem;
    }
}
