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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

.announcement-bar {
    background: #F8F9FB;
    padding: 0;
    text-align: center;
    color: #7A8599;
    font-size: 12px;
    border-bottom: 1px solid #EAEEF4;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.nav {
    background: #FFFFFF;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #E5EBF3;
}

.nav-logo {
    text-decoration: none;
}

.brand-primary {
    display: block;
    font-size: 18px;
    font-weight: 900;
    color: #0B1220;
    line-height: 1.2;
}

.brand-secondary {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #607089;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-menu a {
    color: #2A3B52;
    text-decoration: none;
    font-weight: 600;
}

.nav-menu a:hover {
    color: #1F6FDB;
}

.nav-phone {
    background: #1F6FDB;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 1px 2px rgba(16,24,40,0.06), 0 1px 1px rgba(16,24,40,0.04);
}

.nav-phone:hover {
    background: #1A5FC0;
}

.hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1F6FDB 0%, #1A5FC0 50%, #3b82f6 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.02) 35px, rgba(255,255,255,.02) 70px);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero h1 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 25px rgba(0, 0, 0, 0.3);
}

.hero-subheadline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn {
    border-radius: var(--btn-radius, 14px);
    padding: var(--btn-padding-y, 12px) var(--btn-padding-x, 18px);
    font-weight: var(--btn-font-weight, 650);
    font-size: 17px;
    letter-spacing: 0.2px;
    line-height: 1;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
    -webkit-tap-highlight-color: transparent;
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    background: #1F6FDB;
    color: white;
    box-shadow: var(--btn-shadow, 0 10px 24px rgba(16, 24, 40, 0.10), 0 2px 6px rgba(16,24,40,0.08));
}

@media (hover: hover) {
    .btn-primary:hover {
        transform: translateY(-1px);
        background: #1A5FC0;
        box-shadow: var(--btn-shadow-hover, 0 16px 34px rgba(16, 24, 40, 0.14), 0 4px 10px rgba(16,24,40,0.10));
    }
}

.btn-secondary {
    background: transparent;
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@media (hover: hover) {
    .btn-secondary:hover {
        transform: translateY(-1px);
        background: rgba(255, 255, 255, 0.15);
        box-shadow: var(--btn-outline-shadow-hover, 0 8px 18px rgba(16, 24, 40, 0.08));
    }
}

@media (max-width: 480px) {
    .btn {
        width: 100%;
        padding: 13px 18px;
    }
}

.trust-line {
    display: flex;
    gap: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.hero-features {
    display: grid;
    gap: 18px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateX(-5px);
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.3);
}

.feature-title {
    color: #1F6FDB;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.feature-desc {
    color: #475569;
    font-size: 14px;
    line-height: 1.5;
}

.services-section {
    padding: 80px 40px;
    background: #f8fafc;
}

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

.section-title {
    color: #1F6FDB;
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #475569;
    font-size: 18px;
}

.services-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.15);
    border-color: #1F6FDB;
}

