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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #334155;
    background-color: #ffffff;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

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

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

.bg-light {
    background-color: #f8fafc;
}

.mt-4 {
    margin-top: 1.5rem;
}

/* Header */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-area a {
    font-weight: 700;
    font-size: 1.1rem;
    color: #0f172a;
}

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

.main-nav a {
    color: #475569;
    font-weight: 500;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: #0284c7;
}

.header-cta .phone-link {
    background: #0284c7;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s;
}

.header-cta .phone-link:hover {
    background: #0369a1;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
    color: white;
    padding: 6rem 0;
    text-align: left;
}

.hero-section.inner-hero {
    padding: 4rem 0;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.hero-content p {
    font-size: 1.15rem;
    max-width: 700px;
    margin-bottom: 2rem;
    color: #e2e8f0;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
}

.btn-primary {
    background: #0284c7;
    color: white;
}

.btn-primary:hover {
    background: #0369a1;
}

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

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

/* Sections */
.section {
    padding: 5rem 0;
}

.section h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.section p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* Cards */
.card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

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

.card ul {
    padding-left: 1.2rem;
    list-style: disc;
}

.card li {
    margin-bottom: 0.5rem;
}

/* CTA Banner */
.cta-banner {
    background: #f1f5f9;
    border-left: 4px solid #0284c7;
    padding: 2rem;
    margin-top: 3rem;
    border-radius: 0 8px 8px 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .cta-banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cta-banner p {
    margin-bottom: 0;
    font-weight: 500;
}

/* Tag list */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.tag-list li {
    background: #f1f5f9;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.95rem;
    border: 1px solid #cbd5e1;
}

/* Footer */
.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 4rem 0 2rem;
}

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

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: 2fr 1fr;
    }
}

.footer-info h4, .footer-links h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-info p, .footer-links a {
    margin-bottom: 0.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.sub-footer {
    border-top: 1px solid #1e293b;
    margin-top: 3rem;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0284c7;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.mobile-call-btn {
    display: block;
    color: white;
    text-align: center;
    padding: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }
    body {
        padding-bottom: 60px;
    }
}
