/* ===================================
   CSS RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #0A66C2;
    --color-primary-dark: #0047AB;
    --color-primary-light: #1E88E5;
    --color-secondary: #00A67E;
    --color-accent: #FF6B35;
    --color-background: #FFFFFF;
    --color-surface: #F8FAFC;
    --color-text: #1E293B;
    --color-text-light: #64748B;
    --color-border: #E2E8F0;
    --color-success: #10B981;
    --color-warning: #F59E0B;
    --gradient-primary: linear-gradient(135deg, #0A66C2 0%, #0047AB 100%);
    --gradient-accent: linear-gradient(135deg, #1E88E5 0%, #00A67E 100%);
    --gradient-surface: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-3d: 0 30px 60px -12px rgba(10, 102, 194, 0.25), 0 18px 36px -18px rgba(0, 71, 171, 0.3);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--color-text);
    background: var(--color-background);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-primary);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition-smooth);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 0.75rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-hero-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-3d);
    animation: pulse-glow 3s infinite;
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 40px 80px -15px rgba(10, 102, 194, 0.35);
}

.btn-hero-secondary {
    background: white;
    color: var(--color-primary);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 1rem;
    border: 2px solid var(--color-border);
}

.btn-hero-secondary:hover {
    background: var(--color-surface);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-cta {
    background: white;
    color: var(--color-primary);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: var(--color-surface);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 30px 60px -12px rgba(10, 102, 194, 0.25), 0 18px 36px -18px rgba(0, 71, 171, 0.3);
    }
    50% {
        box-shadow: 0 35px 70px -12px rgba(10, 102, 194, 0.35), 0 20px 40px -18px rgba(0, 71, 171, 0.4);
    }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 7rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #0A66C2 0%, transparent 70%);
    top: -300px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #00A67E 0%, transparent 70%);
    bottom: -200px;
    left: -150px;
    animation-delay: 7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #1E88E5 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(10, 102, 194, 0.1) 0%, rgba(0, 166, 126, 0.1) 100%);
    border: 1px solid rgba(10, 102, 194, 0.2);
    border-radius: 2rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero-badge svg {
    color: var(--color-secondary);
    animation: spin 10s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: left;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.phone-mockup {
    position: relative;
    width: 320px;
    height: 650px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 3rem;
    padding: 1rem;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.4),
                0 30px 60px -30px rgba(10, 102, 194, 0.5),
                inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    animation: float-phone 6s infinite ease-in-out;
    transform-style: preserve-3d;
}

@keyframes float-phone {
    0%, 100% {
        transform: translateY(0) rotateY(-5deg);
    }
    50% {
        transform: translateY(-20px) rotateY(5deg);
    }
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 1rem;
}

.mockup-time {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
}

.mockup-icons {
    display: flex;
    gap: 0.3rem;
}

.signal-icon, .wifi-icon, .battery-icon {
    width: 18px;
    height: 12px;
    background: var(--color-text);
    border-radius: 2px;
    opacity: 0.6;
}

.mockup-content {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mockup-card {
    background: white;
    border-radius: 1.25rem;
    padding: 1.25rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideUp 0.6s ease-out backwards;
    transition: var(--transition-smooth);
}

.mockup-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.card-1 { animation-delay: 0.2s; }
.card-2 { animation-delay: 0.4s; }
.card-3 { animation-delay: 0.6s; }

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.card-text {
    flex: 1;
}

.card-title {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.card-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
}

/* ===================================
   TRUST LOGOS
   =================================== */
.trust-logos {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.trust-label {
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hospital-names {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hospital-names span {
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(10, 102, 194, 0.05) 0%, rgba(0, 166, 126, 0.05) 100%);
    border-radius: 0.5rem;
    transition: var(--transition-smooth);
}

.hospital-names span:hover {
    background: linear-gradient(135deg, rgba(10, 102, 194, 0.1) 0%, rgba(0, 166, 126, 0.1) 100%);
    transform: translateY(-2px);
}

/* ===================================
   COMPETITIVE ADVANTAGE SECTION
   =================================== */
.competitive-advantage {
    padding: 8rem 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.comparison-card {
    background: white;
    border: 2px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: var(--transition-smooth);
}

.highlight-card {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-3d);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

.comparison-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-border);
}

.comparison-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
}

.pricing-badge {
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.free-badge {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 166, 126, 0.3);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 166, 126, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(0, 166, 126, 0.4);
    }
}

.expensive-badge {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
}

.comparison-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-features li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: var(--transition-smooth);
}

.feature-yes {
    color: var(--color-success);
    font-weight: 600;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.1) 100%);
}

.feature-no {
    color: #EF4444;
    font-weight: 500;
    opacity: 0.7;
}

.feature-partial {
    color: var(--color-warning);
    font-weight: 500;
}

.comparison-features li:hover {
    transform: translateX(5px);
}

.competitive-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.comp-stat {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 1.25rem;
    border: 2px solid var(--color-border);
    transition: var(--transition-smooth);
}

.comp-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.comp-stat-icon {
    font-size: 3rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.comp-stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.comp-stat-label {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-weight: 500;
}

/* ===================================
   SECTIONS
   =================================== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(10, 102, 194, 0.1) 0%, rgba(0, 166, 126, 0.1) 100%);
    border: 1px solid rgba(10, 102, 194, 0.2);
    border-radius: 2rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features {
    padding: 8rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--gradient-surface);
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-smooth);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-3d);
    border-color: transparent;
}

.feature-card-highlight {
    background: linear-gradient(135deg, rgba(10, 102, 194, 0.05) 0%, rgba(0, 166, 126, 0.05) 100%);
    border: 2px solid var(--color-primary);
}

.feature-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-accent);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-bounce);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text);
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ===================================
   BENEFITS SECTION
   =================================== */
.benefits {
    padding: 8rem 0;
    background: var(--color-surface);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.benefit-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    flex-shrink: 0;
}

.benefit-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.benefits-visual {
    position: relative;
    height: 600px;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-3d);
    animation: float-card 6s infinite ease-in-out;
}

