:root {
    --primary-color: #0b5394;
    --primary-hover: #073a6a;
    --secondary-color: #f39c12;
    --secondary-hover: #d68910;
    --text-main: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --max-width: 1200px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 60px;
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-pad {
    padding: 80px 0;
}

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

.center {
    text-align: center;
}

h1, h2, h3, h4 {
    margin-bottom: 20px;
    line-height: 1.2;
    color: #1a1a1a;
}

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

p {
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.top-bar {
    background-color: #222;
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-phone {
    color: var(--secondary-color);
    font-weight: bold;
}

.site-header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo a {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a:not(.btn) {
    color: var(--text-main);
    font-weight: 500;
}

.main-nav a:not(.btn):hover {
    color: var(--primary-color);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-main);
    position: relative;
}

.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--text-main);
    left: 0;
}
.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

.hero {
    position: relative;
    padding: 120px 0;
    background-color: var(--primary-hover);
    color: var(--white);
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 { color: var(--white); }

.hero-subtext {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.cta-text {
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 30px;
}

.benefit-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefit-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.text-link {
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
}

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

.faq-item {
    background: var(--white);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.faq-item h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.map-placeholder {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    border: 2px dashed #ddd;
}

.site-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 0 20px;
}

.site-footer h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-layout {
    align-items: flex-start;
    border-bottom: 1px solid #333;
    padding-bottom: 40px;
    margin-bottom: 20px;
}

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

.footer-links a {
    color: #ccc;
}

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

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
}

.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 10px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.full-width {
    width: 100%;
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    
    .mobile-toggle { display: block; }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    .main-nav a {
        display: block;
        padding: 15px 20px;
    }
    
    .main-nav .btn {
        margin: 15px;
        text-align: center;
    }
    
    .split-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .split-layout.reverse .content-col {
        order: 2;
    }
    
    .split-layout.reverse .image-col {
        order: 1;
    }
    
    .footer-layout {
        flex-direction: column;
        gap: 30px;
    }
    
    .mobile-sticky-cta {
        display: block;
    }
}
