/* ============================================
   ConicBoard Home New - Premium Modern Design
   ============================================ */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================
   CSS Variables & Root Styles
   ============================================ */
:root {
    --primary-blue: #0090fa;
    --dark-black: #1c1c1c;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #0090fa 0%, #0070cc 100%);
    --gradient-dark: linear-gradient(135deg, #1c1c1c 0%, #2a2a2a 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark-black);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

.table-responsive {
    overflow-y: hidden;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
}

p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--medium-gray);
}

/* ============================================
   Utility Classes
   ============================================ */
.section-padding {
    padding: 6rem 0;
}

.text-primary-blue {
    color: var(--primary-blue);
}

.bg-dark-black {
    background: var(--dark-black);
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.bg-light-gray {
    background: var(--light-gray);
}

/* ============================================
   Button Styles
   ============================================ */
.btn-primary-custom {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 144, 250, 0.3);
    display: inline-block;
    text-decoration: none;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 144, 250, 0.4);
    color: var(--white);
}

.btn-primary-custom:focus,
.btn-primary-custom:focus-visible {
    outline: 3px solid rgba(0, 144, 250, 0.5);
    outline-offset: 2px;
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    border: 2px solid var(--white);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-block;
    text-decoration: none;
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.btn-outline-custom:focus,
.btn-outline-custom:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    min-height: unset;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 144, 250, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.1;
    font-weight: 900;
}

.hero-title .title-line {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.hero-title .title-line.animate {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-title .title-line.animate:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.6;
    opacity: 1;
}

.hero-cta {
    margin-bottom: 1rem;
}

.btn-primary-hero {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(0, 144, 250, 0.3);
    border: none;
}

.btn-primary-hero:hover {
    background: linear-gradient(135deg, #0070cc 0%, #005fa3 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 144, 250, 0.4);
}

.hero-microcopy {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 1rem;
    font-weight: 500;
}

.hero-visual {
    position: relative;
    height: auto;
    padding: 1rem 0;
}

/* Hero Dashboard */
.hero-dashboard {
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    padding: 1rem;
}

.main-feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.main-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 144, 250, 0.1);
}

.header-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.header-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.header-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.header-content p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: rgba(0, 144, 250, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 144, 250, 0.1);
}

.feature-item:hover {
    background: rgba(0, 144, 250, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    width: 36px;
    height: 36px;
    background: rgba(0, 144, 250, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
}

.feature-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.2;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 144, 250, 0.1);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}



/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .flow-step {
        opacity: 1;
        transform: none;
    }

    .flow-connector {
        opacity: 1;
    }

    .connector-arrow i {
        animation: none;
    }

    .hero-title .title-line {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* AOS Fallback Animations */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate,
[data-aos].fallback-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(20px);
}

[data-aos="fade-up"].aos-animate,
[data-aos="fade-up"].fallback-animate {
    transform: translateY(0);
}

/* Hero Benefits */
.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.benefit-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.benefit-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.benefit-tag.unlimited {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.benefit-tag.secure {
    background: linear-gradient(135deg, #10b981, #059669);
}

.benefit-tag.fast {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.benefit-tag i {
    font-size: 1rem;
}

/* ============================================
   Why ConicBoard Section
   ============================================ */
.why-section {
    padding: 8rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    color: var(--dark-black);
}

.section-title p {
    font-size: 1.25rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

.reason-card {
    padding: 2.5rem;
    border-radius: 20px;
    background: var(--light-gray);
    transition: var(--transition-smooth);
    height: 100%;
    border: 2px solid transparent;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
    background: var(--white);
}

.reason-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.reason-card h3 {
    color: var(--dark-black);
    margin-bottom: 1rem;
}

.reason-card p {
    font-size: 1.05rem;
    color: var(--medium-gray);
}

/* ============================================
   Features Section
   ============================================ */
.features-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--dark-black);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--medium-gray);
    font-size: 1.05rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--medium-gray);
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

/* ============================================
   Pricing Narrative Section
   ============================================ */
.pricing-narrative-section {
    padding: 4rem 0;
    background: var(--white);
}

.pricing-narrative-section .section-title {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-narrative-section .section-title p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.pricing-narrative-section .container {
    max-width: 1000px;
    padding: 3rem;
    background: var(--light-gray);
    border-radius: 20px;
}

/* ============================================
   Comprehensive Features Section
   ============================================ */
.comprehensive-features-section {
    padding: 2rem 0 5rem;
    background: var(--light-gray);
}

.comprehensive-features-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.comprehensive-features-section .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.comprehensive-features-section .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.comprehensive-features-section .feature-item i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.comprehensive-features-section .feature-item span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-black);
    text-align: center;
}

