/* === Clinical Intelligence Design System === */

/* === Capacitor iOS Safe Areas === */
body {
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

.modal-overlay {
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
}

.toast {
    bottom: calc(24px + env(safe-area-inset-bottom));
}

/* Material Symbols */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
}

/* Primary Gradient */
.primary-gradient {
    background: linear-gradient(135deg, #00478d 0%, #005eb8 100%);
}

/* Glass Panel */
.glass-panel {
    background: rgba(207, 230, 242, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar { width: 4px; }
.custom-scrollbar::-webkit-scrollbar-track { background: transparent; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: #c2c6d4; border-radius: 10px; }

/* === Sidebar === */
.sidebar-panel {
    width: 288px;
    height: 100%;
    background: #ffffff;
    border-right: 1px solid rgba(194, 198, 212, 0.1);
    flex-shrink: 0;
    overflow-y: auto;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile sidebar backdrop */
.sidebar-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 150;
    background: rgba(7, 30, 39, 0.45);
    backdrop-filter: blur(2px);
}
.sidebar-backdrop.active { display: block; }

/* Hamburger — hidden on desktop, shown on mobile */
.sidebar-hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: #424752;
    cursor: pointer;
    border-radius: 10px;
    transition: background 0.15s;
    flex-shrink: 0;
}
.sidebar-hamburger:hover { background: rgba(194, 198, 212, 0.2); }
.sidebar-hamburger .material-symbols-outlined { font-size: 22px; }

.sidebar-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #424752;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    border: none;
    background: none;
    width: 100%;
}

.sidebar-nav-item:hover {
    background: rgba(255, 255, 255, 0.5);
}

.sidebar-nav-item.active {
    background: white;
    color: #00478d;
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Sidebar group (always expanded) */
.sidebar-group {
    margin: 4px 0;
}

.sidebar-group-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px 6px;
    font-size: 11px;
    font-weight: 800;
    color: #727783;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sidebar-group-items {
    padding-left: 16px;
    border-left: 2px solid rgba(194, 198, 212, 0.25);
    margin-left: 26px;
}

.sidebar-sub-item {
    padding: 8px 14px !important;
    font-size: 13px !important;
}

.sidebar-sub-item .material-symbols-outlined {
    font-size: 18px;
}

/* === Home Dashboard === */
.home-search-wrap {
    max-width: 520px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #eef4fb;
    border: 1px solid rgba(194, 198, 212, 0.3);
    border-radius: 9999px;
    padding: 10px 14px;
}

.home-search-input {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    color: #424752;
    font-size: 14px;
}

.home-search-input::placeholder { color: #8b92a1; }

.home-icon-btn {
    width: 34px;
    height: 34px;
    border-radius: 9999px;
    border: 1px solid rgba(194, 198, 212, 0.35);
    background: #f8fbff;
    color: #4c5664;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.home-hero-card {
    border-radius: 20px;
    border: 1px solid rgba(194, 198, 212, 0.25);
    background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
    padding: 32px;
}

.home-kpi-card {
    background: #ecf6ff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(194, 198, 212, 0.2);
}

.home-list-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(194, 198, 212, 0.25);
}

.home-learning-card {
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(160deg, #005eb8 0%, #00478d 70%);
}

/* === Marketing Landing Page === */
.landing-page {
    background: #eef7ff;
}

.landing-navbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(194, 198, 212, 0.25);
    box-shadow: 0 1px 4px rgba(7, 30, 39, 0.04);
}

.landing-brand {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    color: #0b3a6a;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 20px;
}

.landing-brand > span:first-child {
    box-shadow: 0 2px 8px rgba(0, 71, 141, 0.25);
}

.landing-links {
    display: flex;
    gap: 22px;
    font-size: 13px;
    color: #4c5664;
}
.landing-links a { color: inherit; text-decoration: none; }
.landing-links a:hover { text-decoration: underline; }

.landing-auth { display: flex; align-items: center; gap: 10px; }
.landing-login {
    background: transparent;
    border: none;
    color: #4c5664;
    font-weight: 600;
    font-size: 13px;
}
.landing-signup {
    background: #0b3a6a;
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 13px;
}

.landing-hero {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 32px;
    padding: 40px 24px 32px;
    max-width: 1320px;
    margin: 0 auto;
    align-items: center;
}
/* Prevent grid children from overflowing their column */
.landing-hero > div {
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.landing-chip {
    display: inline-block;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.18em;
    padding: 6px 12px;
    border-radius: 9999px;
    background: rgba(111, 215, 214, 0.25);
    color: #006a6a;
    margin-bottom: 18px;
}

.landing-hero h1 {
    font-family: 'Manrope', sans-serif;
    font-weight: 900;
    font-size: 42px;
    line-height: 1.12;
    letter-spacing: -0.04em;
    color: #0b3a6a;
    margin: 0 0 18px;
}

.landing-subtitle {
    color: #4c5664;
    font-size: 15px;
    line-height: 1.8;
    max-width: 560px;
}

.landing-cta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
}

.landing-primary-btn {
    background: linear-gradient(135deg, #0b3a6a 0%, #005eb8 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 14px 22px;
    font-weight: 900;
    font-size: 13px;
    box-shadow: 0 12px 28px rgba(0, 94, 184, 0.18);
}

.landing-ghost-btn {
    background: transparent;
    border: none;
    color: #0b3a6a;
    font-weight: 800;
    font-size: 13px;
}

.landing-trust {
    margin-top: 18px;
    font-size: 12px;
    color: #6b7484;
    font-weight: 600;
}

.landing-hero-card {
    border-radius: 22px;
    overflow: hidden;
    border: none;
    box-shadow: 0 8px 40px rgba(0,71,141,0.13);
    background: transparent;
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3; /* taller card — cover crops sides, person stays centered */
}

.landing-hero-art {
    display: none;
}

.landing-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 22%;
    z-index: 0;
    transform: none;
}

/* gradient overlay removed — carousel uses contain, no cropping */

/* ── Hero Carousel ───────────────────────────────────────── */
.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-carousel-slide.active {
    opacity: 1;
}
.hero-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}
.hero-carousel-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 3;
}
.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    border: 1.5px solid rgba(0,71,141,0.25);
}
.hero-dot.active {
    background: #005eb8;
    transform: scale(1.25);
    border-color: #005eb8;
}

.landing-hero-badge {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 11px;
    color: #0b3a6a;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.landing-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 26px;
    justify-content: center;
    align-items: center;
    padding: 18px 24px 34px;
    color: #9aa3b2;
    font-size: 12px;
}
.landing-partners strong { color: #7f8796; font-weight: 900; letter-spacing: 0.02em; }

.landing-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 58px 32px;
    text-align: center;
}
.landing-section h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 900;
    font-size: 34px;
    color: #0b3a6a;
    margin: 0 0 10px;
    letter-spacing: -0.03em;
}
.landing-section > p {
    color: #6b7484;
    font-size: 13px;
    max-width: 640px;
    margin: 0 auto 26px;
    line-height: 1.8;
}

