/* TeleCare+ marketing landing — Doxe-inspired */
@keyframes lp-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes lp-float-reverse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

@keyframes lp-blob-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(12px, -18px) scale(1.04); }
    66% { transform: translate(-8px, 10px) scale(0.96); }
}

@keyframes lp-orbit-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes lp-pulse-soft {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.35); }
    50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

@keyframes lp-shine {
    0% { transform: translateX(-120%) skewX(-12deg); }
    100% { transform: translateX(220%) skewX(-12deg); }
}

@keyframes lp-fade-up {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lp-icon-bob {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(4deg); }
}

:root {
    --lp-primary: #4361ee;
    --lp-primary-dark: #3651d4;
    --lp-accent: #3a86ff;
    --lp-dark: #1e2235;
    --lp-text: #1f2937;
    --lp-muted: #6b7280;
    --lp-border: #e5e7eb;
    --lp-bg: #f8fafc;
    --lp-radius: 16px;
    --lp-shadow: 0 12px 40px rgba(30, 34, 53, 0.08);
}

* { box-sizing: border-box; }

.lp-body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--lp-text);
    background: #fff;
    line-height: 1.6;
}

.lp-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.lp-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--lp-border);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.lp-header-scrolled {
    box-shadow: 0 8px 30px rgba(30, 34, 53, 0.08);
    background: rgba(255, 255, 255, 0.98);
}

.lp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
}

.lp-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--lp-dark);
    font-weight: 700;
    font-size: 1.25rem;
}

.lp-logo .tc-logo--landing {
    max-height: 52px;
}

.lp-logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-accent));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.lp-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.lp-nav a {
    color: var(--lp-muted);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.2s;
}

.lp-nav a:hover { color: var(--lp-primary); }

.lp-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.lp-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(67, 97, 238, 0.25);
}

.lp-btn-primary {
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-accent));
    color: #fff;
}

.lp-btn-outline {
    background: #fff;
    color: var(--lp-primary);
    border: 1.5px solid var(--lp-border);
}

.lp-btn-outline:hover {
    border-color: var(--lp-primary);
    box-shadow: none;
}

.lp-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.35rem;
    color: var(--lp-dark);
    cursor: pointer;
}

/* Reveal animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.lp-animate-in {
    opacity: 0;
    animation: lp-fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--delay, 0s);
}

/* Hero */
.lp-hero {
    padding: 72px 0 88px;
    background: linear-gradient(180deg, #f0f4ff 0%, #fff 55%);
    overflow: hidden;
    position: relative;
}

.lp-hero-blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.lp-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: lp-blob-drift 14s ease-in-out infinite;
}

.lp-blob-1 {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -80px;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.18) 0%, transparent 70%);
}

.lp-blob-2 {
    width: 280px;
    height: 280px;
    bottom: 40px;
    left: -60px;
    background: radial-gradient(circle, rgba(58, 134, 255, 0.14) 0%, transparent 70%);
    animation-delay: -4s;
}

.lp-blob-3 {
    width: 180px;
    height: 180px;
    top: 45%;
    right: 35%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    animation-delay: -8s;
}

.lp-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.lp-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(67, 97, 238, 0.1);
    color: var(--lp-primary);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}

.lp-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.15rem);
    line-height: 1.15;
    margin: 0 0 20px;
    color: var(--lp-dark);
    letter-spacing: -0.02em;
}

.lp-hero-lead {
    font-size: 1.08rem;
    color: var(--lp-muted);
    max-width: 520px;
    margin: 0 0 32px;
}

.lp-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.lp-hero-note {
    font-size: 0.88rem;
    color: var(--lp-muted);
}

.lp-hero-note i { color: var(--lp-primary); margin-right: 6px; }

.lp-hero-graphic {
    position: relative;
    min-height: 420px;
}

.lp-hero-illustration {
    position: relative;
    z-index: 1;
}

.lp-hero-illustration img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.lp-float-slow {
    animation: lp-float 6s ease-in-out infinite;
}

