:root {
    --primary-color: #a855f7;
    --primary-dark: #9333ea;
    --primary-light: #c084fc;
    --secondary-color: #ec4899;
    --accent-warm: #fbbf24;
    --accent-blue: #60a5fa;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-white: #ffffff;
    --bg-warm: #fef3f9;
    --bg-soft: #faf5ff;
    --bg-gray: #f8fafc;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --error-color: #ef4444;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: scroll;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
}

.logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    max-width: 300px;
}

.logo svg {
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    14% { transform: scale(1.15); }
    28% { transform: scale(1); }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-contact {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-left: 1.5rem;
}

.nav-contact a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.nav-contact a:hover {
    opacity: 0.7;
}

.nav-contact svg {
    flex-shrink: 0;
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-left: 0.25rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(88, 72, 183, 0.2);
}

.nav-social a {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    transition: opacity 0.3s ease;
}

.nav-social a:hover {
    opacity: 0.7;
}

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

.mobile-contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color) !important;
    font-weight: 600 !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

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

.mobile-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mobile-menu a:hover {
    background: var(--bg-gray);
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-warm) 50%, #fff 100%);
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="3" fill="%23a855f7" opacity="0.08"/></svg>');
    opacity: 0.4;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.text-accent {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-item svg {
    color: var(--primary-color);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    border: none;
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.15);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--bg-warm), var(--primary-light));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.2);
}

.service-icon svg {
    color: var(--primary-dark);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* About Section */
.about {
    background: var(--bg-soft);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-intro {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-values {
    margin-top: 2rem;
    padding: 2.5rem;
    background: var(--bg-white);
    border-radius: 20px;
    border-left: 6px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.about-values h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-values ul {
    list-style: none;
}

.about-values li {
    padding: 0.75rem 0;
    color: var(--text-light);
    line-height: 1.8;
}

.about-values strong {
    color: var(--text-dark);
}

.about-image {
    height: 500px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-soft) 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Referrals Section */
.referrals {
    background: var(--bg-white);
}

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

.referral-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.referral-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.referral-benefits {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-dark);
}

.benefit-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-info-box {
    background: var(--bg-warm);
    padding: 2rem;
    border-radius: 20px;
    margin-top: 2rem;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.1);
}

.contact-info-box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info-box p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.contact-info-box a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.map-box {
    background: var(--bg-warm);
    padding: 2rem;
    border-radius: 20px;
    margin-top: 1.5rem;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.1);
}

.map-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Forms */
.referral-form-container,
.contact-form-container {
    background: var(--bg-white);
    border: none;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.referral-form h3,
.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1.5rem 0;
    color: var(--text-dark);
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.referral-form h3:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

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

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.checkbox-label:hover {
    background: var(--bg-gray);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

/* Contact Section */
.contact {
    background: var(--bg-soft);
}

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

.contact-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.contact-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-light);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.95);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

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

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

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
        height: 300px;
    }

    .referral-content {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Careers Page */
.careers-hero {
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-soft) 50%, #fff 100%);
    padding: 8rem 0 5rem;
    text-align: center;
}

.careers-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.why-work-section {
    background: var(--bg-white);
    padding: 5rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon svg {
    color: white;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.positions-section {
    background: var(--bg-gray);
    padding: 5rem 0;
}

.hiring-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.hiring-category {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 2rem 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.hiring-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.12);
}

.hiring-category h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.hiring-category p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .hiring-overview {
        grid-template-columns: 1fr;
    }
}

.application-section {
    background: var(--bg-white);
    padding: 5rem 0;
}

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

.application-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.process-steps {
    margin-bottom: 2rem;
}

.process-step {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.step-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
    margin: 0;
}

.application-form-container {
    background: var(--bg-white);
    border: none;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.paylocity-embed {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
}

.application-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1.5rem 0;
    color: var(--text-dark);
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.application-form h3:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* About Page */
.about-page-content {
    background: var(--bg-white);
    padding: 5rem 0;
}

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

.about-main h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2.5rem 0 1rem 0;
}