.landing-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: left;
}
.landing-feature-card {
    background: #ffffff;
    border: 1px solid rgba(194, 198, 212, 0.25);
    border-radius: 18px;
    padding: 20px;
}
.landing-feature-card h3 {
    font-weight: 900;
    color: #0b3a6a;
    margin: 0 0 8px;
    font-size: 14px;
}
.landing-feature-card p {
    margin: 0;
    color: #6b7484;
    font-size: 12px;
    line-height: 1.7;
}
.landing-feature-accent {
    background: linear-gradient(160deg, #0b3a6a 0%, #005eb8 100%);
    border-color: rgba(11, 58, 106, 0.35);
}
.landing-feature-accent h3, .landing-feature-accent p { color: #ffffff; }

.landing-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 22px;
    text-align: center;
}
.landing-steps-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(194, 198, 212, 0.25);
    font-weight: 900;
    color: #0b3a6a;
    margin-bottom: 10px;
    box-shadow: 0 10px 26px rgba(7, 30, 39, 0.06);
}
.landing-steps-grid h3 { margin: 0 0 6px; font-size: 14px; font-weight: 900; color: #0b3a6a; }
.landing-steps-grid p { margin: 0; font-size: 12px; color: #6b7484; line-height: 1.7; }

.landing-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    max-width: 880px;
    margin: 24px auto 0;
    text-align: left;
}
.landing-price-card {
    background: #ffffff;
    border: 1px solid rgba(194, 198, 212, 0.25);
    border-radius: 22px;
    padding: 26px;
}
.landing-price-card.pro {
    background: linear-gradient(160deg, #0b3a6a 0%, #005eb8 100%);
    color: #ffffff;
    box-shadow: 0 16px 40px rgba(0, 94, 184, 0.18);
}
.landing-price-card h3 { margin: 0 0 10px; font-weight: 900; }
.landing-price { font-weight: 900; font-size: 34px; margin: 0 0 14px; }
.landing-price small { font-size: 12px; font-weight: 700; opacity: 0.85; }
.landing-price-card ul { list-style: none; padding: 0; margin: 0 0 18px; }
.landing-price-card li { margin: 10px 0; font-size: 12px; opacity: 0.9; }

.landing-price-tagline {
    font-size: 11px;
    font-weight: 700;
    color: #6b7484;
    margin: -8px 0 14px;
    letter-spacing: 0.02em;
}

.landing-price-tagline-top {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 4px;
    opacity: 0.75;
}

.landing-price-hook {
    font-size: 11px;
    font-style: italic;
    line-height: 1.5;
    opacity: 0.8;
    margin: -6px 0 14px;
}

.landing-cta {
    max-width: 1180px;
    margin: 10px auto 60px;
    padding: 46px 32px;
    border-radius: 26px;
    background: linear-gradient(160deg, #0b3a6a 0%, #005eb8 100%);
    color: #ffffff;
    text-align: center;
    box-shadow: 0 20px 60px rgba(7, 30, 39, 0.16);
}
.landing-cta h2 { margin: 0 0 10px; font-family: 'Manrope', sans-serif; font-weight: 900; font-size: 34px; }
.landing-cta p { margin: 0 0 18px; opacity: 0.9; }

/* === Full Footer === */
.landing-footer-full {
    background: #f3faff;
    color: #4c5664;
    padding: 0;
    margin-top: 20px;
    border-top: 1px solid rgba(194,198,212,0.25);
}
.landing-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 56px 32px 40px;
}
.landing-footer-brand p {
    font-size: 13px;
    line-height: 1.75;
    margin: 14px 0 20px;
    color: #5c6573;
    max-width: 300px;
}
.landing-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: #0b3a6a;
}
.landing-footer-socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.landing-footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #5c6573;
    padding: 6px 12px;
    border: 1px solid rgba(194,198,212,0.3);
    border-radius: 8px;
    text-decoration: none;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.landing-footer-social-link .material-symbols-outlined { font-size: 14px; }
.landing-footer-social-link:hover {
    color: #0b3a6a;
    border-color: rgba(0,71,141,0.3);
    background: rgba(0,94,184,0.05);
}
.landing-footer-col h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 13px;
    color: #0b3a6a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 18px;
}
.landing-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.landing-footer-col ul li a {
    color: #5c6573;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.15s;
}
.landing-footer-col ul li a:hover {
    color: #005eb8;
}
.landing-footer-bottom {
    border-top: 1px solid rgba(194,198,212,0.25);
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.landing-footer-bottom p {
    font-size: 12px;
    color: #727783;
    margin: 0;
}

/* === CTA Annotation === */
.landing-cta-primary-wrap { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.landing-cta-annotation { font-size: 11px; color: #6b7484; font-weight: 500; letter-spacing: 0.01em; }

/* === Problem / Agitation Section === */
.landing-problem {
    max-width: 820px;
    margin: 0 auto;
    padding: 64px 32px;
    text-align: center;
}
.landing-problem h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 900;
    font-size: 30px;
    color: #0b3a6a;
    margin: 0 0 20px;
    letter-spacing: -0.03em;
    line-height: 1.25;
}
.landing-problem p {
    color: #4c5664;
    font-size: 15px;
    line-height: 1.85;
    max-width: 700px;
    margin: 0 auto;
}

/* === Authority Section === */
.landing-authority {
    max-width: 900px;
    margin: 0 auto;
    padding: 58px 32px;
    text-align: center;
}
.landing-authority h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 900;
    font-size: 34px;
    color: #0b3a6a;
    margin: 0 0 16px;
    letter-spacing: -0.03em;
    line-height: 1.2;
}
.landing-authority > p {
    color: #4c5664;
    font-size: 14px;
    line-height: 1.85;
    max-width: 680px;
    margin: 0 auto 28px;
}
.landing-source-list {
    list-style: none;
    padding: 0;
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    margin: 0 auto 28px;
}
.landing-source-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #0b3a6a;
    padding: 12px 22px;
    background: #ffffff;
    border: 1px solid rgba(194, 198, 212, 0.3);
    border-radius: 12px;
    transition: transform 0.15s, box-shadow 0.15s;
}
.landing-source-list li:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.landing-source-list li .material-symbols-outlined {
    font-size: 20px;
    color: #005eb8;
}
.landing-authority-subtext {
    color: #5c6573;
    font-size: 13px;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.85;
    font-style: italic;
}