.lp-float-slow-reverse {
    animation: lp-float-reverse 7s ease-in-out infinite;
}

.lp-hero-visual {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(300px, 72%);
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(30, 34, 53, 0.14);
    border: 1px solid var(--lp-border);
    padding: 20px;
    z-index: 3;
    animation: lp-float 5s ease-in-out infinite;
    animation-delay: var(--float-delay, 0s);
}

.lp-float-card {
    animation-delay: 1.2s;
}

.lp-mock-card {
    background: var(--lp-bg);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 10px;
    border: 1px solid var(--lp-border);
    opacity: 0;
    transform: translateX(20px);
    animation: lp-fade-up 0.6s ease forwards;
}

.lp-mock-card-1 { animation-delay: 0.9s; }
.lp-mock-card-2 { animation-delay: 1.1s; }
.lp-mock-card-3 { animation-delay: 1.3s; margin-bottom: 0; }

.lp-mock-card strong {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.lp-mock-card strong i {
    color: var(--lp-primary);
    margin-right: 8px;
}

.lp-mock-card span {
    font-size: 0.78rem;
    color: var(--lp-muted);
}

.lp-mock-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    background: #dcfce7;
    color: #166534;
    margin-top: 8px;
}

.lp-pulse {
    animation: lp-pulse-soft 2.4s ease-in-out infinite;
}

.lp-float-icon {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--lp-border);
    box-shadow: 0 10px 28px rgba(30, 34, 53, 0.1);
    color: var(--lp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 2;
    animation: lp-icon-bob 4s ease-in-out infinite;
}

