@tailwind base;
@tailwind components;
@tailwind utilities;

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1F1F1F;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: #1F1F1F;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    color: #2E2E2E;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #00A9B7 0%, #008C95 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 169, 183, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #008C95 0%, #00797F 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 169, 183, 0.4);
}

.btn-secondary {
    background: #B2F1F9;
    color: #00797F;
    border: 2px solid #00A9B7;
}

.btn-secondary:hover {
    background: #00A9B7;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #00A9B7;
    border: 2px solid #00A9B7;
}

.btn-outline:hover {
    background: #00A9B7;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

/* Pulse Animation */
.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(0, 169, 183, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 169, 183, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 169, 183, 0.3);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 169, 183, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00A9B7;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #1F1F1F;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #00A9B7;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00A9B7;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: #00A9B7 !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
}

.nav-cta:hover {
    background: #008C95 !important;
    transform: translateY(-2px);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #00A9B7;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: #FFFFFF;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FFFFFF;
    z-index: -1;
}

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

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

.hero-text {
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1F1F1F;
}

.highlight {
    background: linear-gradient(135deg, #00A9B7 0%, #008C95 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #2E2E2E;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #00A9B7;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #4A4A4A;
    font-weight: 500;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-nurse-container {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 169, 183, 0.2);
}

.hero-nurse {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    color: #00A9B7;
}

.card-1 {
    top: 20%;
    right: -20%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    right: -30%;
    animation-delay: 1s;
}

.card-3 {
    top: 60%;
    left: -30%;
    animation-delay: 2s;
}

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

.app-mockup {
    position: absolute;
    top: -50px;
    right: -100px;
    width: 200px;
    opacity: 0.3;
}

.mockup-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.hero-wave .shape-fill {
    fill: #F8F9FA;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: #FFFFFF;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    color: #1F1F1F;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #00A9B7 0%, #008C95 100%);
    border-radius: 2px;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.how-it-works-card {
    background: #FAFAFA;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 169, 183, 0.1);
}

.how-it-works-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 169, 183, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00A9B7 0%, #008C95 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: white;
}

.how-it-works-card h3 {
    margin-bottom: 20px;
    color: #1F1F1F;
}

.how-it-works-card p {
    margin-bottom: 30px;
    color: #4A4A4A;
}

.feature-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #4A4A4A;
}

.feature-list i {
    color: #00A9B7;
    font-size: 0.9rem;
}

/* MSP Comparison Section */
.msp-comparison {
    padding: 100px 0;
    background: #F9F9F9;
}

