.elementor-20447 .elementor-element.elementor-element-18883ae{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-20447 .elementor-element.elementor-element-1eb7d9d > .elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-20447 .elementor-element.elementor-element-2585b73{padding:60px 0px 60px 0px;}.elementor-20447 .elementor-element.elementor-element-edcea75 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-20447 .elementor-element.elementor-element-edcea75 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-20447 .elementor-element.elementor-element-ecc5c64{text-align:center;}.elementor-20447 .elementor-element.elementor-element-ecc5c64 .elementor-heading-title{font-family:"Poppins", Sans-serif;font-size:35px;font-weight:400;color:#000000;}.elementor-widget-divider{--divider-color:var( --e-global-color-secondary );}.elementor-widget-divider .elementor-divider__text{color:var( --e-global-color-secondary );font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-divider.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-widget-divider.elementor-view-framed .elementor-icon, .elementor-widget-divider.elementor-view-default .elementor-icon{color:var( --e-global-color-secondary );border-color:var( --e-global-color-secondary );}.elementor-widget-divider.elementor-view-framed .elementor-icon, .elementor-widget-divider.elementor-view-default .elementor-icon svg{fill:var( --e-global-color-secondary );}.elementor-20447 .elementor-element.elementor-element-69e52cd{--divider-border-style:solid;--divider-color:#000;--divider-border-width:2.2px;}.elementor-20447 .elementor-element.elementor-element-69e52cd .elementor-divider-separator{width:18%;margin:0 auto;margin-center:0;}.elementor-20447 .elementor-element.elementor-element-69e52cd .elementor-divider{text-align:center;padding-block-start:0px;padding-block-end:0px;}.elementor-20447 .elementor-element.elementor-element-bced367{width:var( --container-widget-width, 100% );max-width:100%;--container-widget-width:100%;--container-widget-flex-grow:0;}.elementor-20447 .elementor-element.elementor-element-bced367 > .elementor-widget-container{background-color:#737373;padding:27px 30px 20px 20px;border-radius:08px 08px 08px 08px;}/* Start custom CSS for html, class: .elementor-element-68cacc0 */@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Space+Grotesk:wght@300..700&display=swap');

:root {
    --primary-navy: #1e293b;
    --primary-dark: #334155;
    --brand-cyan: #00B9E6;
    --brand-cyan-light: #33C7EA;
    --brand-cyan-dark: #0095C7;
    --accent-orange: #FF6B35;
    --accent-orange-light: #FF8F66;
    --gradient-primary: linear-gradient(135deg, #00B9E6 0%, #0095C7 100%);
    --gradient-secondary: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    --gradient-accent: linear-gradient(135deg, #00B9E6 0%, #FF6B35 100%);
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --surface-dark: #f1f5f9;
    --surface-medium: #ffffff;
    --surface-light: #f8fafc;
    --accent-green: #10B981;
    --border-color: #e2e8f0;
    --shadow-primary: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-secondary: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-cyan: 0 4px 20px rgba(0, 185, 230, 0.2);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy) !important;
}

.navbar-nav .nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--brand-cyan) !important;
}

.nav-cta {
    background: var(--gradient-primary) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 0.5rem 1.5rem !important;
    font-weight: 600 !important;
    margin-left: 1rem !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 185, 230, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 185, 230, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 185, 230, 0.1);
    border: 1px solid rgba(0, 185, 230, 0.2);
    color: var(--brand-cyan);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.feature-item i {
    color: var(--brand-cyan);
    font-size: 1.2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn-outline-light {
    border: 2px solid var(--text-secondary);
    color: var(--text-secondary);
    background: transparent;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--text-secondary);
    color: var(--primary-navy);
    transform: translateY(-2px);
}

/* Hero Visual Elements */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-secondary);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: 10%;
    width: 280px;
    animation-delay: 0s;
}

.card-2 {
    top: 40%;
    right: 5%;
    width: 250px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 10%;
    left: 20%;
    width: 260px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.speaker-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.speaker-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.speaker-info {
    display: flex;
    flex-direction: column;
}

.speaker-name {
    font-weight: 600;
    font-size: 0.875rem;
}

.sentiment.positive {
    color: var(--brand-cyan);
    font-size: 0.75rem;
}

.progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    background: var(--gradient-primary);
    height: 100%;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.keyword-tag {
    background: rgba(0, 185, 230, 0.2);
    color: var(--brand-cyan);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Features Section */
.features-section {
    background: #ffffff;
    position: relative;
}

.feature-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-cyan);
    border-color: var(--brand-cyan);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-cyan);
    font-weight: 600;
}

/* Platform Section */
.platform-section {
    background: var(--surface-light);
    position: relative;
    overflow: hidden;
}

.platform-content {
    padding-right: 2rem;
}

.provider-types {
    margin: 2rem 0;
}

.provider-type {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #ffffff;
    border-radius: 8px;
    border-left: 4px solid var(--brand-cyan);
    box-shadow: var(--shadow-sm);
}

.provider-type i {
    color: var(--brand-cyan);
    font-size: 1.25rem;
    width: 24px;
}

.platform-features {
    margin-top: 2rem;
}

.platform-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.platform-feature i {
    color: var(--brand-cyan);
    font-size: 1.1rem;
}

.platform-visual {
    position: relative;
}

.dashboard-mockup {
    background: var(--surface-medium);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-primary);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.status-indicator {
    background: var(--brand-cyan);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.dashboard-content {
    display: grid;
    gap: 1rem;
}

.metric-card {
    background: rgba(0, 185, 230, 0.1);
    border: 1px solid rgba(0, 185, 230, 0.2);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.metric-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-cyan);
}