/* === Quick Glance Section === */
.landing-glance-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 28px;
}
.landing-glance-grid > div {
    background: #ffffff;
    border: 1px solid rgba(194, 198, 212, 0.25);
    border-radius: 18px;
    padding: 28px 16px 24px;
    text-align: center;
    transition: transform 0.15s, box-shadow 0.15s;
}
.landing-glance-grid > div:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}
.landing-glance-grid .material-symbols-outlined {
    font-size: 34px;
    color: #005eb8;
    margin-bottom: 12px;
    display: block;
}
.landing-glance-grid h3 {
    font-size: 13px;
    font-weight: 800;
    color: #0b3a6a;
    margin: 0 0 6px;
    line-height: 1.4;
}
.landing-glance-grid p {
    font-size: 11px;
    color: #6b7484;
    margin: 0;
    line-height: 1.5;
}

/* === 4-Step How It Works Override === */
.landing-steps-grid.four-steps {
    grid-template-columns: repeat(4, 1fr);
}

/* === Benefits Section === */
.landing-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 960px;
    margin: 28px auto 0;
    text-align: left;
}
.landing-benefit-card {
    background: #ffffff;
    border: 1px solid rgba(194, 198, 212, 0.25);
    border-radius: 18px;
    padding: 28px;
    transition: transform 0.15s, box-shadow 0.15s;
}
.landing-benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}
.landing-benefit-card .material-symbols-outlined {
    font-size: 30px;
    color: #005eb8;
    margin-bottom: 12px;
    display: block;
}
.landing-benefit-card h3 {
    font-weight: 900;
    color: #0b3a6a;
    margin: 0 0 8px;
    font-size: 15px;
}
.landing-benefit-card p {
    margin: 0;
    color: #5c6573;
    font-size: 13px;
    line-height: 1.75;
}

@media (max-width: 980px) {
    .landing-hero { grid-template-columns: 1fr; }
    .landing-hero h1 { font-size: 36px; }
    .landing-feature-grid { grid-template-columns: 1fr; }
    .landing-steps-grid { grid-template-columns: 1fr; }
    .landing-steps-grid.four-steps { grid-template-columns: repeat(2, 1fr); }
    .landing-pricing-grid { grid-template-columns: 1fr; }
    .landing-links { display: none; }
    .landing-glance-grid { grid-template-columns: repeat(2, 1fr); }
    .landing-benefits-grid { grid-template-columns: 1fr; }
    .landing-problem h2 { font-size: 24px; }
    .landing-authority h2 { font-size: 28px; }
    .landing-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .landing-footer-brand { grid-column: 1 / -1; }
    .landing-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 600px) {
    .landing-hero h1 { font-size: 28px; }
    .landing-glance-grid { grid-template-columns: 1fr; }
    .landing-steps-grid.four-steps { grid-template-columns: 1fr; }
    .landing-problem { padding: 40px 20px; }
    .landing-authority { padding: 40px 20px; }
    .landing-source-list li { font-size: 12px; padding: 10px 16px; }
    .landing-footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 40px 24px 32px; }
    .landing-footer-bottom { padding: 16px 24px; }
}

/* === Phase Tracker === */
.phase-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #727783;
    padding: 6px 0;
    transition: all 0.2s;
}

.phase-item.active {
    color: #00478d;
    font-weight: 600;
}

.phase-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c2c6d4;
    flex-shrink: 0;
    transition: all 0.2s;
}

.phase-item.active .phase-dot {
    background: #006a6a;
    box-shadow: 0 0 0 3px rgba(0, 106, 106, 0.15);
}

#timer-container.timer-prep {
    background: rgba(0, 94, 184, 0.08) !important;
    border-color: rgba(0, 94, 184, 0.22) !important;
}

#timer-container.timer-encounter {
    background: rgba(0, 106, 106, 0.1) !important;
    border-color: rgba(0, 106, 106, 0.22) !important;
}

#timer-container.timer-warning {
    background: rgba(186, 26, 26, 0.12) !important;
    border-color: rgba(186, 26, 26, 0.26) !important;
}

#timer-container.timer-finished {
    background: rgba(114, 119, 131, 0.12) !important;
    border-color: rgba(114, 119, 131, 0.26) !important;
}


/* === Status Dot === */
.status-dot-live {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #006a6a;
    position: relative;
    flex-shrink: 0;
}

.status-dot-live::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: rgba(0, 106, 106, 0.2);
}

/* === Chat Messages === */
.message {
    display: flex;
    max-width: 85%;
    animation: fadeIn 0.3s ease forwards;
}

.message.user {
    justify-content: flex-end;
    margin-left: auto;
}

.message.agent {
    align-self: flex-start;
}

.message.user .message-content {
    background: #006a6a;
    color: white;
    padding: 16px 20px;
    border-radius: 20px 20px 4px 20px;
    font-size: 14px;
    line-height: 1.6;
}

.message.agent .message-content {
    background: #e6f6ff;
    color: #071e27;
    padding: 16px 20px;
    border-radius: 4px 20px 20px 20px;
    font-size: 14px;
    line-height: 1.6;
    border: 1px solid rgba(194, 198, 212, 0.1);
}

/* Markdown in messages */
.message-content p { margin-bottom: 10px; }
.message-content p:last-child { margin-bottom: 0; }
.message-content ul, .message-content ol { padding-left: 20px; margin-bottom: 10px; }
.message-content strong { font-weight: 600; }
.message-content h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin: 16px 0 8px;
    padding-bottom: 4px;
    border-bottom: 2px solid #00478d;
    color: #00478d;
}
.message-content h3:first-child { margin-top: 0; }
.message-content hr {
    border: none;
    border-top: 1px solid rgba(194, 198, 212, 0.2);
    margin: 14px 0;
}

/* Checklist in results */
.message-content ul li {
    list-style: none;
    padding: 4px 0 4px 8px;
    font-size: 13px;
    line-height: 1.6;
    border-radius: 6px;
    margin-bottom: 2px;
}

