/* ===================================
   HADI-HMS Custom Styles
   =================================== */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Page Transition */
body {
    opacity: 0;
    animation: fadeInPage 0.5s ease forwards;
}

@keyframes fadeInPage {
    to { opacity: 1; }
}

/* ===================================
   Custom Scrollbar
   =================================== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #93c5fd;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #3b82f6;
}

/* ===================================
   Scroll Animations
   =================================== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Gradient Text
   =================================== */
.gradient-text {
    background: linear-gradient(135deg, #3b82f6, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   Mobile Menu
   =================================== */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.mobile-menu.open {
    max-height: 600px;
}

/* ===================================
   Hamburger Animation
   =================================== */
.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #374151;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===================================
   CTA Button Pulse
   =================================== */
.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(37, 99, 235, 0); }
}

/* ===================================
   Hero Floating Animation
   =================================== */
.float-animation {
    animation: float 6s ease-in-out infinite;
}

.float-animation-delayed {
    animation: float 6s ease-in-out 2s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ===================================
   Form Focus Styles
   =================================== */
input:focus, textarea:focus, select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* ===================================
   Card Hover Glow
   =================================== */
.card-glow:hover {
    box-shadow: 0 10px 40px -10px rgba(37, 99, 235, 0.2);
}

/* ===================================
   Header Transition
   =================================== */
#main-header {
    transition: all 0.3s ease;
}

#main-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom-color: transparent;
}

/* ===================================
   Active Nav Link
   =================================== */
.nav-link-active {
    color: #2563eb !important;
    font-weight: 600;
}

/* ===================================
   Decorative Shapes
   =================================== */
.shape-blob {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: blobMorph 8s ease-in-out infinite;
}

@keyframes blobMorph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

/* ===================================
   Screenshot Hover Effect
   =================================== */
.screenshot-card img {
    transition: transform 0.5s ease;
}

.screenshot-card:hover img {
    transform: scale(1.05);
}

/* ===================================
   Pricing Card Popular Badge
   =================================== */
.pricing-popular {
    position: relative;
}

.pricing-popular::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 1rem;
    background: linear-gradient(135deg, #3b82f6, #0ea5e9);
    z-index: -1;
}

/* ===================================
   Hero Section - Background & Layout
   =================================== */
.hero-gradient {
    background: linear-gradient(135deg, #f3f5fc 0%, #ebf0fa 50%, #e2e8f5 100%);
}

.dot-pattern {
    background-image: radial-gradient(circle, #cbd5e1 1.2px, transparent 1.2px);
    background-size: 24px 24px;
    opacity: 0.55;
}

/* ===================================
   Device Mockups
   =================================== */
.device-laptop-isometric {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    z-index: 10;
}

@media (min-width: 1280px) {
    .device-laptop-isometric {
        max-width: 680px;
        bottom: 40px;
    }
}

.device-laptop-isometric img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
}

/* ===================================
   Floating Notification Badges
   =================================== */
.float-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 8px 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 30;
    border: 1px solid rgba(226, 232, 240, 0.8);
}
.float-badge-1 {
    top: 25px;
    left: -20px;
    animation: floatBadge1 4s ease-in-out infinite;
}
.float-badge-2 {
    top: 180px;
    right: -30px;
    animation: floatBadge2 5s ease-in-out infinite;
}
.float-badge-3 {
    bottom: 50px;
    left: -10px;
    animation: floatBadge3 4.5s ease-in-out infinite;
}

@media (min-width: 1280px) {
    .float-badge-1 {
        left: -40px;
    }
    .float-badge-2 {
        right: -50px;
    }
    .float-badge-3 {
        left: -20px;
    }
}
@keyframes floatBadge1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes floatBadge2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes floatBadge3 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ===================================
   Feature Icon Cards
   =================================== */
