:root {
    --primary: #1a3a5c;
    --primary-dark: #0f2841;
    --secondary: #2d7d9a;
    --accent: #e8b923;
    --text: #2c3e50;
    --text-light: #6b7c8f;
    --bg-light: #f7f9fb;
    --bg-dark: #1a3a5c;
    --white: #ffffff;
    --border: #e1e8ed;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 600;
    color: var(--primary-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

p { margin-bottom: 1rem; }

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

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

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

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

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

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

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

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

.btn-full {
    width: 100%;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: var(--white);
    padding: 1.25rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: var(--transition);
}

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

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9375rem;
}

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

.cookie-buttons .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 900;
    box-shadow: var(--shadow);
}

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

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

.logo:hover { color: var(--primary-dark); }

.nav-desktop {
    display: none;
    gap: 2rem;
}

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

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--secondary);
}

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

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

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

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

.nav-mobile {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 1rem 1.5rem;
}

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

.nav-mobile .nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

/* Split Hero */
.split-hero {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin-top: 60px;
}

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

.hero-content {
    padding: 3rem 1.5rem;
    max-width: 600px;
}

.hero-label {
    display: inline-block;
    background: var(--bg-light);
    color: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-image {
    width: 100%;
    height: 50vh;
    background-size: cover;
    background-position: center;
}

/* Trust Strip */
.trust-strip {
    background: var(--primary);
    padding: 2.5rem 1.5rem;
}

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

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 120px;
}

.trust-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.trust-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}

/* Split Sections */
.split-section {
    display: flex;
    flex-direction: column;
}

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

.split-image {
    width: 100%;
    height: 50vh;
    min-height: 300px;
    background-size: cover;
    background-position: center;
}

.split-content {
    padding: 3rem 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.split-content.light {
    color: var(--white);
}

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

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

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

.split-content.light .section-label {
    color: var(--accent);
}

.split-content h2 {
    margin-bottom: 1.25rem;
}

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

.feature-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
}

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

.testimonial {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    border-left: 4px solid var(--accent);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 0.75rem;
}

.testimonial cite {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Services Preview */
.services-preview {
    padding: 5rem 0;
}

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

.section-header.centered {
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    margin-bottom: 1rem;
}

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

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

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

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

.service-card.featured {
    border-color: var(--secondary);
    border-width: 2px;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-icon {
    width: 48px;
    height: 48px;
    color: var(--secondary);
    margin-bottom: 1.25rem;
}

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

.service-card h3 {
    margin-bottom: 0.75rem;
}

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

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

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

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

.services-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.process-step {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

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

.process-step p {
    color: var(--text-light);
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

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

/* Form Section */
.form-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.form-intro h2 {
    margin-bottom: 0.75rem;
}

.form-intro p {
    color: var(--text-light);
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(45, 125, 154, 0.1);
}

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

/* Partners Section */
.partners-section {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
}

.partners-label {
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.partners-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.partner-logo {
    color: var(--text-light);
    font-size: 1.25rem;
    font-weight: 600;
    opacity: 0.5;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    padding: 4rem 0 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

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

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

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

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 80px;
    right: 1.5rem;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 800;
    transition: var(--transition);
}

.sticky-cta:hover {
    background: #d4a61e;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 8rem 1.5rem 4rem;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header p {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Content Pages */
.content-section {
    padding: 4rem 0;
}

.content-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.content-narrow h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.content-narrow h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.content-narrow ul,
.content-narrow ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

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

/* Services Page */
.services-full {
    padding: 5rem 0;
}

.service-row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
}

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

.service-info {
    flex: 1;
}

.service-info h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

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

.service-pricing {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.service-pricing .price {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.contact-card h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-card p {
    color: var(--text-light);
    margin: 0;
}

/* About Page */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 600;
}

.team-info h3 {
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

/* Thanks Page */
.thanks-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

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

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

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

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

/* Responsive */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .split-hero {
        flex-direction: row;
    }

    .split-hero .split-left,
    .split-hero .split-right {
        width: 50%;
    }

    .hero-content {
        padding: 4rem 3rem;
    }

    .hero-image {
        height: 100%;
        min-height: 100vh;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

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

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

    .split-section .split-left,
    .split-section .split-right {
        width: 50%;
    }

    .split-image {
        height: auto;
        min-height: 500px;
    }

    .split-content {
        padding: 4rem 3rem;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1;
        min-width: 280px;
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1;
        min-width: 220px;
    }

    .cta-box {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 3rem 4rem;
    }

    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .service-row {
        flex-direction: row;
        align-items: flex-start;
    }

    .service-pricing {
        min-width: 200px;
    }

    .contact-info-grid {
        flex-direction: row;
    }

    .contact-card {
        flex: 1;
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1;
        min-width: 280px;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        padding: 5rem 4rem;
    }

    .trust-inner {
        gap: 4rem;
    }

    .split-content {
        padding: 5rem 4rem;
    }
}