.comparison-table-container {
    margin: 60px 0 50px;
    overflow-x: auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.comparison-table {
    width: 100%;
    min-width: 700px;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    margin-bottom: 0;
}

.comparison-header > div {
    padding: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.comparison-header .feature-col {
    background: #3B82F6;
    color: #FFFFFF;
    border-radius: 0;
}

.comparison-header .msp-col {
    background: #FFD700;
    color: #000000;
    border-radius: 0;
}

.comparison-header .nursesphere-col {
    background: #16A34A;
    color: #FFFFFF;
    border-radius: 0;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    margin-bottom: 0;
    align-items: stretch;
    border-bottom: 1px solid #e0e0e0;
}

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

.feature-col,
.msp-col,
.nursesphere-col {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    min-height: 80px;
    border-right: 1px solid #e0e0e0;
}

.msp-col {
    border-right: 1px solid #000000;
    border-bottom: 1px solid #000000;
}

.feature-col {
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.nursesphere-col {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
}

.feature-col {
    background: #3B82F6;
    font-weight: 700;
    color: #FFFFFF;
    justify-content: center;
    text-align: center;
    font-size: 1.1rem;
}

.msp-col {
    background: #FFD700;
    color: #000000;
    font-weight: 600;
    gap: 8px;
}

.nursesphere-col {
    background: #16A34A;
    color: #ffffff;
    font-weight: 600;
    gap: 8px;
    border-right: none;
}

.msp-col .icon {
    font-size: 1.2rem;
    color: #3b82f6;
}

.nursesphere-col .icon {
    font-size: 1.2rem;
    color: #dc2626;
}

.comparison-footnote {
    margin-top: 20px;
    text-align: center;
}

.comparison-footnote p {
    font-size: 0.9rem;
    color: #6B7280;
    font-style: italic;
    margin: 0;
}

.comparison-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Mobile responsiveness for comparison table */
@media (max-width: 768px) {
    .comparison-table-container {
        margin: 40px 0;
        overflow: visible;
        border-radius: 12px;
    }
    
    .comparison-table {
        min-width: auto;
        width: 100%;
    }
    
    .comparison-header {
        display: none;
    }
    
    .comparison-row {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        overflow: hidden;
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .feature-col {
        display: block;
        font-size: 1.1rem;
        font-weight: 700;
        color: #1F1F1F;
        background: #f8f9fa;
        padding: 15px 20px;
        text-align: center;
        border: none;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .comparison-data {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }
    
    .msp-col,
    .nursesphere-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px 15px;
        font-weight: 600;
        font-size: 0.95rem;
        min-height: 80px;
        border: none;
        text-align: center;
        background: white;
        color: #1F1F1F;
    }
    
    .msp-col {
        border-right: 1px solid #e0e0e0;
    }
    
    .msp-col::before {
        content: "MSPs";
        font-weight: 700;
        color: #4A4A4A;
        font-size: 0.85rem;
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .nursesphere-col::before {
        content: "NurseSphere";
        font-weight: 700;
        color: #00A9B7;
        font-size: 0.85rem;
        margin-bottom: 8px;
        letter-spacing: 0.5px;
    }
    
    .msp-col .icon,
    .nursesphere-col .icon {
        margin-bottom: 5px;
        font-size: 1.1rem;
    }
    
    .msp-col .icon {
        color: #dc2626;
    }
    
    .nursesphere-col .icon {
        color: #16a34a;
    }
    
    .comparison-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 30px;
    }
    
    .comparison-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .comparison-row {
        margin-bottom: 15px;
        border-radius: 8px;
    }
    
    .feature-col {
        font-size: 1rem;
        padding: 12px 15px;
    }
    
    .msp-col,
    .nursesphere-col {
        padding: 12px 15px;
        font-size: 0.9rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .msp-col::before,
    .nursesphere-col::before {
        font-size: 0.85rem;
    }
    
    .comparison-cta .btn {
        font-size: 0.95rem;
        padding: 14px 24px;
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #FFFFFF;
}

.features-hero {
    text-align: center;
}

.features-text {
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #4A4A4A;
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    background: #FAFAFA;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 169, 183, 0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 169, 183, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00A9B7 0%, #008C95 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
    color: white;
}

.feature-item h4 {
    margin-bottom: 15px;
    color: #1F1F1F;
}

.feature-item p {
    color: #4A4A4A;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #FFFFFF;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: #FAFAFA;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 169, 183, 0.1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 169, 183, 0.15);
}

.pricing-card.featured {
    border: 2px solid #00A9B7;
    background: linear-gradient(135deg, #FAFAFA 0%, #F0FEFF 100%);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00A9B7 0%, #008C95 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header h3 {
    margin-bottom: 20px;
    color: #1F1F1F;
}

.price {
    margin-bottom: 30px;
}

.currency {
    font-size: 1.5rem;
    color: #00A9B7;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #00A9B7;
}

.period {
    display: block;
    font-size: 1rem;
    color: #4A4A4A;
    margin-top: 5px;
}

.cost-savings {
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #E6F7FF 0%, #B2F1F9 100%);
    border-radius: 12px;
}

.savings-headline {
    font-size: 1.4rem;
    font-weight: 700;
    color: #00797F;
    margin-bottom: 8px;
}

.savings-subtext {
    font-size: 0.95rem;
    color: #4A4A4A;
    margin: 0;
}

.pricing-features ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #4A4A4A;
}

.pricing-features i {
    color: #00A9B7;
    font-size: 0.9rem;
}

.pricing-card-footer {
    margin-top: 30px;
}

.trial-subtext {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #4A4A4A;
    font-style: italic;
}

/* Hospital card styling */
.hospital-card .savings {
    background: linear-gradient(135deg, #FFF75B 0%, #FFD84D 100%);
    color: #00702c;
}

.hospital-card .cta {
    background: linear-gradient(135deg, #0FB15E 0%, #0AA54C 100%);
    color: #fff;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #FFFFFF;
}

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

.contact-benefits {
    margin-top: 40px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.benefit i {
    color: #00A9B7;
    font-size: 1.2rem;
}

.benefit span {
    color: #4A4A4A;
    font-weight: 500;
}

.contact-form-container {
    background: #FAFAFA;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 169, 183, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #1F1F1F;
}

.form-group input,
.form-group select {
    padding: 15px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #00A9B7;
    box-shadow: 0 0 0 3px rgba(0, 169, 183, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 500;
    color: #4A4A4A;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #00A9B7;
}

/* ================= WAITLIST SECTION ================= */
.waitlist {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e6fffa 100%);
}

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

.waitlist-form {
    margin-top: 40px;
}

.form-row {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.waitlist-input,
.waitlist-select {
    flex: 1;
    min-width: 200px;
    padding: 15px 20px;
    border: 2px solid #e0f2f1;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    transition: all 0.3s ease;
}

.waitlist-input:focus,
.waitlist-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 169, 183, 0.1);
}

.waitlist-btn {
    min-width: 150px;
    padding: 15px 30px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .waitlist-input,
    .waitlist-select,
    .waitlist-btn {
        width: 100%;
    }
}

/* ================= TESTIMONIALS SECTION ================= */
.testimonials {
    padding: 100px 0;
    background: #FFFFFF;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: #FAFAFA;
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 169, 183, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 169, 183, 0.1);
}

.testimonial-content {
    margin-bottom: 30px;
}

.quote-icon {
    color: #00A9B7;
    font-size: 2rem;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #1F1F1F;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00A9B7 0%, #008C95 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-info h4 {
    color: #00A9B7;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info span {
    color: #4A4A4A;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #F9F9F9;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 60px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 169, 183, 0.1);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #F8F9FA;
}

.faq-question h3 {
    color: #1F1F1F;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    color: #00A9B7;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #008C95;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #4A4A4A;
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #E6F7FF 0%, #B2F1F9 100%);
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 20px;
    color: #1F1F1F;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #4A4A4A;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #1F1F1F;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-description h3 {
    color: #00A9B7;
    margin-bottom: 15px;
}

.footer-description p {
    color: #CCCCCC;
    line-height: 1.6;
}

.footer-section h4 {
    color: #00A9B7;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00A9B7;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: #CCCCCC;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #00A9B7;
}

.footer-bottom p {
    color: #CCCCCC;
    font-size: 0.9rem;
}

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

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

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

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

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

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

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

    .contact-form-container {
        padding: 30px 20px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
input:focus,
select:focus,
.faq-question:focus {
    outline: 2px solid #00A9B7;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        border: 2px solid #fff;
    }

    .highlight {
        background: #000;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}