.message-content ul li input[type="checkbox"]:checked { accent-color: #006a6a; }
.message-content ul li input[type="checkbox"]:not(:checked) { accent-color: #ba1a1a; }

/* Streaming cursor */
.message-content.streaming::after {
    content: '|';
    animation: blink 0.8s step-end infinite;
    color: #00478d;
    font-weight: 300;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* === Typing Indicator === */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 14px 18px;
    background: #e6f6ff;
    border-radius: 4px 18px 18px 18px;
    width: fit-content;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: #6fd7d6;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* === Listening Indicator === */
.listening-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    margin-bottom: 8px;
}

.listening-indicator.hidden { display: none; }

/* ============================================================
   Voice Orb — Apple Siri Style
   Smooth colorful gradient blobs, soft morphing, clean & minimal
   ============================================================ */

.voice-orb {
    position: relative;
    width: 92px;
    height: 92px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: saturate(1.1);
}

.voice-orb:hover { transform: scale(1.08); }
.voice-orb:active { transform: scale(0.93); }

/* Smaller orb for inline input row */
.voice-orb.voice-orb-sm {
    width: 56px;
    height: 56px;
}
.voice-orb.voice-orb-sm .voice-orb-blob {
    width: 50px;
    height: 50px;
}

/* "Tap" label centered inside the orb */
.voice-orb-tap {
    position: relative;
    z-index: 10;
    font-size: 13px;
    font-weight: 700;
    color: rgba(11, 58, 106, 0.85);
    letter-spacing: 0.06em;
    text-shadow: none;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.voice-orb.voice-orb-active .voice-orb-tap {
    opacity: 0;
}

/* --- Blob layers — overlapping color spheres that morph --- */
.voice-orb-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    transition: all 0.5s ease;
    mix-blend-mode: screen;
}

/* Blob 1 — primary blue (matches send button), largest */
.voice-orb-blob-1 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 40% 40%, #005eb8 0%, #00478d 60%, #003366 100%);
    opacity: 1;
    filter: blur(2px);
    mix-blend-mode: normal;
    animation: siri-blob-1 7s ease-in-out infinite;
}

/* Blob 2 — pink/magenta */
.voice-orb-blob-2 {
    width: 62px;
    height: 62px;
    background: radial-gradient(circle at 60% 35%, #f472b6, #ec4899, #be185d);
    opacity: 0.9;
    animation: siri-blob-2 6s ease-in-out infinite;
}

/* Blob 3 — teal/cyan */
.voice-orb-blob-3 {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 35% 65%, #22d3ee, #06b6d4, #0e7490);
    opacity: 0.9;
    animation: siri-blob-3 8s ease-in-out infinite;
}

/* Blob 4 — bright white-purple center glow */
.voice-orb-blob-4 {
    width: 42px;
    height: 42px;
    background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, #c4b5fd 40%, #8b5cf6 100%);
    opacity: 1;
    filter: blur(2px);
    animation: siri-blob-4 5s ease-in-out infinite;
}

/* ========================
   IDLE blob morph animations
   ======================== */
@keyframes siri-blob-1 {
    0%, 100% {
        border-radius: 50%;
        transform: translate(0, 0) scale(1);
    }
    25% {
        border-radius: 42% 58% 55% 45% / 55% 42% 58% 45%;
        transform: translate(3px, -2px) scale(1.04);
    }
    50% {
        border-radius: 55% 45% 42% 58% / 45% 58% 42% 55%;
        transform: translate(-2px, 3px) scale(0.97);
    }
    75% {
        border-radius: 45% 55% 58% 42% / 58% 45% 55% 42%;
        transform: translate(1px, -1px) scale(1.02);
    }
}

@keyframes siri-blob-2 {
    0%, 100% {
        border-radius: 50%;
        transform: translate(0, 0) scale(1);
    }
    33% {
        border-radius: 58% 42% 48% 52% / 42% 55% 45% 58%;
        transform: translate(-4px, 2px) scale(1.05);
    }
    66% {
        border-radius: 42% 58% 52% 48% / 55% 42% 58% 45%;
        transform: translate(3px, -3px) scale(0.96);
    }
}

@keyframes siri-blob-3 {
    0%, 100% {
        border-radius: 50%;
        transform: translate(0, 0) scale(1);
    }
    33% {
        border-radius: 48% 52% 56% 44% / 52% 46% 54% 48%;
        transform: translate(2px, 4px) scale(1.03);
    }
    66% {
        border-radius: 54% 46% 44% 56% / 46% 54% 48% 52%;
        transform: translate(-3px, -2px) scale(0.98);
    }
}

@keyframes siri-blob-4 {
    0%, 100% {
        border-radius: 50%;
        transform: scale(1);
    }
    50% {
        border-radius: 46% 54% 52% 48% / 54% 48% 52% 46%;
        transform: scale(1.08);
    }
}

/* ========================
   ACTIVE STATE — listening
   Blobs get bigger, move more, colors intensify
   ======================== */
.voice-orb.voice-orb-active {
    filter: saturate(1.4) brightness(1.1);
}

.voice-orb.voice-orb-active .voice-orb-blob-1 {
    width: 104px;
    height: 104px;
    opacity: 1;
    filter: blur(3px);
    animation: siri-active-1 2.5s ease-in-out infinite;
}

.voice-orb.voice-orb-active .voice-orb-blob-2 {
    width: 84px;
    height: 84px;
    opacity: 1;
    filter: blur(2px);
    animation: siri-active-2 2s ease-in-out infinite;
}

.voice-orb.voice-orb-active .voice-orb-blob-3 {
    width: 80px;
    height: 80px;
    opacity: 1;
    filter: blur(2px);
    animation: siri-active-3 2.2s ease-in-out infinite;
}

.voice-orb.voice-orb-active .voice-orb-blob-4 {
    width: 52px;
    height: 52px;
    opacity: 1;
    filter: blur(2px);
    background: radial-gradient(circle, rgba(255,255,255,1) 0%, #c4b5fd 50%, #8b5cf6 100%);
    animation: siri-active-4 1.5s ease-in-out infinite;
}

@keyframes siri-active-1 {
    0%, 100% {
        border-radius: 50%;
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        border-radius: 38% 62% 55% 45% / 60% 38% 62% 40%;
        transform: translate(6px, -4px) scale(1.06) rotate(5deg);
    }
    50% {
        border-radius: 60% 40% 38% 62% / 40% 62% 38% 60%;
        transform: translate(-5px, 5px) scale(0.94) rotate(-3deg);
    }
    75% {
        border-radius: 42% 58% 62% 38% / 58% 40% 60% 42%;
        transform: translate(4px, -3px) scale(1.04) rotate(2deg);
    }
}

@keyframes siri-active-2 {
    0%, 100% {
        border-radius: 50%;
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        border-radius: 62% 38% 45% 55% / 38% 60% 40% 62%;
        transform: translate(-7px, 3px) scale(1.08) rotate(-6deg);
    }
    66% {
        border-radius: 38% 62% 55% 45% / 62% 38% 60% 40%;
        transform: translate(6px, -5px) scale(0.93) rotate(4deg);
    }
}

@keyframes siri-active-3 {
    0%, 100% {
        border-radius: 50%;
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        border-radius: 45% 55% 60% 40% / 55% 42% 58% 45%;
        transform: translate(5px, 6px) scale(1.06) rotate(4deg);
    }
    66% {
        border-radius: 58% 42% 40% 60% / 42% 58% 45% 55%;
        transform: translate(-6px, -4px) scale(0.95) rotate(-5deg);
    }
}

@keyframes siri-active-4 {
    0%, 100% {
        border-radius: 50%;
        transform: scale(1);
    }
    50% {
        border-radius: 40% 60% 58% 42% / 60% 42% 58% 40%;
        transform: scale(1.12);
    }
}

/* === Auth blur on landing page === */
.auth-blur {
    filter: blur(8px) brightness(0.85);
    pointer-events: none;
    transition: filter 0.4s ease;
}

/* === Modal Overlay === */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(7, 30, 39, 0.72);
    backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    padding: 16px;
}

/* Auth modal — lighter overlay so blurred landing shows through */
#auth-modal.modal-overlay {
    background: rgba(7, 30, 39, 0.35);
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    display: flex;
}

/* === Toggle Switch === */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.toggle-switch input { opacity: 0; width: 0; height: 0; }

.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #c2c6d4;
    border-radius: 24px;
    transition: 0.3s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
}