.service-card h3 {
    color: #1F6FDB;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

.service-card p {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-card a {
    color: #1F6FDB;
    font-weight: 700;
    text-decoration: none;
}

.process-section {
    padding: 80px 40px;
    background: white;
}

.process-grid {
    max-width: 1200px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.process-step {
    text-align: center;
}

.process-step h3 {
    color: #1F6FDB;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

.process-step p {
    color: #475569;
    font-size: 15px;
}

.case-studies-section {
    padding: 80px 40px;
    background: #f8fafc;
}

.case-studies-grid {
    max-width: 1300px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.case-study-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.case-study-header {
    background: #1F6FDB;
    padding: 20px;
    color: white;
}

.case-study-content {
    padding: 25px;
}

.case-study-content h3 {
    color: #1F6FDB;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
}

.case-study-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.case-study-content li {
    color: #475569;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.case-study-content li:before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #1F6FDB;
    font-weight: bold;
}

.case-study-content a {
    color: #1F6FDB;
    font-weight: 700;
    text-decoration: none;
}

.service-areas-section {
    padding: 80px 40px;
    background: white;
}

.cities-grid {
    max-width: 1200px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.city-link {
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: #1F6FDB;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.city-link:hover {
    background: white;
    border-color: #1F6FDB;
    transform: translateY(-2px);
}

.final-cta {
    padding: 80px 40px;
    background: #1F6FDB;
    text-align: center;
    color: white;
}

.final-cta h2 {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 35px;
}

.footer {
    background: #1F6FDB;
    color: white;
    padding: 60px 40px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
}

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

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer a:hover {
    color: #ffffff;
}

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

.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    padding: 12px 16px;
    border-top: 1px solid #E5EBF3;
    z-index: 1000;
}

.mobile-cta-content {
    display: flex;
    gap: 12px;
}

.mobile-cta .btn {
    flex: 1;
    padding: 12px 16px;
    font-size: 14px;
    justify-content: center;
    border-radius: 8px;
}

.mobile-cta .btn-secondary {
    background: transparent;
    color: #1F6FDB;
    border: 1px solid #D9E1EC;
}

.mobile-cta .btn-secondary:hover {
    border-color: #1F6FDB;
}

.mobile-cta .btn-primary {
    background: #1F6FDB;
    color: #ffffff;
    border: none;
    box-shadow: 0 1px 2px rgba(16,24,40,0.06), 0 1px 1px rgba(16,24,40,0.04);
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    .nav-menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 34px;
    }
    .section-title {
        font-size: 30px;
    }
    .mobile-cta {
        display: block;
    }
    .trust-line {
        flex-wrap: wrap;
        gap: 15px;
    }
    .nav {
        padding: 15px 20px;
    }
    .cta-buttons {
        flex-direction: column;
    }
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #2A3B52;
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: block !important;
    }
    .nav-phone {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-logo .brand-primary {
        font-size: 15px;
    }
    .nav-logo .brand-secondary {
        font-size: 10px;
    }
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 101;
    padding: 20px;
    overflow-y: auto;
}

.mobile-nav-overlay.active {
    display: flex;
    flex-direction: column;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 10px;
}

.mobile-nav-brand {
    text-decoration: none;
}

.mobile-nav-brand .brand-primary {
    font-size: 16px;
    color: #1F6FDB;
}

.mobile-nav-brand .brand-secondary {
    font-size: 11px;
    color: #475569;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mobile-nav-links a {
    font-size: 16px;
    font-weight: 600;
    color: #1F6FDB;
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    background: #1F6FDB;
}

.mobile-phone-link svg {
    color: #ffffff;
}

.mobile-nav-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #1F6FDB;
}

.mobile-nav-close svg {
    width: 24px;
    height: 24px;
}

.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    padding: 12px 16px;
    border-top: 1px solid #E5EBF3;
    z-index: 99;
}

.mobile-sticky-cta .cta-buttons {
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mobile-sticky-cta .btn {
    padding: 12px 16px;
    font-size: 14px;
    justify-content: center;
    border-radius: 8px;
}

.mobile-sticky-cta .btn-secondary {
    background: transparent;
    color: #1F6FDB;
    border: 1px solid #D9E1EC;
}

.mobile-sticky-cta .btn-secondary:hover {
    border-color: #1F6FDB;
}

.mobile-sticky-cta .btn-primary {
    background: #1F6FDB;
    color: #ffffff;
    border: none;
    box-shadow: 0 1px 2px rgba(16,24,40,0.06), 0 1px 1px rgba(16,24,40,0.04);
}

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

.page-header {
    background: #1F6FDB;
    padding: 60px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.02) 35px, rgba(255,255,255,.02) 70px);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 0 2px 25px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.6;
}

.content-section {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h2 {
    color: #1F6FDB;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

h2, h3 {
    color: #1F6FDB;
    font-weight: 700;
}

.content-section p {
    color: #475569;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.breadcrumb {
    padding: 15px 40px;
    background: #f8fafc;
    font-size: 14px;
}

.breadcrumb a {
    color: #1F6FDB;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb span {
    color: #475569;
    margin: 0 8px;
}

/* MiniHero - Consistent subpage header band */
.minihero {
    background: var(--surface-light, #F5F7FA);
    border-bottom: 1px solid var(--border-150, #E5EBF3);
    padding: 28px 0 22px;
}

.minihero-inner {
    width: min(1100px, calc(100% - 32px));
    margin: 0 auto;
}

.minihero h1 {
    margin: 0 0 8px;
    font-size: clamp(26px, 3vw, 38px);
    color: var(--text-900, #0B1220);
    letter-spacing: -0.4px;
}

.minihero-sub {
    margin: 0 0 16px;
    color: var(--text-600, #445469);
    font-size: 1.05rem;
    max-width: 70ch;
}

.minihero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.minihero-secondary {
    color: var(--text-700, #2A3B52);
    border-color: var(--border-200, #D9E1EC);
}

@media (max-width: 520px) {
    .minihero-ctas { gap: 10px; }
}
