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

:root {
    --primary: #0d9488;
    --primary-dark: #0f766e;
    --primary-light: #ccfbf1;
    --navy: #0f172a;
    --dark-navy: #020617;
    --gray: #64748b;
    --light-gray: #f8fafc;
    --border: #e2e8f0;
    --success: #22c55e;
    --danger: #ef4444;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1e293b;
}

/* Top Bar */
.top-bar {
    background: var(--navy);
    color: white;
    padding: 10px 0;
    font-size: 13px;
}

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

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-left a,
.top-bar-right .hours {
    color: #94a3b8;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.top-bar-left a:hover {
    color: white;
}

.client-portal {
    color: white !important; font-weight: 500;
}

/* Header */
header {
    background: white;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-primary {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
}

.logo-secondary {
    font-size: 12px;
    color: var(--gray);
}

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

.nav-menu a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 0;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.btn-cta {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-cta:hover {
    background: var(--primary-dark);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 80px 0 100px;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-left h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 32px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
}

.hero-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.hero-stat-label {
    font-size: 13px;
    color: var(--gray);
    margin-top: 4px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

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

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

/* Dashboard Card */
.dashboard-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    overflow: hidden;
}

.dashboard-header {
    background: var(--navy);
    color: white;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
}

.dashboard-body {
    padding: 24px;
}

.dashboard-row {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

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

.dashboard-label {
    font-size: 13px;
    color: var(--gray);
    display: block;
    margin-bottom: 8px;
}

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

.dashboard-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
}

.dashboard-change {
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dashboard-change.positive {
    color: var(--success);
}

.dashboard-change.negative {
    color: var(--success);
}

/* Trust Bar */
.trust-bar {
    background: var(--primary);
    padding: 20px 0;
}

.trust-bar-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.trust-item i {
    font-size: 20px;
    opacity: 0.9;
}

/* Section Styles */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-badge.light {
    background: rgba(255,255,255,0.2);
    color: white;
}

.section-header h2 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 12px;
    font-weight: 800;
}

.section-header.white h2 {
    color: white;
}

.section-header p {
    font-size: 16px;
    color: var(--gray);
}

.section-header.white p {
    color: rgba(255,255,255,0.8);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--light-gray);
    padding: 32px 28px;
    border-radius: 12px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.service-card:hover {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(13, 148, 136, 0.12);
    transform: translateY(-4px);
}

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

.service-card h3 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card > p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    margin-bottom: 20px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 13px;
    color: var(--navy);
}

.service-list i {
    color: var(--primary);
    font-size: 10px;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 10px;
}

/* Why Section */
.why-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.why-intro {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 40px;
}

.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.why-feature {
    display: flex;
    gap: 16px;
}

.why-icon {
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 16px;
    flex-shrink: 0;
}

.why-feature h4 {
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 4px;
    font-weight: 700;
}

.why-feature p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

.results-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.result-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.result-item:last-child {
    border-bottom: none;
}

.result-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.result-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.result-label {
    font-size: 13px;
    color: var(--gray);
    margin-top: 4px;
}

/* Specialties Section */
.specialties-section {
    padding: 100px 0;
    background: white;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.specialty-item {
    text-align: center;
    padding: 24px 16px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s;
}

.specialty-item:hover {
    background: var(--primary-light);
    transform: translateY(-4px);
}

.specialty-icon {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 24px;
    color: var(--primary);
    border: 1px solid var(--border);
}

.specialty-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}

.specialties-cta {
    text-align: center;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--navy);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

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

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-connector {
    position: absolute;
    top: 24px;
    left: calc(50% + 32px);
    width: calc(100% - 64px);
    height: 2px;
    background: rgba(255,255,255,0.2);
}

.process-step:last-child .step-connector {
    display: none;
}

.process-step h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 700;
}

.process-step p {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    line-height: 1.6;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.testimonial-stars {
    color: #fbbf24;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.author-info strong {
    display: block;
    color: var(--navy);
    font-size: 14px;
}

.author-info span {
    font-size: 13px;
    color: var(--gray);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--primary);
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

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

.btn-white:hover {
    background: var(--light-gray);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--navy);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.contact-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-logo .logo-icon {
    background: var(--primary);
}

.contact-logo .logo-primary {
    color: white;
}

.contact-logo .logo-secondary {
    color: #94a3b8;
}

.contact-description {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.contact-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 13px;
}

.contact-badge i {
    color: var(--primary);
}

.contact-links-col h4,
.contact-details-col h4 {
    color: white;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-links-col ul {
    list-style: none;
}

.contact-links-col li {
    margin-bottom: 12px;
}

.contact-links-col a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.contact-links-col a:hover {
    color: white;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    color: #94a3b8;
    font-size: 13px;
}

.contact-detail i {
    color: var(--primary);
    margin-top: 2px;
}

/* Footer */
footer {
    background: var(--dark-navy);
    padding: 24px 0;
}

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

.footer-content p {
    color: #64748b;
    font-size: 13px;
}

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

.footer-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-container,
    .why-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .specialties-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .step-connector {
        display: none;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 8px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-left h1 {
        font-size: 32px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .services-grid,
    .testimonials-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .specialties-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .why-features {
        grid-template-columns: 1fr;
    }
    
    .trust-bar-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