input:checked + .toggle-slider { background-color: #006a6a; }
input:checked + .toggle-slider:before { transform: translateX(20px); }

/* === Toast === */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: #1e333c;
    color: white;
    padding: 10px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    z-index: 2000;
    box-shadow: 0 12px 32px rgba(7, 30, 39, 0.15);
    transition: opacity 0.3s;
}

.toast.hidden { opacity: 0; pointer-events: none; }

/* === History Items === */
.history-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.history-item:hover { background: rgba(255, 255, 255, 0.5); }

.badge {
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.badge.pass { background: #8cf3f3; color: #004f4f; }
.badge.fail { background: #ffdad6; color: #93000a; }

.score-bars .bar {
    flex: 1;
    min-height: 4px;
    border-radius: 2px;
    transition: height 0.3s;
}

/* === Tier Badges === */
.tier-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.6;
    white-space: nowrap;
}

.tier-free {
    background: #e0e3ea;
    color: #424752;
}

.tier-pro {
    background: linear-gradient(135deg, #005eb8 0%, #00478d 100%);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 94, 184, 0.25);
}

.tier-ultra {
    background: linear-gradient(135deg, #c8902e 0%, #a67521 100%);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(200, 144, 46, 0.3);
}

.tier-super {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
}

/* === Upgrade Modal === */
.upgrade-tier-card {
    border: 1px solid rgba(194, 198, 212, 0.25);
    border-radius: 18px;
    padding: 24px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}

.upgrade-tier-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(7, 30, 39, 0.08);
}

.upgrade-tier-card-featured {
    background: linear-gradient(160deg, #0b3a6a 0%, #005eb8 100%);
    color: #ffffff;
    box-shadow: 0 16px 40px rgba(0, 94, 184, 0.18);
    border-color: transparent;
    position: relative;
    overflow: visible;
}

.upgrade-tier-card-super {
    background: linear-gradient(160deg, #5b21b6 0%, #7c3aed 100%);
    color: #ffffff;
    box-shadow: 0 16px 40px rgba(124, 58, 237, 0.18);
    border-color: transparent;
}

.upgrade-tier-header {
    margin-bottom: 16px;
}

.upgrade-tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex: 1;
}

.upgrade-tier-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    padding: 6px 0;
    opacity: 0.9;
}

.upgrade-tier-btn {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.upgrade-tier-btn-current {
    background: #e0e3ea;
    color: #424752;
    cursor: default;
}

.upgrade-tier-btn-upgrade {
    background: linear-gradient(135deg, #0b3a6a 0%, #005eb8 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 94, 184, 0.2);
}

.upgrade-tier-card-featured .upgrade-tier-btn-upgrade {
    background: #ffffff;
    color: #005eb8;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.upgrade-tier-btn-upgrade:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* === Landing pricing 3-col === */
.landing-pricing-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.landing-pricing-grid.four-col {
    grid-template-columns: repeat(4, 1fr);
}

.landing-price-card.ultra {
    background: linear-gradient(160deg, #a67521 0%, #c8902e 100%);
    color: #ffffff;
    box-shadow: 0 16px 40px rgba(200, 144, 46, 0.18);
}

.landing-price-card.super {
    background: linear-gradient(160deg, #5b21b6 0%, #7c3aed 100%);
    color: #ffffff;
    box-shadow: 0 16px 40px rgba(124, 58, 237, 0.18);
}

.promo-hint {
    font-size: 11px;
    opacity: 0.7;
    margin-top: 10px;
    text-align: center;
}

.pricing-popular-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 9999px;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}

@media (max-width: 980px) {
    .landing-pricing-grid.three-col { grid-template-columns: 1fr; }
    .landing-pricing-grid.four-col { grid-template-columns: 1fr 1fr; }
}

/* ============================================= */
/* === Performance Analytics Page             === */
/* ============================================= */

.analytics-search-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #eef4fb;
    border: 1px solid rgba(194, 198, 212, 0.3);
    border-radius: 9999px;
    padding: 8px 14px;
    min-width: 220px;
}

.analytics-search-input {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    color: #424752;
    font-size: 13px;
}
.analytics-search-input::placeholder { color: #8b92a1; }

.analytics-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 9999px;
    border: 1px solid rgba(194, 198, 212, 0.3);
    background: #f8fbff;
    color: #4c5664;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}
.analytics-icon-btn:hover { background: #eef7ff; }

/* KPI Cards */
.analytics-kpi-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(194, 198, 212, 0.2);
    transition: box-shadow 0.2s;
}
.analytics-kpi-card:hover {
    box-shadow: 0 4px 20px rgba(7, 30, 39, 0.06);
}

/* Card panels */
.analytics-card-panel {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(194, 198, 212, 0.2);
}

/* Pill badge */
.analytics-pill-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    border-radius: 9999px;
    background: #eef7ff;
    color: #00478d;
    font-size: 11px;
    font-weight: 700;
}

/* Chart container */
.analytics-chart-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.analytics-chart-container svg {
    display: block;
}

/* AI Insight card */
.analytics-insight-card {
    background: linear-gradient(160deg, #0b3a6a 0%, #005eb8 100%);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.analytics-insight-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}
.analytics-insight-link:hover { color: #ffffff; }

/* Filter tabs */
.analytics-filter-tabs {
    display: flex;
    gap: 2px;
    background: #eef4fb;
    border-radius: 10px;
    padding: 3px;
}

.analytics-filter-tab {
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #727783;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}
.analytics-filter-tab.active {
    background: #ffffff;
    color: #00478d;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.analytics-filter-tab:hover:not(.active) { color: #424752; }

.analytics-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    border-radius: 10px;
    border: 1px solid rgba(194, 198, 212, 0.3);
    background: #ffffff;
    color: #424752;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.analytics-filter-btn:hover { background: #eef7ff; }

/* Analytics table */
.analytics-table {
    width: 100%;
    border-collapse: collapse;
}

.analytics-table thead th {
    padding: 12px 16px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    color: #727783;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid rgba(194, 198, 212, 0.2);
}

.analytics-table tbody td {
    padding: 14px 16px;
    font-size: 13px;
    color: #424752;
    border-bottom: 1px solid rgba(194, 198, 212, 0.1);
    vertical-align: middle;
}

.analytics-table tbody tr:hover {
    background: #f8fbff;
}

.analytics-table tbody tr:last-child td {
    border-bottom: none;
}

.analytics-status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.analytics-status-badge.pass {
    background: rgba(0, 106, 106, 0.12);
    color: #006a6a;
}
.analytics-status-badge.fail {
    background: rgba(186, 26, 26, 0.1);
    color: #ba1a1a;
}

.analytics-view-report {
    color: #00478d;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}
.analytics-view-report:hover { text-decoration: underline; }

/* Pagination buttons */
.analytics-page-btn {
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid rgba(194, 198, 212, 0.3);
    background: #ffffff;
    color: #424752;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.analytics-page-btn:hover:not(:disabled) { background: #eef7ff; color: #00478d; }
.analytics-page-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* SVG chart styles */
.analytics-chart-grid-line {
    stroke: rgba(194, 198, 212, 0.25);
    stroke-width: 1;
}
.analytics-chart-label {
    fill: #727783;
    font-size: 10px;
    font-family: 'Inter', sans-serif;
}

/* Responsive */
@media (max-width: 980px) {
    .analytics-search-wrap { min-width: 140px; }
    .analytics-filter-tabs { flex-wrap: wrap; }
    .analytics-insight-card { min-height: 200px; }
}

/* AI Streaming Cursor */
.streaming::after {
    content: '▊';
    display: inline-block;
    margin-left: 2px;
    vertical-align: middle;
    color: #00478d;
    animation: blink 0.8s step-end infinite;
}

@keyframes blink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

/* ── CRO: Hero Rotating Headline ──────────────────────────────────── */
.hero-rotate-wrap {
    display: block;
    height: 1.25em;
    overflow: hidden;
    margin-top: 6px;
    position: relative;
    z-index: 1;
}
.hero-rotate-track {
    display: block;
    animation: heroLineRotate 12s linear infinite;
}
.hero-rotate-track span {
    display: block;
    height: 1.25em;
    line-height: 1.25;
    color: #005eb8;
    white-space: nowrap;
}
@keyframes heroLineRotate {
    0%, 18%   { transform: translateY(0); }
    20%, 38%  { transform: translateY(-20%); }
    40%, 58%  { transform: translateY(-40%); }
    60%, 78%  { transform: translateY(-60%); }
    80%, 100% { transform: translateY(-80%); }
}

/* ── CRO: Old Way vs New Way Comparison ───────────────────────────── */
.landing-comparison {
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 32px 72px;
}
.landing-comparison-inner {
    text-align: center;
    margin-bottom: 48px;
}
.landing-comparison-inner h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 900;
    font-size: 36px;
    color: #0b3a6a;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin: 0 0 12px;
}
.landing-comparison-inner p {
    font-size: 16px;
    color: #5c6573;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}
.landing-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}
.comparison-col {
    border-radius: 20px;
    padding: 36px 32px;
}
.comparison-col.old-way {
    background: #f6f7fa;
    border: 1px solid #e2e5ec;
    filter: grayscale(0.2);
}
.comparison-col.new-way {
    background: linear-gradient(148deg, #eef7ff 0%, #f5f0ff 100%);
    border: 2px solid rgba(0, 94, 184, 0.22);
    box-shadow: 0 12px 48px rgba(0, 94, 184, 0.12);
}
.comparison-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 14px;
}
.old-way .comparison-label {
    background: #e4e7ef;
    color: #6c757d;
}
.new-way .comparison-label {
    background: rgba(0, 94, 184, 0.11);
    color: #005eb8;
}
.comparison-col h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 22px;
    margin: 0 0 6px;
}
.old-way h3 { color: #6c757d; }
.new-way h3 { color: #0b3a6a; }
.comparison-price {
    font-family: 'Manrope', sans-serif;
    font-weight: 900;
    font-size: 30px;
    margin: 0 0 26px;
}
.old-way .comparison-price { color: #c0392b; }
.new-way .comparison-price { color: #005eb8; }
.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
}
.old-way .comparison-list li { color: #6c757d; }
.new-way .comparison-list li { color: #1e3a5f; font-weight: 500; }
.comparison-list li .material-symbols-outlined {
    font-size: 19px;
    flex-shrink: 0;
    margin-top: 1px;
}
.old-way .comparison-list li .material-symbols-outlined { color: #adb5bd; }
.new-way .comparison-list li .material-symbols-outlined { color: #005eb8; }
.comparison-col-cta {
    display: block;
    margin-top: 28px;
    width: 100%;
    text-align: center;
}

/* ── CRO: Super Dominant Pricing ──────────────────────────────────── */
.landing-price-card.super {
    transform: scale(1.04);
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 64px rgba(107, 33, 168, 0.22);
}
.pricing-dominant-badge {
    display: inline-block;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 14px;
    border-radius: 8px;
    margin-bottom: 8px;
}

@media (max-width: 700px) {
    .landing-comparison-grid { grid-template-columns: 1fr; }
    .landing-comparison-inner h2 { font-size: 26px; }
    .landing-price-card.super { transform: scale(1); }
}

/* ============================================================ */
/* === CRO Additions: Social Proof & Conversion Sections     === */
/* ============================================================ */

/* ── Section A: Social Proof Stats Strip ───────────────────── */
.landing-stats-strip {
    background: #ffffff;
    border-top: 1px solid rgba(194, 198, 212, 0.25);
    border-bottom: 1px solid rgba(194, 198, 212, 0.25);
}
.landing-stats-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 22px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.landing-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 48px;
    text-align: center;
    flex: 1 1 150px;
}
.landing-stat-value {
    font-family: 'Manrope', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: #0b3a6a;
    letter-spacing: -0.03em;
    line-height: 1;
}
.landing-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: #727783;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
.landing-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(194, 198, 212, 0.4);
    flex-shrink: 0;
}

/* ── Section B: Testimonials ────────────────────────────────── */
.landing-testimonials {
    background: #f3faff;
    max-width: 100% !important;
    padding: 0 !important;
}
.landing-testimonials > .landing-chip,
.landing-testimonials > h2,
.landing-testimonials > p {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}
.landing-testimonials > .landing-chip {
    display: block;
    padding-top: 58px;
    margin-bottom: 0;
}
.landing-testimonials > h2 {
    padding-top: 12px;
}
.landing-testimonials > p {
    padding-bottom: 0;
}
.landing-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1180px;
    margin: 28px auto 58px;
    padding: 0 32px;
    text-align: left;
}
.landing-testimonial-card {
    background: #ffffff;
    border: 1px solid rgba(194, 198, 212, 0.3);
    border-radius: 20px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.15s, box-shadow 0.15s;
}
.landing-testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 71, 141, 0.08);
}
.landing-testimonial-stars {
    display: flex;
    gap: 2px;
}
.landing-testimonial-stars .material-symbols-outlined {
    font-size: 17px;
    color: #f59e0b;
}
.landing-testimonial-quote {
    font-size: 13.5px;
    color: #3a4452;
    line-height: 1.78;
    margin: 0;
    font-style: italic;
    flex: 1;
}
.landing-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(194, 198, 212, 0.25);
    margin-top: auto;
}
.landing-testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-weight: 900;
    font-size: 13px;
    color: #ffffff;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}
.landing-testimonial-name {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 13px;
    color: #0b3a6a;
    margin: 0 0 3px;
}
.landing-testimonial-role {
    font-size: 11px;
    color: #727783;
    margin: 0;
    line-height: 1.5;
}

/* ── Section C: FAQ Accordion ───────────────────────────────── */
.landing-faq {
    text-align: left;
}
.landing-faq-list {
    max-width: 780px;
    margin: 32px auto 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.landing-faq-item {
    background: #ffffff;
    border: 1px solid rgba(194, 198, 212, 0.35);
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.landing-faq-item[open] {
    box-shadow: 0 4px 18px rgba(0, 71, 141, 0.07);
    border-color: rgba(0, 94, 184, 0.25);
}
.landing-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #0b3a6a;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background 0.15s;
}
.landing-faq-question::-webkit-details-marker { display: none; }
.landing-faq-question::marker { display: none; content: ''; }
.landing-faq-question:hover { background: rgba(0, 94, 184, 0.03); }
.landing-faq-icon {
    font-size: 20px;
    color: #005eb8;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.landing-faq-item[open] .landing-faq-icon { transform: rotate(180deg); }
.landing-faq-answer {
    padding: 0 22px 20px;
    border-top: 1px solid rgba(194, 198, 212, 0.2);
}
.landing-faq-answer p {
    margin: 16px 0 0;
    font-size: 13px;
    color: #4c5664;
    line-height: 1.8;
}
.landing-faq-answer strong { color: #0b3a6a; font-weight: 700; }

/* ── Section D: Blog Preview Strip ─────────────────────────── */
.landing-blog-preview {
    background: #ffffff;
    max-width: 100% !important;
    padding: 58px 32px !important;
    border-top: 1px solid rgba(194, 198, 212, 0.25);
    border-bottom: 1px solid rgba(194, 198, 212, 0.25);
}
.landing-blog-preview > h2,
.landing-blog-preview > p {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}
.landing-blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1180px;
    margin: 28px auto 0;
    text-align: left;
}
.landing-blog-card {
    background: #f3faff;
    border: 1px solid rgba(194, 198, 212, 0.3);
    border-radius: 18px;
    padding: 26px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.landing-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0, 71, 141, 0.1);
    border-color: rgba(0, 94, 184, 0.3);
}
.landing-blog-card-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #005eb8;
    background: rgba(0, 94, 184, 0.09);
    padding: 4px 10px;
    border-radius: 6px;
    width: fit-content;
}
.landing-blog-card h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: #0b3a6a;
    margin: 0;
    line-height: 1.4;
}
.landing-blog-card p {
    font-size: 13px;
    color: #5c6573;
    line-height: 1.75;
    margin: 0;
    flex: 1;
}
.landing-blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #005eb8;
    transition: gap 0.15s;
}
.landing-blog-card:hover .landing-blog-card-link { gap: 8px; }
.landing-blog-card-link .material-symbols-outlined { font-size: 15px; }
.landing-blog-preview-cta {
    max-width: 1180px;
    margin: 32px auto 0;
    text-align: center;
}
.landing-blog-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border: 2px solid rgba(0, 94, 184, 0.3);
    border-radius: 14px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #005eb8;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
    cursor: pointer;
    background: transparent;
}
.landing-blog-all-link:hover {
    background: rgba(0, 94, 184, 0.05);
    border-color: rgba(0, 94, 184, 0.5);
}
.landing-blog-all-link .material-symbols-outlined { font-size: 18px; }

/* ── Responsive overrides for new sections ──────────────────── */
@media (max-width: 980px) {
    .landing-testimonials-grid { grid-template-columns: 1fr; max-width: 540px; }
    .landing-blog-preview-grid { grid-template-columns: 1fr; max-width: 520px; }
}
@media (max-width: 600px) {
    .landing-stat-item { padding: 10px 20px; }
    .landing-stat-divider { display: none; }
    .landing-stat-value { font-size: 22px; }
    .landing-testimonials-grid, .landing-blog-preview-grid { padding: 0 20px; }
    .landing-testimonials > .landing-chip,
    .landing-testimonials > h2,
    .landing-testimonials > p { padding-left: 20px; padding-right: 20px; }
    .landing-faq-question { font-size: 13px; padding: 15px 16px; }
    .landing-faq-answer { padding: 0 16px 16px; }
    .landing-blog-preview { padding: 44px 20px !important; }
}

/* ============================================================ */
/* === GLOBAL MOBILE RESPONSIVE (App Shell + Modals)         === */
/* ============================================================ */

@media (max-width: 768px) {

    /* ── Sidebar: off-canvas slide-in ─────────────────────── */
    .sidebar-panel {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        z-index: 200;
        transform: translateX(-100%);
        box-shadow: none;
    }
    .sidebar-panel.sidebar-open {
        transform: translateX(0);
        box-shadow: 4px 0 32px rgba(7, 30, 39, 0.18);
    }

    /* ── Hamburger: visible on mobile ─────────────────────── */
    .sidebar-hamburger { display: flex; }

    /* ── App header: compact ──────────────────────────────── */
    #simulator-header {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    /* Hide verbose header items on mobile — keep only hamburger, lobby btn, timer */
    #simulator-header .header-separator,
    #simulator-header [id="station-phase-label"],
    #simulator-header [id="main-title"],
    #agent-status { display: none !important; }
    /* Hide separator dividers on mobile */
    #simulator-header > div > .w-px { display: none !important; }
    /* Keep timer visible */
    #timer-container { padding: 4px 10px !important; }

    /* ── Landing page hero inside app: compact ────────────── */
    .landing-hero { padding: 36px 20px 24px; gap: 28px; }
    .landing-hero h1 { font-size: 28px; }
    .landing-section { padding: 40px 20px; }
    .landing-comparison { padding: 40px 20px 48px; }
    .landing-navbar { padding: 14px 20px; }
    .landing-cta-row { flex-direction: column; gap: 10px; }
    .landing-cta-row .landing-primary-btn,
    .landing-cta-row .landing-ghost-btn { width: 100%; text-align: center; }
    .landing-cta { padding: 40px 20px; }
    .landing-cta h2 { font-size: 26px; }
    .landing-stats-inner { padding: 16px 20px; }
    .landing-pricing-grid.four-col { grid-template-columns: 1fr !important; }
    .landing-price-card.super { transform: scale(1) !important; }
    .landing-comparison-grid { grid-template-columns: 1fr !important; }

    /* ── Upgrade modal: full-width scrollable ─────────────── */
    #upgrade-modal > div {
        margin: 8px !important;
        max-width: calc(100vw - 16px) !important;
        max-height: calc(100vh - 16px) !important;
        overflow-y: auto !important;
        border-radius: 20px !important;
    }
    #upgrade-modal .landing-pricing-grid.four-col {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }
    #upgrade-modal > div > div:first-child {
        padding: 20px 20px 16px !important;
    }
    #upgrade-modal > div > div:last-child {
        padding: 16px 20px 20px !important;
    }
}

@media (max-width: 480px) {

    /* ── Auth modal: single column, right panel only ───────── */
    #auth-modal > div {
        display: block !important;
        margin: 12px !important;
        max-width: calc(100vw - 24px) !important;
        border-radius: 20px !important;
        max-height: calc(100vh - 24px);
        overflow-y: auto;
    }
    /* Hide the left marketing panel on small phones (button is first child, left section is 2nd) */
    #auth-modal > div > section:nth-child(2) {
        display: none !important;
    }
    /* Right sign-in panel takes full width */
    #auth-modal > div > section:nth-child(3) {
        padding: 32px 24px !important;
        grid-column: span 12 !important;
    }

    /* ── Upgrade modal: single column + scrollable on small phones ── */
    #upgrade-modal {
        align-items: flex-start !important;
        overflow-y: auto !important;
        padding: 12px !important;
    }
    #upgrade-modal > div {
        max-height: none !important;
        overflow-y: visible !important;
        margin: 0 !important;
        width: 100% !important;
    }
    #upgrade-modal .landing-pricing-grid.four-col {
        grid-template-columns: 1fr !important;
    }
} /* end @media (max-width: 480px) */