.feature-icon-card { transition: all 0.3s ease; cursor: default; }
.feature-icon-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(37,99,235,0.15); border-color: #bfdbfe; }
.feature-icon-card:hover svg { color: #1d4ed8; }

/* ===================================
   Stat Counter Numbers
   =================================== */
.stat-number { display: inline-block; font-variant-numeric: tabular-nums; }

/* ===================================
   Animated Gradient CTA Button
   =================================== */
.btn-gradient-animate {
    background: linear-gradient(135deg, #2563eb, #0ea5e9, #2563eb);
    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%; }
}

/* ===================================
   Live Pulse Dot
   =================================== */
.live-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; position: relative; flex-shrink: 0; }
.live-dot::after {
    content: ''; position: absolute; inset: -3px; border-radius: 50%;
    background: #22c55e; opacity: 0; animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse { 0% { opacity: 0.6; transform: scale(1); } 100% { opacity: 0; transform: scale(2); } }

/* ===================================
   Hero Entrance Animations
   =================================== */
@keyframes heroSlideUp   { from { opacity:0; transform:translateY(32px); } to { opacity:1; transform:translateY(0); } }
@keyframes heroFadeIn    { from { opacity:0; } to { opacity:1; } }
@keyframes heroSlideRight{ from { opacity:0; transform:translateX(50px); } to { opacity:1; transform:translateX(0); } }
@keyframes heroBadgePop  { 0% { opacity:0; transform:scale(0.85) translateY(10px); } 60% { transform:scale(1.05) translateY(-2px); } 100% { opacity:1; transform:scale(1) translateY(0); } }
@keyframes heroHeading   { from { opacity:0; transform:translateY(40px) skewY(2deg); } to { opacity:1; transform:translateY(0) skewY(0); } }
@keyframes heroGradientText { from { opacity:0; letter-spacing:-0.05em; } to { opacity:1; letter-spacing:normal; } }
@keyframes cursorBlink   { 0%,100% { opacity:1; } 50% { opacity:0; } }

.hero-anim-logo   { animation: heroSlideUp     0.6s cubic-bezier(0.22,1,0.36,1) both; animation-delay:0.1s; }
.hero-anim-badge  { animation: heroBadgePop    0.6s cubic-bezier(0.22,1,0.36,1) both; animation-delay:0.25s; }
.hero-anim-h1     { animation: heroHeading     0.7s cubic-bezier(0.22,1,0.36,1) both; animation-delay:0.4s; }
.hero-anim-accent { animation: heroGradientText 0.6s ease both; animation-delay:0.85s; }
.hero-anim-sub    { animation: heroSlideUp     0.6s cubic-bezier(0.22,1,0.36,1) both; animation-delay:0.65s; }
.hero-anim-icons  { animation: heroSlideUp     0.6s cubic-bezier(0.22,1,0.36,1) both; animation-delay:0.8s; }
.hero-anim-btns   { animation: heroSlideUp     0.6s cubic-bezier(0.22,1,0.36,1) both; animation-delay:0.95s; }
.hero-anim-stats  { animation: heroFadeIn      0.7s ease both; animation-delay:1.1s; }
.hero-anim-mockup { animation: heroSlideRight  0.9s cubic-bezier(0.22,1,0.36,1) both; animation-delay:0.5s; }
.hero-anim-badges { animation: heroFadeIn      0.5s ease both; animation-delay:1.3s; }

/* ===================================
   Features Section — Background
   =================================== */
.features-section {
    background: linear-gradient(160deg, #f5f3ff 0%, #ede9fe 35%, #e8e3f8 65%, #ddd6fe 100%);
}

/* ===================================
   Features Section — Gradient Heading Text
   =================================== */
.features-gradient-text {
    background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 50%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   Feature Card — Base
   =================================== */
.feat-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 20px 28px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
.feat-card:hover {
    transform: translateY(-5px);
}

/* ===================================
   Feature Card — Icon Wrapper
   =================================== */
.feat-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}

/* ===================================
   Feature Card — Bottom Accent Bar
   =================================== */
.feat-border-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 0 0 20px 20px;
    transition: height 0.3s ease;
}
.feat-card:hover .feat-border-accent {
    height: 6px;
}

/* ===================================
   Feature Card Color Themes
   =================================== */

/* 1. Blue — Cloud Based Access */
.feat-icon-blue  { background: #eff6ff; }
.feat-accent-blue { background: #3b82f6; }
.feat-card-blue:hover { box-shadow: 0 12px 40px -8px rgba(59,130,246,0.30); }

/* 2. Teal — Patient Records */
.feat-icon-teal  { background: #f0fdfa; }
.feat-accent-teal { background: #14b8a6; }
.feat-card-teal:hover { box-shadow: 0 12px 40px -8px rgba(20,184,166,0.30); }

/* 3. Purple — Appointments */
.feat-icon-purple { background: #faf5ff; }
.feat-accent-purple { background: #a855f7; }
.feat-card-purple:hover { box-shadow: 0 12px 40px -8px rgba(168,85,247,0.30); }

/* 4. Rose — Billing Integration */
.feat-icon-rose  { background: #fff1f2; }
.feat-accent-rose { background: #f43f5e; }
.feat-card-rose:hover { box-shadow: 0 12px 40px -8px rgba(244,63,94,0.28); }

/* 5. Emerald — Pharmacy */
.feat-icon-emerald { background: #ecfdf5; }
.feat-accent-emerald { background: #10b981; }
.feat-card-emerald:hover { box-shadow: 0 12px 40px -8px rgba(16,185,129,0.28); }

/* 6. Amber — Laboratory */
.feat-icon-amber { background: #fffbeb; }
.feat-accent-amber { background: #f59e0b; }
.feat-card-amber:hover { box-shadow: 0 12px 40px -8px rgba(245,158,11,0.28); }

/* 7. Orange — Reports & Analytics */
.feat-icon-orange { background: #fff7ed; }
.feat-accent-orange { background: #f97316; }
.feat-card-orange:hover { box-shadow: 0 12px 40px -8px rgba(249,115,22,0.28); }

/* 8. Fuchsia — Multi User Access */
.feat-icon-fuchsia { background: #fdf4ff; }
.feat-accent-fuchsia { background: #d946ef; }
.feat-card-fuchsia:hover { box-shadow: 0 12px 40px -8px rgba(217,70,239,0.28); }

/* 9. Sky — Secure Data */
.feat-icon-sky   { background: #f0f9ff; }
.feat-accent-sky { background: #0ea5e9; }
.feat-card-sky:hover { box-shadow: 0 12px 40px -8px rgba(14,165,233,0.28); }

/* 10. Indigo — Mobile Friendly */
.feat-icon-indigo { background: #eef2ff; }
.feat-accent-indigo { background: #6366f1; }
.feat-card-indigo:hover { box-shadow: 0 12px 40px -8px rgba(99,102,241,0.30); }

/* ===================================
   Modules Section — Background
   =================================== */
.modules-section {
    background: linear-gradient(160deg, #eef2ff 0%, #e8eefb 30%, #ede9fe 65%, #e8e3f8 100%);
}

/* ===================================
   Modules Section — Gradient Text
   =================================== */
.modules-gradient-text {
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 60%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   Module Card — Base
   =================================== */
.mod-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 20px 32px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 14px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
.mod-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px -10px rgba(79,70,229,0.18);
}

/* ===================================
   Module Card — Number Badge
   =================================== */
.mod-num {
    position: absolute;
    top: 16px;
    right: 18px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.03em;
    line-height: 1;
    opacity: 0.9;
}

/* ===================================
   Module Card — Icon Circle
   =================================== */
.mod-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.mod-card:hover .mod-icon-circle {
    transform: scale(1.06);
}

/* ===================================
   Module Card — Title & Description
   =================================== */
.mod-title {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.3;
}
.mod-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.55;
}

/* ===================================
   Module Card — Bottom Accent Bar
   =================================== */
.mod-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 0 0 20px 20px;
    transition: height 0.3s ease;
}
.mod-card:hover .mod-accent {
    height: 6px;
}

/* ===================================
   Why Choose Section — Background
   =================================== */
.why-section {
    background: linear-gradient(160deg, #f0f4ff 0%, #eaedfc 30%, #ede8fb 65%, #e8e3f6 100%);
}

/* ===================================
   Why Choose — Gradient "HADI-HMS" Text
   =================================== */
.why-gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   Why Choose — Card Base
   =================================== */
.why-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px 36px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 14px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px -10px rgba(99,102,241,0.18);
}

/* ===================================
   Why Choose — Round Icon Circle
   =================================== */
.why-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.why-card:hover .why-icon-circle {
    transform: scale(1.08);
}

/* ===================================
   Why Choose — Title
   =================================== */
.why-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* ===================================
   Why Choose — Short Colored Title Bar
   =================================== */
.why-title-bar {
    width: 32px;
    height: 3px;
    border-radius: 2px;
    margin-bottom: 14px;
}

/* ===================================
   Why Choose — Description
   =================================== */
.why-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.65;
}

/* ===================================
   Why Choose — Colored Bottom Bar
   =================================== */
.why-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 0 0 20px 20px;
    transition: height 0.3s ease;
}
.why-card:hover .why-bottom-bar {
    height: 6px;
}

/* ===================================
   Screenshots Section
   =================================== */
.screens-section {
    background: linear-gradient(160deg, #f8f9ff 0%, #eef2fb 40%, #ece8f9 100%);
}
.screens-gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.screens-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 14px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.screens-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 44px -10px rgba(99,102,241,0.18);
}
.screens-img-wrap {
    position: relative;
    overflow: hidden;
}
.screens-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.04));
    pointer-events: none;
}
.screens-info {
    padding: 20px 22px 24px;
}
.screens-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.screens-title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}
.screens-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
}
.screens-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: height 0.3s ease;
}
.screens-card:hover .screens-bottom-bar {
    height: 6px;
}

/* ===================================
   Pricing Section — Background
   =================================== */
.pricing-section {
    background: linear-gradient(160deg, #eef2ff 0%, #e8edfb 35%, #ede8fb 70%, #e6e2f6 100%);
}
.pricing-gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 60%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   Pricing Card — Base
   =================================== */
.pricing-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 28px 36px;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -10px rgba(99,102,241,0.18);
}

/* ===================================
   Pricing Card — Featured (Professional)
   =================================== */
.pricing-card-featured {
    background: linear-gradient(145deg, #4f46e5 0%, #6366f1 60%, #7c3aed 100%);
    border: 2px solid #6366f1;
    box-shadow: 0 8px 40px -8px rgba(99,102,241,0.45);
    transform: scale(1.03);
}
.pricing-card-featured:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 20px 50px -10px rgba(99,102,241,0.5);
}

/* ===================================
   Pricing Card — Popular Badge
   =================================== */
.pricing-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(99,102,241,0.4);
    letter-spacing: 0.03em;
}

/* ===================================
   Pricing Card — Icon Circle
   =================================== */
.pricing-icon-circle {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

/* ===================================
   Pricing Card — Plan Name & Sub
   =================================== */
.pricing-plan-name {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 4px;
}
.pricing-plan-sub {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 0;
}

/* ===================================
   Pricing Card — Price Block
   =================================== */
.pricing-price-block {
    margin: 20px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.pricing-price {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    line-height: 1;
}
.pricing-price-note {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 4px;
}

/* ===================================
   Pricing Card — Features List
   =================================== */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #374151;
    font-size: 14px;
}
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-check {
    width: 18px;
    height: 18px;
    color: #6366f1;
    flex-shrink: 0;
}

/* ===================================
   Pricing Card — Buttons
   =================================== */
.pricing-btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    border: 2px solid #6366f1;
    color: #6366f1;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}
.pricing-btn-outline:hover {
    background: #6366f1;
    color: white;
}
.pricing-btn-white {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    background: white;
    color: #4f46e5;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.pricing-btn-white:hover {
    background: #f5f3ff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ===================================
   Screen Tab Buttons
   =================================== */
.screen-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    background: white;
    border: 1.5px solid #e5e7eb;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.screen-tab:hover {
    border-color: #6366f1;
    color: #6366f1;
    background: #f5f3ff;
}
.screen-tab.active {
    background: #6366f1;
    border-color: #6366f1;
    color: white;
    box-shadow: 0 4px 14px rgba(99,102,241,0.35);
}

/* ===================================
   Screenshots Viewer Shell
   =================================== */
.screens-viewer {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 48px -8px rgba(99,102,241,0.2), 0 2px 16px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.07);
}

/* ===================================
   Browser Bar
   =================================== */
.screens-browser-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: #f3f4f6;
    border-bottom: 1px solid #e5e7eb;
}
.screens-browser-dots {
    display: flex;
    gap: 6px;
}
.screens-browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}
.screens-browser-url {
    flex: 1;
    text-align: center;
    font-size: 12px;
    color: #9ca3af;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 4px 14px;
    max-width: 300px;
    margin: 0 auto;
    font-family: monospace;
}

/* ===================================
   Screenshot Panels
   =================================== */
.screens-panel-wrap {
    position: relative;
    overflow: hidden;
    min-height: 200px;
}
.screens-panel {
    display: none;
    position: relative;
    animation: screenFadeIn 0.4s ease;
}
.screens-panel.active {
    display: block;
}
@keyframes screenFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.screens-panel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
    padding: 32px 28px 24px;
}
.screens-panel-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.screens-panel-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    width: fit-content;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.screens-panel-title {
    font-size: 20px;
    font-weight: 800;
    color: white;
    line-height: 1.3;
}
.screens-panel-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    max-width: 520px;
}

/* ===================================
   Progress Bar
   =================================== */
.screens-progress-bar {
    height: 3px;
    background: #e5e7eb;
    overflow: hidden;
}
.screens-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #a855f7);
    width: 25%;
    transition: width 0.4s ease;
}

/* ===================================
   Stats Strip
   =================================== */
.screens-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: white;
    border-radius: 16px;
    padding: 18px 12px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 1px 8px rgba(0,0,0,0.05);
}
.screens-stat-num {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}
.screens-stat-label {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
    text-align: center;
}

/* ===================================
   Infinite Marquee Strip
   =================================== */
.screens-marquee-wrap {
    overflow: hidden;
    position: relative;
}
.screens-marquee-wrap::before,
.screens-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.screens-marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, #f0f4ff, transparent);
}
.screens-marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, #f0f4ff, transparent);
}
.screens-marquee {
    display: flex;
    width: 100%;
    overflow: hidden;
    padding: 8px 0;
}
.screens-marquee-track {
    display: flex;
    gap: 12px;
    animation: marquee-scroll 30s linear infinite;
    will-change: transform;
    white-space: nowrap;
}
.screens-marquee-track:hover {
    animation-play-state: paused;
}
@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.screens-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    flex-shrink: 0;
}
}


/* ===================================
   WhatsApp Floating Widget
   =================================== */

#wa-widget {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 9999;
    width: 60px;
    height: 60px;
}