.lp-float-icon-1 { top: 8%; left: 4%; animation-delay: 0s; }
.lp-float-icon-2 { top: 52%; left: -2%; animation-delay: -1.2s; background: linear-gradient(135deg, #fef3c7, #fff); color: #d97706; }
.lp-float-icon-3 { top: 18%; right: 2%; animation-delay: -2.4s; background: linear-gradient(135deg, #fee2e2, #fff); color: #ef4444; }

/* Showcase graphic section */
.lp-showcase {
    padding: 64px 0;
    background: #fff;
}

.lp-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.lp-showcase-graphic {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-orbit-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    border: 2px dashed rgba(67, 97, 238, 0.15);
    border-radius: 50%;
    animation: lp-orbit-spin 40s linear infinite;
}

.lp-showcase-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    height: auto;
}

.lp-showcase-copy h2 {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    margin: 0 0 16px;
    color: var(--lp-dark);
    letter-spacing: -0.02em;
}

.lp-showcase-copy > p {
    color: var(--lp-muted);
    margin: 0 0 24px;
    font-size: 1.02rem;
}

.lp-check-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--lp-text);
    font-weight: 500;
}

.lp-check-list i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(67, 97, 238, 0.1);
    color: var(--lp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Sections */
.lp-section {
    padding: 80px 0;
}

.lp-section-alt { background: var(--lp-bg); }

.lp-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.lp-section-eyebrow {
    color: var(--lp-primary);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.lp-section-head h2 {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    margin: 0 0 14px;
    color: var(--lp-dark);
    letter-spacing: -0.02em;
}

.lp-section-head p {
    margin: 0;
    color: var(--lp-muted);
    font-size: 1.02rem;
}

.lp-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.lp-feature {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 32px 28px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.lp-section-alt .lp-feature {
    background: #fff;
}

.lp-feature:hover {
    box-shadow: var(--lp-shadow);
    transform: translateY(-4px);
}

.lp-feature-icon,
.lp-feature-visual {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.12), rgba(58, 134, 255, 0.08));
    color: var(--lp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 20px;
}

.lp-feature-visual {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    position: relative;
    margin-bottom: 24px;
}

.lp-feature-ring {
    position: absolute;
    inset: -8px;
    border-radius: 24px;
    border: 2px solid rgba(67, 97, 238, 0.12);
    animation: lp-pulse-soft 3s ease-in-out infinite;
}

.lp-feature-visual-video { background: linear-gradient(135deg, #e8eeff, #f0f4ff); }
.lp-feature-visual-calendar { background: linear-gradient(135deg, #dcfce7, #f0fdf4); color: #16a34a; }
.lp-feature-visual-pharmacy { background: linear-gradient(135deg, #fef3c7, #fffbeb); color: #d97706; }

.lp-feature-visual-video .lp-feature-ring { border-color: rgba(67, 97, 238, 0.2); }
.lp-feature-visual-calendar .lp-feature-ring { border-color: rgba(22, 163, 74, 0.2); }
.lp-feature-visual-pharmacy .lp-feature-ring { border-color: rgba(217, 119, 6, 0.2); }

.lp-feature h3 {
    margin: 0 0 10px;
    font-size: 1.12rem;
    color: var(--lp-dark);
}

.lp-feature p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--lp-muted);
    line-height: 1.65;
}

/* Stats */
.lp-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.lp-stat {
    padding: 28px 16px;
    background: #fff;
    border-radius: var(--lp-radius);
    border: 1px solid var(--lp-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-stat:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-shadow);
}

.lp-stat strong {
    display: block;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--lp-primary);
    line-height: 1.1;
    margin-bottom: 8px;
}

.lp-stat span {
    font-size: 0.88rem;
    color: var(--lp-muted);
    font-weight: 500;
}

/* Steps */
.lp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

.lp-step {
    text-align: center;
    padding: 24px;
    position: relative;
}

.lp-step-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(58, 134, 255, 0.06));
    color: var(--lp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.lp-step:hover .lp-step-icon {
    transform: scale(1.08) rotate(-4deg);
}

.lp-step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--lp-primary);
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 6px 18px rgba(67, 97, 238, 0.35);
}

.lp-step h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
}

.lp-step p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--lp-muted);
}

/* CTA band */
.lp-cta-band {
    padding: 72px 0;
    background: linear-gradient(135deg, var(--lp-dark) 0%, #2a3050 50%, var(--lp-primary) 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-cta-shine {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.lp-cta-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    animation: lp-shine 6s ease-in-out infinite;
}

.lp-cta-band h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin: 0 0 14px;
}

.lp-cta-band p {
    margin: 0 auto 28px;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.02rem;
}

.lp-cta-band .lp-btn-primary {
    background: #fff;
    color: var(--lp-primary);
}

.lp-cta-band .lp-btn-outline {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    background: transparent;
}

.lp-cta-band .lp-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.lp-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* Footer */
.lp-footer {
    padding: 40px 0;
    border-top: 1px solid var(--lp-border);
    background: #fff;
}

.lp-footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.lp-footer p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--lp-muted);
}

.lp-footer-links {
    display: flex;
    gap: 20px;
}

.lp-footer-links a {
    color: var(--lp-muted);
    text-decoration: none;
    font-size: 0.88rem;
}

.lp-footer-links a:hover { color: var(--lp-primary); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }

    .lp-animate-in,
    .lp-mock-card {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* Mobile */
@media (max-width: 960px) {
    .lp-hero-grid { grid-template-columns: 1fr; }
    .lp-hero-graphic {
        order: -1;
        min-height: 360px;
        max-width: 520px;
        margin: 0 auto 24px;
    }
    .lp-hero-visual {
        position: relative;
        width: 100%;
        right: auto;
        bottom: auto;
        margin-top: -40px;
    }
    .lp-float-icon { display: none; }
    .lp-showcase-grid { grid-template-columns: 1fr; }
    .lp-showcase-graphic { order: -1; }
    .lp-features { grid-template-columns: 1fr; }
    .lp-stats { grid-template-columns: repeat(2, 1fr); }
    .lp-steps { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .lp-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #fff;
        border-bottom: 1px solid var(--lp-border);
        padding: 12px 24px 20px;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    }

    .lp-nav.open { display: flex; }

    .lp-nav a {
        padding: 12px 0;
        border-bottom: 1px solid var(--lp-border);
    }

    .lp-header-actions .lp-btn-outline { display: none; }

    .lp-menu-toggle { display: block; }

    .lp-header-inner { position: relative; }
}
