:root {
    --primary-color: #6B46C1;
    --secondary-color: #FF6B6B;
    --accent-color: #4ECDC4;
    --text-dark: #2D3748;
    --text-light: #718096;
    --bg-light: #F7FAFC;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

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

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-50px) rotate(180deg); }
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.app-store-btn img, .google-play-btn img {
    height: 50px;
    transition: transform 0.3s ease;
}

.app-store-btn:hover img, .google-play-btn:hover img {
    transform: scale(1.05);
}

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

.location-badge {
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    font-weight: 500;
}

.phone-mockup {
    position: relative;
    width: 350px;
    height: 700px;
    margin: 0 auto;
    background: #000;
    border-radius: 40px;
    padding: 10px;
    box-shadow: var(--shadow);
    animation: float-phone 6s infinite ease-in-out;
}

@keyframes float-phone {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.app-logo-display {
    max-width: 80%;
    max-height: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--white);
}

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

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

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(107, 70, 193, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(107, 70, 193, 0); }
    100% { box-shadow: 0 0 0 0 rgba(107, 70, 193, 0); }
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.step-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    animation: slide 2s infinite;
}

@keyframes slide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

/* Provider Section */
.providers {
    padding: 100px 0;
    background: var(--white);
}

.provider-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.provider-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.provider-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.provider-benefits li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.btn-secondary {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.provider-note {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.provider-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    animation: float-gentle 20s infinite ease-in-out;
}

.provider-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.provider-highlight {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Download Section */
.download {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.download h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.download p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    padding: 0.3rem 0;
    transition: color 0.3s ease;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .phone-mockup {
        width: 280px;
        height: 560px;
    }
    
    .hero-locations {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .provider-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}/* Additional styles for provider-focused landing page */
/* Add these to your existing styles.css */

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.hero-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-stats .stat strong {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color, #6B46C1);
    line-height: 1;
}

.hero-stats .stat span {
    font-size: 0.9rem;
    color: var(--text-light, #718096);
    margin-top: 0.25rem;
}

.hero-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light, #718096);
}

.btn-primary-large,
.btn-secondary-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary-large {
    background: linear-gradient(135deg, var(--primary-color, #6B46C1), var(--secondary-color, #FF6B6B));
    color: white;
}

.btn-secondary-large {
    background: white;
    color: var(--primary-color, #6B46C1);
    border: 2px solid var(--primary-color, #6B46C1);
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-secondary-large:hover {
    background: var(--primary-color, #6B46C1);
    color: white;
}

/* Pain Points Section */
.pain-points {
    padding: 80px 20px;
    background: var(--bg-light, #F7FAFC);
}

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

.pain-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-5px);
}

.pain-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pain-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark, #2D3748);
}

.pain-card p {
    color: var(--text-light, #718096);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.pain-card .solution {
    color: var(--accent-color, #4ECDC4);
    font-weight: 600;
    padding-top: 1rem;
    border-top: 2px solid var(--bg-light, #F7FAFC);
}

/* Pricing Teaser */
.pricing-teaser {
    padding: 80px 20px;
    background: white;
}

.pricing-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: var(--text-light, #718096);
    margin-bottom: 3rem;
}

.pricing-quick {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.price-option {
    background: var(--bg-light, #F7FAFC);
    padding: 2rem;
    border-radius: 16px;
    min-width: 250px;
    position: relative;
}

.price-option.popular {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1), rgba(255, 107, 107, 0.1));
    border: 2px solid var(--primary-color, #6B46C1);
}

.price-option .badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color, #6B46C1), var(--secondary-color, #FF6B6B));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.price-option h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.price-option .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color, #6B46C1);
    margin: 0.5rem 0;
}

.price-option .price span {
    font-size: 1.2rem;
    color: var(--text-light, #718096);
}

.price-option p {
    margin: 0.5rem 0;
    color: var(--text-dark, #2D3748);
}

.price-option .price-detail {
    font-size: 0.9rem;
    color: var(--text-light, #718096);
    margin-top: 1rem;
}

.price-divider {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light, #718096);
}

/* Comparison Table */
.comparison {
    padding: 80px 20px;
    background: var(--bg-light, #F7FAFC);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
}

.comparison-table {
    width: 100%;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--bg-light, #F7FAFC);
}

.comparison-table thead th {
    background: var(--text-dark, #2D3748);
    color: white;
    font-weight: 600;
}

.comparison-table th.highlight {
    background: linear-gradient(135deg, var(--primary-color, #6B46C1), var(--secondary-color, #FF6B6B));
    color: white;
    font-weight: 600;
}

.comparison-table td.highlight {
    background: rgba(107, 70, 193, 0.05);
    font-weight: 600;
}

.comparison-table tbody tr:hover {
    background: rgba(78, 205, 196, 0.05);
}

.table-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light, #718096);
}

/* Testimonials */
.testimonials {
    padding: 80px 20px;
    background: white;
}

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

.testimonial-card {
    background: var(--bg-light, #F7FAFC);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.testimonial-card .quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark, #2D3748);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-card .quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color, #6B46C1);
    opacity: 0.3;
    line-height: 0;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--text-light, #718096);
    font-size: 0.95rem;
}

/* Final CTA */
.final-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color, #6B46C1), var(--secondary-color, #FF6B6B));
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.final-cta .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.final-cta .btn-primary-large {
    background: white;
    color: var(--primary-color, #6B46C1);
}

.final-cta .btn-secondary-large {
    background: transparent;
    color: white;
    border-color: white;
}

.final-cta .btn-secondary-large:hover {
    background: white;
    color: var(--primary-color, #6B46C1);
}

.final-cta .cta-note {
    margin-top: 1.5rem;
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-stats .stat strong {
        font-size: 2rem;
    }
    
    .pricing-quick {
        flex-direction: column;
    }
    
    .price-divider {
        transform: rotate(90deg);
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .final-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