.about-main h2:first-child {
    margin-top: 0;
}

.about-main p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-services-list {
    margin: 1rem 0 2rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-services-list li {
    margin-bottom: 1rem;
}

.about-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-benefit-item {
    background: var(--bg-soft);
    padding: 1.5rem;
    border-radius: 16px;
}

.about-benefit-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.about-benefit-item p {
    margin: 0;
    font-size: 0.9375rem;
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-box {
    background: var(--bg-warm);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.1);
}

.cta-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Insurance Page */
.insurance-content {
    background: var(--bg-white);
    padding: 5rem 0;
}

.insurance-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.insurance-intro h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.insurance-intro p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

.insurance-notice {
    display: flex;
    gap: 1rem;
    background: var(--bg-warm);
    padding: 1.5rem;
    border-radius: 16px;
    margin-top: 2rem;
    text-align: left;
}

.insurance-notice svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.insurance-notice p {
    margin: 0;
    font-size: 0.9375rem;
}

.insurance-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 4rem 0;
}

.insurance-category {
    background: var(--bg-soft);
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid transparent;
}

.insurance-category--purple {
    background: rgba(168, 85, 247, 0.08);
    border-color: #8273da;
    --category-color: #8273da;
}

.insurance-category--pink {
    background: rgba(218, 115, 210, 0.08);
    border-color: #da73d2;
    --category-color: #da73d2;
}

.insurance-category--green {
    background: rgba(81, 214, 119, 0.08);
    border-color: #51d677;
    --category-color: #51d677;
}

.insurance-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--category-color, var(--primary-color));
    text-align: left;
    width: 100%;
}

.insurance-list {
    list-style: none;
}

.insurance-list li {
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
}

.insurance-list li:last-child {
    border-bottom: none;
}

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

.insurance-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.insurance-logo-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.insurance-logo-card img {
    width: 100%;
    max-width: 140px;
    height: 80px;
    object-fit: contain;
}

.insurance-logo-card span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .insurance-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

.insurance-verification {
    max-width: 900px;
    margin: 4rem auto;
}

.insurance-verification h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.verification-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

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

.policy-sections {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.policy-card {
    background: var(--bg-white, #fff);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color, #e5e7eb);
}

.policy-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
}

.policy-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-card ul {
    list-style: none;
    padding: 0;
}

.policy-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    color: var(--text-light);
    position: relative;
}