/* ============================================
   Modern Comparison Table Section
   ============================================ */
.comparison-section {
    padding: 5rem 0;
    background: var(--dark-black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 144, 250, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 144, 250, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.comparison-section .section-title {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.comparison-section .section-title h2,
.comparison-section .section-title p {
    color: var(--white);
}

.comparison-section .section-title p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.comparison-wrapper {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.modern-comparison-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.modern-comparison-table thead th {
    background: rgba(0, 144, 250, 0.15);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    padding: 1.5rem 1rem;
    text-align: left;
    border-bottom: 2px solid rgba(0, 144, 250, 0.3);
    position: sticky;
    top: 0;
    z-index: 10;
}

.modern-comparison-table tbody tr {
    transform: translateY(10px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modern-comparison-table tbody tr.animate {
    opacity: 1;
    transform: translateY(0);
}

.modern-comparison-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.modern-comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.modern-comparison-table tbody tr.conicboard-row {
    background: linear-gradient(135deg, rgba(0, 144, 250, 0.2) 0%, rgba(0, 144, 250, 0.1) 100%);
    border-left: 4px solid var(--primary-blue);
    position: relative;
}

.modern-comparison-table tbody tr.conicboard-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 144, 250, 0.1) 0%, transparent 100%);
    pointer-events: none;
    animation: conicboardGlow 3s ease-in-out infinite alternate;
}

.modern-comparison-table tbody tr.conicboard-row:hover {
    background: linear-gradient(135deg, rgba(0, 144, 250, 0.25) 0%, rgba(0, 144, 250, 0.15) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 144, 250, 0.2);
}

.modern-comparison-table td {
    padding: 1.25rem 1rem;
    vertical-align: top;
    line-height: 1.4;
}

/* Platform Name Styling */
.platform-name {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.brand-logo,
.competitor-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-logo i {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.competitor-logo i {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* Coverage Grid */
.coverage-list {
    font-size: 0.85rem;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.4rem;
    align-items: start;
}

.coverage-item {
    display: flex;
    align-items: center;
    padding: 0.25rem 0;
    line-height: 1.3;
}

.coverage-item.complete {
    color: #4ade80;
}

.coverage-item.partial {
    color: #fbbf24;
}

/* Column Sizing */
.platform-col { width: 15%; }
.pricing-col { width: 18%; }
.behavior-col { width: 18%; }
.focus-col { width: 25%; }
.coverage-col { width: 24%; }

/* Responsive Table */
@media (max-width: 1200px) {
    .coverage-grid {
        grid-template-columns: 1fr;
    }

    .modern-comparison-table {
        font-size: 0.85rem;
    }

    .modern-comparison-table td {
        padding: 1rem 0.75rem;
    }
}

@media (max-width: 992px) {
    .comparison-wrapper {
        margin: 0 -1rem;
        border-radius: 0;
    }

    .modern-comparison-table thead th {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }

    .modern-comparison-table td {
        padding: 0.75rem 0.5rem;
    }

    /* Stack some columns on mobile */
    .platform-col { width: 20%; }
    .pricing-col { width: 20%; }
    .behavior-col { width: 20%; }
    .focus-col { width: 20%; }
    .coverage-col { width: 20%; }
}

@media (max-width: 768px) {
    .comparison-section {
        padding: 3rem 0;
    }

    .modern-comparison-table {
        font-size: 0.8rem;
    }

    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .coverage-item {
        font-size: 0.75rem;
        padding: 0.15rem 0;
    }
}

/* Animation Keyframes */
@keyframes conicboardGlow {
    0% {
        box-shadow: 0 0 20px rgba(0, 144, 250, 0.1);
    }
    100% {
        box-shadow: 0 0 30px rgba(0, 144, 250, 0.2);
    }
}

.comparison-table .competitor-price {
    color: rgba(255, 255, 255, 0.6);
}

.comparison-table .conicboard-price {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.25rem;
}

.save-badge {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* ============================================
   Testimonials Section - Modern Slider
   ============================================ */
.testimonials-section {
    padding: 8rem 0;
    background: var(--white);
}

.testimonials-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.testimonial-card {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 3rem;
    transition: var(--transition-smooth);
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--dark-black);
    margin-bottom: 2rem;
    font-style: italic;
    line-height: 1.8;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.author-info h5 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--dark-black);
    font-weight: 700;
}

.author-info p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--medium-gray);
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.slider-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn:focus-visible {
    outline: 3px solid rgba(0, 144, 250, 0.5);
    outline-offset: 2px;
}

.slider-btn-prev {
    left: 0;
}

.slider-btn-next {
    right: 0;
}



/* ============================================
   Final CTA Section
   ============================================ */
.final-cta-section {
    padding: 8rem 0;
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.final-cta-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.final-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

/* ============================================
   Footer Section
   ============================================ */
.footer-section {
    background: var(--dark-black);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-link:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 144, 250, 0.4);
}

.social-link:focus-visible {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
}

.footer-heading {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-blue);
    transform: translateX(3px);
}

.footer-links a:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 3px;
    border-radius: 2px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
}

.footer-contact-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-contact-link:hover {
    color: var(--primary-blue);
}

.footer-contact-link:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 3px;
    border-radius: 2px;
}

.footer-contact-link svg {
    flex-shrink: 0;
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-address svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ============================================
   Accessibility - Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .floating-card {
        animation: none !important;
    }
}

/* Focus visible for keyboard navigation */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }

    .hero-section {
        min-height: auto;
        padding: 6rem 0 4rem 0;
    }

    .hero-visual {
        margin-top: 3rem;
        padding: 0;
    }

    .hero-dashboard {
        padding: 0.5rem;
        max-width: 100%;
    }

    .main-feature-card {
        padding: 1.5rem;
    }

    .card-header {
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }

    .header-icon {
        width: 48px;
        height: 48px;
        margin-right: 0.75rem;
    }

    .header-icon i {
        font-size: 1.5rem;
    }

    .header-content h3 {
        font-size: 1.1rem;
    }

    .header-content p {
        font-size: 0.85rem;
    }

    .feature-grid {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .feature-item {
        padding: 0.5rem;
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        width: 32px;
        height: 32px;
        margin-right: 0;
        margin-bottom: 0.25rem;
    }

    .feature-icon i {
        font-size: 1rem;
    }

    .feature-item span {
        font-size: 0.75rem;
    }

    .stat-number {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .btn-primary-hero {
        font-size: 1rem;
        padding: 0.875rem 1.75rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .hero-features-highlight {
        flex-direction: column;
        padding: 1rem;
        gap: 0.75rem;
    }

    .feature-badge {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .why-section,
    .features-section,
    .pricing-narrative-section,
    .pricing-section,
    .testimonials-section,
    .final-cta-section {
        padding: 3rem 0;
    }

    .reason-card,
    .feature-card,
    .testimonial-card {
        margin-bottom: 1.5rem;
    }

    .comparison-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table table {
        min-width: 800px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }

    .pricing-narrative-section {
        padding: 4rem 0;
    }

    .pricing-narrative-section .section-title p {
        font-size: 1rem;
    }

    .pricing-narrative-section .container {
        padding: 2rem 1.5rem;
    }

    /* Comprehensive Features Mobile */
    .comprehensive-features-section {
        padding: 2rem 0;
    }

    .comprehensive-features-section .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
    }

    .comprehensive-features-section .feature-item {
        padding: 1.5rem 1rem;
    }

    .comprehensive-features-section .feature-item i {
        font-size: 1.5rem;
    }

    .comprehensive-features-section .feature-item span {
        font-size: 0.9rem;
    }

    /* Testimonial Slider Mobile */
    .testimonials-slider-wrapper {
        padding: 0 50px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .testimonial-card {
        padding: 2rem;
        min-height: auto;
    }

    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .author-info h5 {
        font-size: 1rem;
    }

    .author-info p {
        font-size: 0.85rem;
    }

    .cta-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Footer Mobile */
    .footer-section {
        padding: 3rem 0 0;
    }

    .footer-brand {
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-logo {
        margin: 0 auto 1rem;
    }

    .footer-social-links {
        justify-content: center;
    }

    .footer-heading {
        margin-top: 2rem;
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-contact-link {
        justify-content: center;
    }

    .footer-address {
        justify-content: center;
        text-align: center;
    }

    .footer-bottom {
        margin-top: 2rem;
        padding: 1.25rem 0;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }
}

/* ============================================
   Animation Classes for AOS
   ============================================ */
[data-aos] {
    pointer-events: auto;
}

/* Custom animation effects */
.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Gradient animation */
.gradient-animate {
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* ============================================
   Pricing Page Hero Section
   ============================================ */
.pricing-hero-section {
    color: var(--white);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0090fa 0%, #0070c0 100%);
    text-align: center;
    padding: 80px 0;
}

.pricing-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 144, 250, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-hero-section .container {
    position: relative;
    z-index: 2;
}

.pricing-hero-section h1 {
    color: var(--white);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pricing-hero-section .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.3em;
}
#price-plan {
    padding-top: 23px;
}

/* ============================================
   Modern FAQ Section
   ============================================ */
.modern-faq-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.modern-faq-section .sec-title h3 {
    color: var(--dark-black);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.modern-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.modern-accordion .faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.modern-accordion .faq-item:hover {
    box-shadow: var(--shadow-md);
}

.modern-accordion .faq-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.modern-accordion .faq-header:hover {
    background: rgba(0, 144, 250, 0.05);
}

.modern-accordion .faq-header.active {
    background: rgba(0, 144, 250, 0.1);
}

.modern-accordion .faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-black);
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.modern-accordion .faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.modern-accordion .faq-header.active .faq-icon {
    transform: rotate(45deg);
    background: var(--dark-black);
}

.modern-accordion .faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.modern-accordion .faq-content.active {
    max-height: 1000px;
    transition: max-height 0.3s ease-in;
}

.modern-accordion .faq-answer {
    padding: 1rem 2rem 1.5rem 2rem;
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 1rem;
}

.modern-accordion .faq-answer p {
    margin-bottom: 1rem;
}

.modern-accordion .faq-answer p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-accordion .faq-header {
        padding: 1.25rem 1.5rem;
    }

    .modern-accordion .faq-question {
        font-size: 1rem;
    }

    .modern-accordion .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Pricing Section */

/* Pricing Section */
#price-plan .row > * {
    width: auto !important;
    flex: 0 0 auto !important;
}
#price-plan .container {
    justify-content: center !important;
    max-width: unset !important;
}

/* === Container Scroll (horizontal scroll for plans) === */
.container-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 2rem 1rem;
}
.container-scroll::-webkit-scrollbar {
    height: 10px;
}
.container-scroll::-webkit-scrollbar-thumb {
    background: #b3dfff;
    border-radius: 10px;
}
.container-scroll::-webkit-scrollbar-thumb:hover {
    background: #0090fa;
}

/* === Pricing Section === */
.pricing-section-2 {
    padding: 20px 0;
    text-align: center;
}

.pricing-3 {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    scroll-snap-align: start;
    min-width: 220px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.pricing-3:hover {
    /*transform: scale(1.03);*/
    box-shadow: 0 16px 40px rgba(0, 144, 250, 0.25);
    border-color: #0090fa;
}

/* === Plan Head === */
.pricing__head {
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, #0090fa 0%, #33b5ff 100%);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    position: relative;
    min-height: 154px;

    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.pricing__head h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0.5rem 0;
    width: 100%;
}

.pricing__head span.h4 {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    width: 100%;
}

.pricing__head .type--fine-print {
    font-size: 0.9rem;
    opacity: 1;
    color: #1b1b1b;
    margin-bottom: 0;
    width: 100%;
}

/* === Plan Title (left column) === */
.planNameTitle h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

/* === Feature List === */
.pricing-3 ul {
    list-style: none;
    margin: 0;
    padding: 1.2rem 1rem;
}

.pricing-3 ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.6rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    transition: background 0.25s ease;
    color: #1f1f1f;
    font-weight: 600;
}

.pricing-3 ul li:last-child {
    border-bottom: none;
}

.pricing-3 ul li:hover {
    background: rgba(0, 144, 250, 0.06);
}

.module-available {
    color: #22c55e;
    font-size: 0.9rem;
}

/* === Plan Toggle (Monthly/Annual) === */
.btn-group {
    display: inline-flex;
    background: #e0f3ff;
    border-radius: 9999px;
    overflow: hidden;
    border: 1px solid #bde3ff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.btn-group .btn {
    flex: 1;
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    background: transparent;
    font-weight: 500;
    color: #0369a1;
    font-size: 0.95rem;
}

.btn-group .btn.active,
.btn-group .btn:hover {
    background: linear-gradient(90deg, #0090fa 0%, #33b5ff 100%);
    color: #fff;
}

/* === Hover Border Glow === */
.pricing-3:hover::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, #0090fa, #33b5ff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .container-scroll {
        gap: 1.2rem;
    }
    .pricing-3 {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .pricing-section-2 {
        padding: 40px 0;
    }
    .pricing__head span.h4 {
        font-size: 1.4rem;
    }
    .pricing__head h5 {
        font-size: 1.1rem;
    }
    .flex-nowrap {
        flex-wrap: wrap !important;
    }
}

.module-unavailable {
    color: #ef4444;
    opacity: 0.75;
    font-weight: 500;
    font-size: 0.9rem;
}
#price-plan .btn-group label {
    display: flex;
    justify-content: center;
    align-items: center;
}
#price-plan .btn-group input {
    display: none;
}

