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

:root {
    --primary: #1a365d;
    --secondary: #c53030;
    --accent: #2b6cb0;
    --light: #f7fafc;
    --dark: #1a202c;
    --text: #2d3748;
    --muted: #718096;
    --white: #ffffff;
    --border: #e2e8f0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

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

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

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

.nav-cta {
    background: var(--secondary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197,48,48,0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
}

/* Split Sections */
.split-section {
    display: flex;
    min-height: 100vh;
}

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

.split-half {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.split-half.visual {
    background-size: cover;
    background-position: center;
    position: relative;
}

.split-half.visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,54,93,0.4) 0%, transparent 60%);
}

.split-half.dark {
    background: var(--primary);
    color: var(--white);
}

.split-half.light {
    background: var(--light);
}

.split-content {
    max-width: 540px;
}

.split-content h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--primary);
    font-weight: 800;
}

.split-half.dark .split-content h1 {
    color: var(--white);
}

.split-content h2 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 700;
}

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

.split-content p {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 32px;
}

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

.label-tag {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: #9b2c2c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197,48,48,0.3);
}

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

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

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

.btn-white:hover {
    background: var(--light);
    transform: translateY(-2px);
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Specific */
.hero-section {
    padding-top: 80px;
}

.hero-visual-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 60px;
}

.hero-stat-box {
    background: rgba(255,255,255,0.95);
    padding: 24px 32px;
    border-radius: 8px;
    display: flex;
    gap: 40px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 800;
}

.stat-item span {
    font-size: 0.85rem;
    color: var(--muted);
}

/* Services Grid */
.services-section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.6rem;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 700;
}

.section-header p {
    color: var(--muted);
    font-size: 1.1rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent);
}

.service-card h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary);
}

.service-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--muted);
}

/* Alternating Info Blocks */
.info-block {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px 0;
}

.info-block.reverse {
    flex-direction: row-reverse;
}

.info-block.bg-alt {
    background: var(--light);
}

.info-visual {
    flex: 1;
    position: relative;
}

.info-visual img {
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(0,0,0,0.12);
}

.info-visual::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    border-radius: 16px;
    z-index: -1;
    top: 24px;
    left: -24px;
    opacity: 0.15;
}

.info-block.reverse .info-visual::before {
    left: auto;
    right: -24px;
}

.info-text {
    flex: 1;
}

.info-text h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.info-text p {
    color: var(--muted);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text);
}

.feature-list li svg {
    width: 20px;
    height: 20px;
    stroke: var(--secondary);
    flex-shrink: 0;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: var(--primary);
}

.testimonials-section .section-header h2 {
    color: var(--white);
}

.testimonials-section .section-header p {
    color: rgba(255,255,255,0.7);
}

.testimonials-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(8px);
}

.testimonial-card p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 700;
}

.author-info h4 {
    color: var(--white);
    font-weight: 600;
}

.author-info span {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: var(--primary);
    padding: 60px 80px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--secondary);
    border-radius: 50%;
    right: -100px;
    bottom: -200px;
    opacity: 0.15;
}

.cta-text h2 {
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 700;
}

.cta-text p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
}

/* Form Styles */
.form-section {
    padding: 100px 0;
}

.form-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.form-info p {
    color: var(--muted);
    margin-bottom: 32px;
}

.form-container {
    flex: 1;
    background: var(--white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--white);
}

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

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

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #9b2c2c;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197,48,48,0.3);
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 80px 0 40px;
    color: var(--white);
}

.footer-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-weight: 600;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-brand {
    max-width: 280px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

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

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 20px 24px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

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

.cookie-inner p {
    color: rgba(255,255,255,0.9);
    flex: 1;
    font-size: 0.95rem;
}

.cookie-inner a {
    color: var(--secondary);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    border: none;
    transition: all 0.3s ease;
}

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

.cookie-btn.reject {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-cta a {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(197,48,48,0.4);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    transform: scale(1.05);
}

/* Page Headers */
.page-header {
    padding: 160px 0 80px;
    background: var(--primary);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 800;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Pages */
.content-section {
    padding: 80px 0;
}

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

.content-narrow h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 40px 0 16px;
    font-weight: 700;
}

.content-narrow h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin: 32px 0 12px;
    font-weight: 600;
}

.content-narrow p {
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.8;
}

.content-narrow ul {
    margin: 16px 0 24px 24px;
}

.content-narrow ul li {
    color: var(--text);
    margin-bottom: 8px;
}

/* Contact Info */
.contact-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    background: var(--light);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.contact-card svg {
    width: 48px;
    height: 48px;
    stroke: var(--secondary);
    margin-bottom: 20px;
}

.contact-card h3 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.contact-card p {
    color: var(--muted);
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px;
    text-align: center;
}

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

.thanks-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--secondary) 0%, #9b2c2c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 800;
}

.thanks-content p {
    color: var(--muted);
    font-size: 1.2rem;
    margin-bottom: 32px;
}

.service-badge {
    display: inline-block;
    background: var(--light);
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 32px;
    border: 2px solid var(--border);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 100px 24px 40px;
}

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

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 24px;
}

.mobile-menu ul a {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 600;
}

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

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

    .split-half {
        padding: 60px 40px;
    }

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

    .info-block {
        flex-direction: column;
        gap: 40px;
        padding: 60px 0;
    }

    .info-block.reverse {
        flex-direction: column;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

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

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

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .split-content h1 {
        font-size: 2.4rem;
    }

    .split-content h2 {
        font-size: 1.8rem;
    }

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

    .service-card {
        min-width: 100%;
    }

    .testimonial-card {
        min-width: 100%;
    }

    .hero-stat-box {
        flex-direction: column;
        gap: 20px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .form-container {
        padding: 32px 24px;
    }
}