/* ── Browser Recommendation Banner ────────────────────── */
.browser-banner {
    position: relative;
    width: 100%;
    background: linear-gradient(90deg, #ff6f00 0%, #ffa000 100%);
    border-left: 4px solid #fff3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 9px 44px 9px 16px;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(230,92,0,0.30);
    z-index: 50;
}
.browser-banner.hidden { display: none !important; }

.browser-banner-track {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 10px;
}

.browser-banner-content {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #fff;
    text-align: center;
    line-height: 1.4;
}
.browser-banner-content strong {
    font-weight: 800;
    background: rgba(255,255,255,0.22);
    padding: 1px 7px;
    border-radius: 5px;
    letter-spacing: 0.01em;
}
.browser-banner-icon { font-size: 16px; flex-shrink: 0; }

/* Pulsing dot to draw attention */
.browser-banner-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    flex-shrink: 0;
    animation: bannerDotPulse 1.8s ease-in-out infinite;
}
@keyframes bannerDotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.6); }
}

.browser-banner-close {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.18);
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    flex-shrink: 0;
}
.browser-banner-close:hover { background: rgba(0,0,0,0.38); }

@media (max-width: 600px) {
    .browser-banner { padding: 8px 40px 8px 12px; }
    .browser-banner-content { font-size: 11.5px; }
}