#wa-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: #25d366;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: white;
    z-index: 2;
}
#wa-btn svg { width: 30px; height: 30px; }
#wa-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}

.wa-pulse {
    position: absolute;
    top: 0; right: 0;
    width: 14px; height: 14px;
    background: #25d366;
    border-radius: 50%;
    border: 2px solid white;
    animation: wa-pulse-anim 2s infinite;
}
@keyframes wa-pulse-anim {
    0%   { transform: scale(1); opacity: 1; }
    70%  { transform: scale(2.2); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

.wa-form-box {
    display: none;
    position: absolute;
    bottom: 76px;
    right: 0;
    width: 310px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.2);
    overflow: hidden;
    z-index: 3;
    animation: waSlideUp 0.3s ease;
}
.wa-form-box.wa-open { display: block; }
@keyframes waSlideUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

.wa-form-header {
    background: #075e54;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wa-form-header-info { display: flex; align-items: center; gap: 10px; }
.wa-avatar {
    width: 40px; height: 40px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.wa-form-name  { color: white; font-weight: 700; font-size: 14px; }
.wa-form-status { color: #aed6af; font-size: 11px; margin-top: 2px; }
.wa-close-btn {
    background: none; border: none;
    color: rgba(255,255,255,0.75);
    font-size: 24px; cursor: pointer;
    line-height: 1; padding: 0 4px;
    transition: color 0.2s;
}
.wa-close-btn:hover { color: white; }

.wa-form-body { padding: 16px; }
.wa-form-greeting { font-size: 13px; color: #4b5563; margin-bottom: 14px; line-height: 1.5; }
.wa-fields { display: flex; flex-direction: column; gap: 9px; margin-bottom: 12px; }
.wa-input {
    width: 100%; padding: 9px 12px;
    border: 1.5px solid #e5e7eb;
    border-radius: 9px; font-size: 13px; color: #374151;
    outline: none; transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit; box-sizing: border-box;
}
.wa-input:focus { border-color: #25d366; box-shadow: 0 0 0 3px rgba(37,211,102,0.13); }
.wa-input::placeholder { color: #9ca3af; }

.wa-send-btn {
    width: 100%; background: #25d366; color: white;
    border: none; border-radius: 9px;
    padding: 10px 16px; font-size: 14px; font-weight: 700;
    cursor: pointer; display: flex; align-items: center;
    justify-content: center; gap: 8px;
    transition: background 0.2s, transform 0.15s;
    font-family: inherit;
}
.wa-send-btn:hover { background: #1eb85a; transform: translateY(-1px); }

.wa-error { color: #ef4444; font-size: 12px; margin-top: 8px; text-align: center; display: none; }

@media (max-width: 380px) {
    .wa-form-box { width: calc(100vw - 32px); right: 0; }
    #wa-widget   { right: 16px; }
}