/* Compliance Section */
.compliance-section {
    background: #ffffff;
}

.compliance-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.compliance-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary);
    border-color: var(--accent-blue);
}

.compliance-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.compliance-card h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.compliance-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.compliance-highlight {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid var(--brand-cyan);
    box-shadow: var(--shadow-sm);
}

.compliance-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
}

/* Billing Section */
.billing-section {
    background: var(--surface-light);
}

.billing-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    border-left: 4px solid var(--brand-cyan);
    box-shadow: var(--shadow-sm);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.stat-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.stat-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.billing-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.billing-feature {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.billing-feature i {
    color: var(--brand-cyan);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    width: 24px;
}

.billing-feature h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.billing-feature p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

/* Patient Section */
.patient-section {
    background: #ffffff;
}

.patient-feature {
    text-align: center;
    padding: 1.5rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.patient-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-secondary);
    border-color: var(--brand-cyan);
}

.patient-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.patient-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.patient-feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.patient-impact {
    text-align: center;
    padding: 3rem;
    background: var(--gradient-primary);
    border-radius: 12px;
    margin-top: 3rem;
}

.impact-stat h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
}

.impact-stat p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--surface-light);
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary);
    border-color: var(--accent-blue);
}

.quote-icon {
    font-size: 2rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.author-info h5 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Video Demo Section */
.video-section {
    background: #ffffff;
    padding: 5rem 0;
}

.video-container {
    position: relative;
    background: #ffffff;
    border: 2px solid var(--brand-cyan);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-cyan);
    margin-bottom: 3rem;
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--surface-dark) 0%, var(--surface-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    border-radius: 12px;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(0, 185, 230, 0.1) 0%, transparent 70%);
}

.video-placeholder i {
    font-size: 4rem;
    color: var(--brand-cyan);
    margin-bottom: 1rem;
}

.video-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.video-content h4 {
    color: var(--brand-cyan);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.video-content p {
    color: var(--text-muted);
    margin: 0;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-cyan);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 185, 230, 0.4);
}

.play-button i {
    font-size: 2rem;
    color: white;
    margin-left: 4px;
}

.video-info {
    padding: 1.5rem;
    background: var(--surface-light);
    border-top: 1px solid var(--border-color);
}

.video-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
}

.video-stat {
    text-align: center;
}

.video-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-cyan);
}

.video-stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Scale Section */
.scale-section {
    background: var(--surface-light);
    padding: 5rem 0;
}

.scale-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    border-left: 4px solid var(--brand-cyan);
    box-shadow: var(--shadow-sm);
}

.scale-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.scale-feature h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.scale-feature p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

/* Screenshots Section */
.screenshots-section {
    background: var(--surface-light);
    padding: 5rem 0;
}

.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.screenshot-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.screenshot-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-cyan);
    border-color: var(--brand-cyan);
}

.screenshot-placeholder {
    height: 200px;
    background: linear-gradient(135deg, var(--surface-dark) 0%, var(--surface-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    position: relative;
    overflow: hidden;
}

.screenshot-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(0, 185, 230, 0.05) 0%, transparent 70%);
}

.screenshot-placeholder i {
    font-size: 2.5rem;
    color: var(--brand-cyan);
}

.screenshot-content {
    padding: 1.5rem;
}

.screenshot-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.screenshot-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.screenshot-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Demo Section */
.demo-section {
    background: #ffffff;
    padding: 5rem 0;
}

.demo-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-primary);
}

.demo-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.demo-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.demo-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.demo-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.demo-benefit i {
    color: var(--brand-cyan);
    font-size: 1.1rem;
}

.demo-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
}

.demo-form h4 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.form-floating > .form-control {
    background: var(--surface-dark);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 1rem 0.75rem;
}

.form-floating > .form-control:focus {
    background: var(--surface-dark);
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
    color: var(--text-primary);
}

.form-floating > label {
    color: var(--text-muted);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--accent-blue);
}

.form-select {
    background: var(--surface-dark);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.form-select:focus {
    background: var(--surface-dark);
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
    color: var(--text-primary);
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: var(--primary-navy);
    border-top: 1px solid var(--border-color);
}

.footer-brand {
    display: flex;
    align-items: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.footer-text {
    color: var(--text-muted);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-blue);
}

.footer-copyright {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.875rem;
}

/* Success Modal */
.success-icon {
    font-size: 4rem;
    color: var(--brand-cyan);
}

.modal-content {
    background: var(--surface-medium);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .platform-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .billing-stats {
        margin-bottom: 3rem;
    }
    
    .demo-card {
        padding: 2rem;
    }
    
    .footer-links {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .footer .text-end {
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-lg {
        width: 100%;
        max-width: 280px;
    }
    
    .floating-card {
        position: static;
        width: 100% !important;
        margin-bottom: 1rem;
        animation: none;
    }
    
    .hero-visual {
        height: auto;
        margin-top: 3rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .demo-form {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .floating-card {
        padding: 1rem;
    }
    
    .feature-card,
    .compliance-card,
    .patient-feature {
        padding: 1.5rem;
    }
    
    .demo-card {
        padding: 1.5rem;
    }
    
    .demo-form {
        padding: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading States */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--surface-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--surface-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-card {
        animation: none;
    }
}

/* Focus States */
.btn:focus,
.form-control:focus,
.form-select:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --text-primary: #FFFFFF;
        --text-secondary: #E5E7EB;
        --border-color: #6B7280;
    }
}

.elementor-kit-9 a {

    font-weight: 500;
    font-size: 1rem;
}/* End custom CSS */