.policy-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.policy-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-detail-card {
    background: var(--bg-white, #fff);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color, #e5e7eb);
    display: flex;
    flex-direction: column;
}

.service-detail-card h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-detail-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.service-detail-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.service-detail-card ul {
    list-style: none;
    padding: 0;
}

.service-detail-card ul li {
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    color: var(--text-light);
    position: relative;
    font-size: 0.95rem;
}

.service-detail-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-detail-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 768px) {
    .services-detail-grid {
        grid-template-columns: 1fr;
    }
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.service-detail-header h2 {
    margin-bottom: 0 !important;
}

.service-download {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.insurance-faq {
    max-width: 800px;
    margin: 4rem auto;
}

.insurance-faq h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.faq-item {
    background: var(--bg-soft);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.faq-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.insurance-cta {
    background: var(--bg-warm);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    margin-top: 4rem;
}

.insurance-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.insurance-cta p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Referral Page */
.referral-option-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.referral-option-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
    color: inherit;
}

.referral-option-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.referral-option-card--online { border-color: #ef4444; }
.referral-option-card--online .referral-option-icon { color: #ef4444; }
.referral-option-card--download { border-color: var(--primary-color); }
.referral-option-card--download .referral-option-icon { color: var(--primary-color); }
.referral-option-card--upload { border-color: #eab308; }
.referral-option-card--upload .referral-option-icon { color: #eab308; }
.referral-option-card--fax { border-color: var(--text-light); }
.referral-option-card--fax .referral-option-icon { color: var(--text-light); }

.referral-option-icon {
    margin-bottom: 1rem;
}

.referral-option-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.referral-option-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.referral-esign {
    margin-bottom: 4rem;
}

.referral-esign h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.referral-esign p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.esign-container {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Responsive Careers Page */
@media (max-width: 768px) {
    .careers-hero-content h1 {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .position-header {
        flex-direction: column;
    }

    .position-badge {
        align-self: flex-start;
    }

    .application-content {
        grid-template-columns: 1fr;
    }

    .about-page-grid {
        grid-template-columns: 1fr;
    }

    .referral-option-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .insurance-grid {
        grid-template-columns: 1fr;
    }

    .verification-steps {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    animation-delay: 0.1s;
}

.hero-subtitle {
    animation-delay: 0.2s;
}

.hero-buttons {
    animation-delay: 0.3s;
}

.hero-features {
    animation-delay: 0.4s;
}

/* ==========================================================================
   HOMEPAGE (index.html) — Styles migrated from inline <style> tag
   ========================================================================== */

/* Homepage CSS Variables (extend :root) */
:root {
  --purple: #5848b7;
  --purple-dark: #4538a0;
  --purple-light: #7b6dd4;
  --purple-pale: #ede9fc;
  --purple-ghost: #f6f4fe;
  --warm: #f9a26c;
  --warm-light: #fdebd6;
  --rose: #e8657a;
  --rose-light: #fce8ec;
  --teal: #38b6a0;
  --teal-light: #e2f5f1;
  --cream: #fefcf8;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
  --shadow-md: 0 10px 25px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.04);
  --shadow-lg: 0 20px 40px -8px rgba(0,0,0,.1);
  --radius: 12px;
  --radius-lg: 20px;
}

/* Homepage utilities */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-pale);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.8;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Homepage buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .3s ease;
}
.btn-outline {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}
.btn-outline:hover {
  background: var(--purple);
  color: #fff;
  transform: translateY(-2px);
}
.btn-warm {
  background: var(--warm);
  color: #fff;
  border-color: var(--warm);
}
.btn-warm:hover {
  background: #e8893e;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249,162,108,.35);
}
.btn-sm {
  padding: 10px 24px;
  font-size: .85rem;
}

/* Homepage animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes heartbeat { 0%,100% { transform: scale(1); } 14% { transform: scale(1.15); } 28% { transform: scale(1); } }
.animate { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.animate.visible { opacity: 1; transform: translateY(0); }
.animate-delay-1 { transition-delay: .1s; }
.animate-delay-2 { transition-delay: .2s; }
.animate-delay-3 { transition-delay: .3s; }
.animate-delay-4 { transition-delay: .4s; }

/* Homepage header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.04);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.06); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo-heart-pulse { transform-origin: 133px 18px; animation: heartbeat 2s infinite; }
.logo-stacked { flex-direction: column; align-items: center; gap: 0; line-height: 1.1; position: relative; }
.logo-stacked .logo-icon { width: 140%; height: 22px; margin-bottom: -2px; }
.logo-stacked .logo-text { font-size: 0.85rem; font-weight: 800; text-align: center; }
.logo-stacked .logo-text strong { color: var(--primary-color, #5848b7); }
.nav-cta {
  padding: 10px 24px !important;
  background: var(--purple);
  color: #fff !important;
  border-radius: 50px;
  font-weight: 700;
}
.nav-cta:hover { background: var(--purple-dark); }
.nav-cta::after { display: none !important; }
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-700);
  cursor: pointer;
}

/* Homepage hero */
.hero.homepage-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple-ghost) 0%, var(--cream) 50%, var(--warm-light) 100%);
  padding-top: 72px;
}
.hero.homepage-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88,72,183,.07) 0%, transparent 70%);
}
.hero.homepage-hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,162,108,.08) 0%, transparent 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--purple-pale);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-badge i { font-size: .7rem; }
.hero.homepage-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--gray-900);
}
.hero.homepage-hero h1 .highlight {
  color: var(--purple);
  position: relative;
}
.hero.homepage-hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(88,72,183,.12);
  border-radius: 4px;
  z-index: -1;
}
.hero-desc {
  font-size: 1.15rem;
  color: var(--gray-500);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.8;
}
.hero-stats { display: flex; gap: 40px; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num { font-size: 1.6rem; font-weight: 800; color: var(--purple); }
.hero-stat-label { font-size: .8rem; color: var(--gray-500); font-weight: 600; }
.hero-visual {
  position: relative;
  animation: fadeIn 1s ease .3s forwards;
  opacity: 0;
}
.hero-image-main {
  width: 100%;
  aspect-ratio: 4/3.5;
  border-radius: var(--radius-lg);
  background: none;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image-main::before { display: none; }
.hero-image-main::after { display: none; }
.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}
.hero-float-card.top-right { top: -10px; right: -20px; animation-delay: 0s; }
.hero-float-card.bottom-left { bottom: 20px; left: -20px; animation-delay: 1s; }
.float-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.float-card-title { font-size: .8rem; font-weight: 700; color: var(--gray-800); }
.float-card-text { font-size: .7rem; color: var(--gray-500); }

/* Homepage services */
.homepage .services { background: var(--white); position: relative; }
.homepage .services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-pale), transparent);
}
.homepage .services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.homepage .service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 0;
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: none;
}
.service-img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  object-position: center;
  padding: 12px 12px 0;
}
.homepage .service-card .service-icon,
.homepage .service-card h3,
.homepage .service-card p,
.homepage .service-card .service-link {
  margin-left: 28px;
  margin-right: 28px;
}
.homepage .service-card h3 { margin-top: 20px; }
.homepage .service-card p { padding-bottom: 16px; }
.homepage .service-card .service-link { padding-bottom: 28px; }
.homepage .service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--purple);
  transform: scaleX(0);
  transition: transform .4s ease;
}
.homepage .service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.homepage .service-card:hover::before { transform: scaleX(1); }
.homepage .service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: transform .3s;
  box-shadow: none;
  background: var(--purple-pale);
}
.homepage .service-card:hover .service-icon { transform: scale(1.1); }
.homepage .service-card:nth-child(1) .service-icon { background: var(--purple-pale); color: var(--purple); }
.homepage .service-card:nth-child(2) .service-icon { background: var(--warm-light); color: var(--warm); }
.homepage .service-card:nth-child(3) .service-icon { background: var(--teal-light); color: var(--teal); }
.homepage .service-card:nth-child(4) .service-icon { background: var(--rose-light); color: var(--rose); }
.homepage .service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.homepage .service-card p { font-size: .9rem; color: var(--gray-500); line-height: 1.7; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--purple);
  opacity: 0;
  transform: translateY(8px);
  transition: all .3s;
}
.homepage .service-card:hover .service-link { opacity: 1; transform: translateY(0); }