/* Promo Banner */
.promo-banner {
    position: relative;
    width: 100%;
    background: #1e0a3c;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 48px 9px 16px;
    flex-shrink: 0;
    z-index: 50;
}
.promo-banner.hidden { display: none !important; }

.promo-banner-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.promo-banner-dot { display: none; }

.promo-banner-content {
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.01em;
}
.promo-banner-content strong {
    font-weight: 600;
    color: #fff;
}
.promo-banner-code {
    display: inline-block;
    font-family: 'Manrope', monospace;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: #a78bfa;
    background: rgba(167,139,250,0.12);
    border: 1px solid rgba(167,139,250,0.3);
    padding: 1px 8px;
    border-radius: 4px;
}

/* Countdown timer */
.promo-banner-timer {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}
.promo-timer-block {
    display: inline-flex;
    align-items: baseline;
    gap: 1px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.03em;
    min-width: 28px;
    justify-content: center;
}
.promo-timer-block small {
    font-size: 9px;
    font-weight: 500;
    opacity: 0.6;
    margin-left: 1px;
}
.promo-timer-sep {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.25);
}

/* Close button */
.promo-banner-close {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    border-radius: 4px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s;
    flex-shrink: 0;
}
.promo-banner-close:hover { color: #fff; }

/* Mobile */
@media (max-width: 600px) {
    .promo-banner { padding: 7px 36px 7px 12px; }
    .promo-banner-track { flex-wrap: nowrap; }
    .promo-banner-content { font-size: 10.5px; white-space: nowrap; }
    .promo-banner-code { font-size: 10px; padding: 1px 5px; letter-spacing: 0.05em; }
    .promo-banner-timer { display: none; }
}

/* ── Browser Notice Popup ─────────────────────────────── */
#browser-notice-popup.modal-overlay.active {
    display: flex;
    z-index: 1100;
}
.browser-notice-card {
    background: #fff;
    border-radius: 20px;
    border-top: 3px solid transparent;
    border-image: linear-gradient(135deg, #00478d, #005eb8) 1;
    border-image-slice: 1;
    box-shadow: 0 24px 80px rgba(0, 71, 141, 0.18), 0 0 0 1px rgba(0, 71, 141, 0.06);
    padding: 40px 36px 32px;
    max-width: 380px;
    width: calc(100% - 32px);
    text-align: center;
    animation: noticePopIn 0.3s ease-out;
    overflow: hidden;
    position: relative;
}
.browser-notice-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(135deg, #00478d, #005eb8);
    border-radius: 20px 20px 0 0;
}
@keyframes noticePopIn {
    from { opacity: 0; transform: scale(0.92) translateY(8px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
.browser-notice-logo {
    max-width: 140px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto 12px;
}
.browser-notice-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: #00478d;
    margin: 0 0 10px;
}
.browser-notice-text {
    font-size: 14px;
    color: #5c6573;
    line-height: 1.6;
    margin: 0 0 24px;
}
.browser-notice-text strong {
    color: #00478d;
    font-weight: 700;
}
.browser-notice-btn {
    background: linear-gradient(135deg, #00478d, #005eb8);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 13px 44px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 14px rgba(0, 71, 141, 0.25);
}
.browser-notice-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0, 71, 141, 0.35); }

/* Hero: phone-optimized */
@media (max-width: 480px) {
    .landing-hero { padding: 28px 16px 20px; }
    .landing-hero h1 { font-size: 24px; }
    .landing-hero-card { display: block; aspect-ratio: 16 / 9; border-radius: 14px; margin-top: 4px; }
    .landing-section { padding: 32px 16px; }
    .landing-navbar { padding: 12px 16px; }
    .landing-auth .landing-login { display: none; }
    .comparison-col { padding: 24px 20px; }
    .landing-comparison-inner h2 { font-size: 22px; }
    .landing-comparison { padding: 32px 16px 40px; }
    .landing-stats-inner { padding: 14px 16px; }
    .landing-faq-list { margin: 20px 0 0; }
    .landing-blog-preview { padding: 36px 16px !important; }
    .landing-testimonials-grid, .landing-blog-preview-grid { padding: 0 16px; }
    .landing-cta h2 { font-size: 22px; }
    .blog-cta-banner { padding: 28px 20px; }
    .blog-cta-banner h3 { font-size: 20px; }
}


