/* ClinicOctane Marketing - Custom Styles */

/* Smooth scrolling */
html { scroll-behavior: smooth; }

/* Hero sections */
.co-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #0F4C5C 0%, #0A3A47 50%, #1A1A2E 100%);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}
.co-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,180,216,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.co-hero h1 {
    color: #FFFFFF !important;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.2;
    margin-bottom: 24px;
}
.co-hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 640px;
}

/* CTA Buttons */
.co-btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: #FF6B35;
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}
.co-btn-primary:hover {
    background: #E55A25;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255,107,53,0.4);
}
.co-btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.2s ease;
}
.co-btn-secondary:hover {
    border-color: #FFFFFF;
    background: rgba(255,255,255,0.1);
}
.co-btn-dark {
    display: inline-block;
    padding: 16px 32px;
    background: #0F4C5C;
    color: #FFFFFF !important;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.co-btn-dark:hover {
    background: #0A3A47;
}

/* Section spacing */
.co-section {
    padding: 80px 0;
}
.co-section-gray {
    background: #F8FAFC;
}

/* Feature cards */
.co-feature-card {
    padding: 32px;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    transition: all 0.2s ease;
}
.co-feature-card:hover {
    border-color: #00B4D8;
    box-shadow: 0 4px 24px rgba(0,180,216,0.1);
}
.co-feature-card h3 {
    color: #0F4C5C;
    font-size: 1.15rem;
    margin-bottom: 8px;
}
.co-feature-card p {
    color: #64748B;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Module cards on homepage */
.co-module-card {
    padding: 40px 32px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    text-align: center;
    transition: all 0.3s ease;
}
.co-module-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15,76,92,0.12);
    border-color: #00B4D8;
}
.co-module-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0F4C5C, #00B4D8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

/* Pricing table */
.co-pricing-card {
    padding: 40px 32px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 2px solid #E2E8F0;
    text-align: center;
    position: relative;
}
.co-pricing-card.featured {
    border-color: #FF6B35;
    transform: scale(1.05);
}
.co-pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF6B35;
    color: #FFFFFF;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}
.co-price {
    font-size: 3rem;
    font-weight: 800;
    color: #0F4C5C;
    line-height: 1;
}
.co-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #64748B;
}

/* Quote blocks */
.co-quote {
    padding: 24px 32px;
    background: #F8FAFC;
    border-left: 4px solid #00B4D8;
    border-radius: 0 8px 8px 0;
    margin: 16px 0;
    font-style: italic;
    color: #334155;
}

/* Stats */
.co-stat {
    text-align: center;
    padding: 20px;
}
.co-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FF6B35;
    line-height: 1;
}
.co-stat-label {
    font-size: 0.9rem;
    color: #64748B;
    margin-top: 8px;
}

/* FAQ */
.co-faq details {
    padding: 20px 24px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    margin-bottom: 12px;
    background: #FFFFFF;
}
.co-faq summary {
    font-weight: 600;
    color: #0F4C5C;
    cursor: pointer;
    font-size: 1.05rem;
}
.co-faq details[open] summary {
    margin-bottom: 12px;
    color: #00B4D8;
}
.co-faq details p {
    color: #64748B;
    line-height: 1.6;
}

/* Navigation override */
.co-header {
    background: #FFFFFF;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Footer */
.co-footer {
    background: #1A1A2E;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}
.co-footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}
.co-footer a:hover {
    color: #00B4D8;
}
.co-footer h4 {
    color: #FFFFFF;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .co-hero { padding: 60px 0 50px; }
    .co-section { padding: 50px 0; }
    .co-pricing-card.featured { transform: scale(1); }
}