/* Homepage why choose us */
.why {
  background: var(--purple-ghost);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88,72,183,.05) 0%, transparent 70%);
  transform: translateY(-50%);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}
.why-image {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: none;
  position: relative;
  overflow: hidden;
}
.why-image img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.why-image::before { display: none; }
.why-image::after { display: none; }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-feature {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  transition: all .3s;
  border: 1px solid transparent;
}
.why-feature:hover {
  box-shadow: var(--shadow);
  border-color: var(--purple-pale);
  transform: translateY(-2px);
}
.why-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--purple-pale);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 12px;
}
.why-feature h4 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.why-feature p { font-size: .8rem; color: var(--gray-500); line-height: 1.6; }

/* Homepage how it works */
.process { background: var(--white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-pale), var(--purple), var(--purple-pale));
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--purple);
  margin: 0 auto 24px;
  position: relative;
  transition: all .4s;
}
.step:hover .step-number {
  background: var(--purple);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(88,72,183,.3);
}
.step-icon { font-size: 1.4rem; margin-bottom: 8px; display: block; }
.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: .9rem; color: var(--gray-500); max-width: 280px; margin: 0 auto; line-height: 1.7; }

/* Homepage testimonials */
.testimonials {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 25 C50 15 40 8 30 15 C20 22 20 34 30 44 L50 64 L70 44 C80 34 80 22 70 15 C60 8 50 15 50 25Z' fill='rgba(255,255,255,0.02)'/%3E%3C/svg%3E") repeat;
  opacity: .8;
}
.testimonials .section-label { background: rgba(255,255,255,.15); color: #fff; }
.testimonials .section-title { color: #fff; }
.testimonials .section-sub { color: rgba(255,255,255,.7); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 24px;
  margin-top: 48px;
  position: relative;
  z-index: 2;
}
.testimonial-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: all .3s;
}
.testimonial-card:hover { background: rgba(255,255,255,.15); transform: translateY(-4px); }
.testimonial-stars { color: var(--warm); margin-bottom: 16px; font-size: .9rem; letter-spacing: 2px; }
.testimonial-text { font-size: .95rem; line-height: 1.8; color: rgba(255,255,255,.9); margin-bottom: 20px; font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-name { font-size: .9rem; font-weight: 700; }
.testimonial-role { font-size: .75rem; color: rgba(255,255,255,.6); }
.testimonial-note {
  text-align: center;
  margin-top: 28px;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  font-style: italic;
  position: relative;
  z-index: 2;
}

/* Homepage careers teaser */
.homepage .careers { background: var(--cream); position: relative; }
.careers-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.careers-content .section-title { margin-bottom: 20px; }
.careers-desc { font-size: 1.05rem; color: var(--gray-500); margin-bottom: 28px; line-height: 1.8; }
.careers-roles { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.role-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--purple-pale);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--purple);
  transition: all .3s;
}
.role-tag:hover { background: var(--purple); color: #fff; border-color: var(--purple); }
.careers-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.perk {
  display: flex;
  align-items: start;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.perk-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--purple-pale);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
}
.perk h4 { font-size: .85rem; font-weight: 700; margin-bottom: 2px; }
.perk p { font-size: .78rem; color: var(--gray-500); }