.card-stat {
    width: 280px;
    top: 50px;
    right: 50px;
    animation-delay: 0s;
}

.card-feature {
    width: 260px;
    top: 300px;
    left: 30px;
    animation-delay: 2s;
}

.card-notification {
    width: 240px;
    bottom: 80px;
    right: 20px;
    animation-delay: 4s;
}

@keyframes float-card {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.card-label {
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-weight: 600;
}

.card-trend {
    color: var(--color-success);
    font-weight: 700;
    font-size: 0.9rem;
}

.card-value-large {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 60px;
}

.chart-bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 0.25rem;
    animation: grow-bar 1s ease-out;
}

@keyframes grow-bar {
    from {
        height: 0;
    }
}

.feature-icon-small {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.feature-name {
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.feature-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-success);
    font-size: 0.9rem;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--color-success);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.notification-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.notification-title {
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.notification-text {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.notification-time {
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
}

/* ===================================
   HOW IT WORKS SECTION
   =================================== */
.how-it-works {
    padding: 8rem 0;
    background: white;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: start;
    margin-top: 4rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    background: linear-gradient(135deg, rgba(10, 102, 194, 0.1) 0%, rgba(0, 166, 126, 0.1) 100%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--color-primary);
}

.step-icon {
    width: 120px;
    height: 120px;
    background: var(--gradient-surface);
    border: 2px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-primary);
    transition: var(--transition-smooth);
}

.step:hover .step-icon {
    transform: scale(1.1) rotate(10deg);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-3d);
}

.step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--color-text-light);
    line-height: 1.7;
}

.step-connector {
    display: flex;
    align-items: center;
    margin-top: 110px;
}

/* ===================================
   TARGET AUDIENCE SECTION
   =================================== */
.target-audience {
    padding: 8rem 0;
    background: var(--color-surface);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.audience-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.audience-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.audience-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.audience-card p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta {
    padding: 8rem 0;
    background: var(--color-text);
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.orb-4 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(10, 102, 194, 0.3) 0%, transparent 70%);
    top: -300px;
    left: -200px;
}

.orb-5 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 166, 126, 0.3) 0%, transparent 70%);
    bottom: -250px;
    right: -150px;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.3);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text);
    font-weight: 600;
}

.cta-feature svg {
    color: var(--color-success);
    flex-shrink: 0;
}

.cta-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-details {
    text-align: left;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
}

.contact-value:hover {
    text-decoration: underline;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--color-text);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo-text {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: var(--transition-smooth);
}

.footer-column a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

.badge {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .phone-mockup {
        width: 280px;
        height: 570px;
    }
    
    .trust-logos {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .hospital-names {
        gap: 1rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .competitive-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .benefits-visual {
        height: 400px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .step-connector {
        display: none;
    }
    
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-contact {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-details {
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Thinner, more compact navbar for mobile */
    .nav-container {
        padding: 0.5rem 1rem;
    }
    
    .logo svg {
        width: 32px;
        height: 32px;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        padding: 0.25rem;
    }
    
    .mobile-menu-toggle span {
        width: 22px;
        height: 2px;
    }
    
    /* Hide phone mockup on mobile - too large for small screens */
    .hero-visual {
        display: none;
    }
    
    /* Adjust hero for mobile without mockup */
    .hero {
        min-height: auto;
        padding: 5rem 0 4rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-badge {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stat {
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* Better mobile trust logos */
    .trust-logos {
        margin-top: 2rem;
    }
    
    .trust-label {
        font-size: 0.8rem;
    }
    
    .hospital-names {
        justify-content: center;
    }
    
    .hospital-names span {
        font-size: 0.8rem;
        padding: 0.375rem 0.75rem;
    }
    
    /* Better mobile section headers */
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .section-badge {
        font-size: 0.85rem;
        padding: 0.375rem 0.875rem;
    }
    
    /* Mobile-optimized feature cards */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }
    
    .feature-title {
        font-size: 1.25rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
    
    /* Mobile-optimized audience cards */
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .audience-card {
        padding: 2rem 1.5rem;
    }
    
    .audience-icon {
        font-size: 3rem;
    }
    
    /* Mobile-optimized CTA */
    .cta-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-box {
        padding: 1.5rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 0.875rem;
        align-items: flex-start;
    }
    
    .cta-feature {
        font-size: 0.9rem;
    }
    
    .cta-contact {
        gap: 1.25rem;
    }
    
    .contact-value {
        font-size: 1.1rem;
    }
    
    .btn-cta {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Extra compact navbar for small screens */
    .nav-container {
        padding: 0.5rem 0.75rem;
    }
    
    .logo svg {
        width: 28px;
        height: 28px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 4.5rem 0 3rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .hero-stats {
        gap: 1.25rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hospital-names span {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .benefit-item {
        gap: 1rem;
    }
    
    .benefit-icon {
        font-size: 2rem;
    }
    
    .benefit-content h3 {
        font-size: 1.1rem;
    }
    
    .features,
    .benefits,
    .how-it-works,
    .target-audience,
    .cta,
    .competitive-advantage {
        padding: 3rem 0;
    }
}