/* === Custom Pricing CTA Section === */
#custom-pricing-plan {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

#custom-pricing-plan h3 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

#custom-pricing-plan p {
    color: #475569;
    font-size: 1.1rem;
    margin-bottom: 28px;
}

/* === CTA Button (ConicBoard Blue) === */
.btn-custom-cta {
    display: inline-block;
    background: #0066ff;
    color: #fff;
    font-weight: 600;
    padding: 12px 34px;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 102, 255, 0.25);
}

.btn-custom-cta:hover {
    background: #0052cc;
    box-shadow: 0 8px 22px rgba(0, 102, 255, 0.35);
    transform: translateY(-2px);
    color: #fff;
}

/* === Responsive === */
@media (max-width: 768px) {
    #custom-pricing-plan h3 {
        font-size: 1.5rem;
    }
    #custom-pricing-plan p {
        font-size: 1rem;
    }
}

/* === Annual Savings Text === */
/* === Wrapper for toggle + badge === */
.btn-group-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* === Savings Badge === */
.annual-savings-badge {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0066ff;
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.15);
    padding: 8px 18px;
    border-radius: 9999px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.08);
    animation: fadeIn 0.6s ease;
    user-select: none;
}

/* === Smooth fade in animation === */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Responsive === */
@media (max-width: 768px) {
    .annual-savings-badge {
        font-size: 0.85rem;
        padding: 6px 14px;
    }
}

/* === Base Button === */
.cb-btn {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 10px 26px;
    border-radius: 9999px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    user-select: none;
    border: none;
}

/* === Primary (ConicBoard Blue) === */
.cb-btn-primary {
    background: #0066ff;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
}

.cb-btn-primary:hover {
    background: #0052cc;
    box-shadow: 0 6px 18px rgba(0, 102, 255, 0.35);
    transform: translateY(-2px);
    color: #fff;
}

/* === Secondary (for light backgrounds, optional) === */
.cb-btn-secondary {
    background: rgba(0, 102, 255, 0.1);
    color: #0066ff;
    border: 1px solid rgba(0, 102, 255, 0.25);
}

.cb-btn-secondary:hover {
    background: #0066ff;
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.25);
}

/* === Disabled state (optional) === */
.cb-btn:disabled,
.cb-btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* === Full-width variant (optional for cards) === */
.cb-btn.full {
    width: 100%;
    max-width: 240px;
}

/* === Responsive === */
@media (max-width: 768px) {
    .cb-btn {
        font-size: 0.9rem;
        padding: 10px 22px;
    }
}




