/* Homepage insurance banner */
.homepage .insurance { background: var(--white); padding: 60px 0; }
.insurance-inner {
  background: linear-gradient(135deg, var(--purple-ghost) 0%, var(--warm-light) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 1px solid var(--purple-pale);
}
.insurance-content h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.insurance-content p { font-size: 1rem; color: var(--gray-500); max-width: 500px; }

/* Homepage footer */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.95);
  padding: 80px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand { max-width: 300px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.footer-logo i { color: var(--purple-light); }
.footer-brand p { font-size: .88rem; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.9);
  transition: all .3s;
  font-size: .9rem;
}
.footer-social a:hover { background: var(--purple); color: #fff; transform: translateY(-2px); }
.footer-col h4 {
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.footer-col a { display: block; font-size: .88rem; padding: 6px 0; transition: color .2s; color: rgba(255,255,255,.95); text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-contact-item { display: flex; align-items: start; gap: 10px; margin-bottom: 14px; font-size: .88rem; color: rgba(255,255,255,.95); }
.footer-contact-item a { color: rgba(255,255,255,.95); text-decoration: none; }
.footer-contact-item a:hover { color: #fff; }
.footer-contact-item i { color: rgba(255,255,255,.6); margin-top: 4px; font-size: .8rem; width: 16px; text-align: center; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 48px;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* Homepage responsive overrides */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { max-width: 500px; margin: 40px auto 0; }
  .hero-float-card { display: none; }
  .homepage .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-image { max-width: 500px; margin: 0 auto; }
  .why-features { margin-top: 32px; }
  .careers-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .header .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--gray-200);
  }
  .header .nav-links.open { display: flex; }
  .mobile-toggle { display: block; }
  .homepage .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 48px; }
  .process-steps::before { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr; }
  .careers-perks { grid-template-columns: 1fr; }
  .insurance-inner { flex-direction: column; text-align: center; padding: 36px 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-stats { gap: 24px; }
}
@media (max-width: 480px) {
  .hero.homepage-hero h1 { font-size: 1.9rem; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
}
