/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 15px;
    font-family: var(--font-body);
    transition: all 0.28s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer;
    text-decoration: none;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    gap: 8px;
    white-space: nowrap;
    letter-spacing: -0.01em;
    line-height: 1;
    outline: none;
}

.btn:focus-visible {
    outline: 2px solid rgba(99, 102, 241, 0.8);
    outline-offset: 2px;
    border-radius: 9999px;
    box-shadow: 0 0 0 3px rgba(99,102,241,0.65);
}

.btn-primary {
    background: var(--gradient-brand);
    color: #ffffff;
    box-shadow: 0 0 28px rgba(99,102,241,0.38);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 40px rgba(99,102,241,0.6);
}

.btn-primary:active {
    transform: translateY(0) scale(1);
}

/* Shimmer sweep on primary hover */
.btn-primary::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -75%;
    width: 35%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
    opacity: 0;
    transition: left 0.6s ease, opacity 0.3s ease;
}

.btn-primary:hover::after {
    left: 140%;
    opacity: 1;
}

.btn-secondary {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    color: #ffffff;
    backdrop-filter: blur(var(--btn-blur));
    -webkit-backdrop-filter: blur(var(--btn-blur));
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.22);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: rgba(255,255,255,0.72);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.06);
    color: #ffffff;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 17px;
    font-weight: 700;
}

.btn-full-width {
    width: 100%;
}

/* ─── Glass Panel — defined in main.css ──────────────────────── */

/* ─── Panel (content card with padding) ──────────────────────── */
.panel {
    padding: 32px;
}

@media (max-width: 768px) {
    .panel { padding: 24px; }
}

.panel-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    line-height: 1.3;
    font-family: var(--font-display);
}

.panel-glow {
    border-color: rgba(99,102,241,0.3) !important;
    box-shadow: 0 0 40px rgba(99,102,241,0.08), inset 0 1px 0 rgba(255,255,255,0.06);
}

.panel-success {
    border-color: rgba(34,197,94,0.15);
    background: rgba(34,197,94,0.02);
}

.panel-danger {
    border-color: rgba(239,68,68,0.14);
    background: rgba(239,68,68,0.02);
}

/* ─── Feature Cards ──────────────────────────────────────────── */
.feature-card {
    display: flex;
    flex-direction: column;
    padding: 32px 28px 28px;
    gap: 0;
    transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
    cursor: default;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99,102,241,0.28) !important;
    box-shadow: 0 24px 64px rgba(99,102,241,0.14),
                0 0 0 0.5px rgba(99,102,241,0.18);
}

/* Icon container — square, centered, with visual weight */
.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(99,102,241,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 1px solid rgba(99,102,241,0.18);
    margin-bottom: 20px;
    flex-shrink: 0;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    line-height: 1;
}

.feature-card:hover .feature-icon {
    background: rgba(99,102,241,0.18);
    border-color: rgba(99,102,241,0.35);
    transform: scale(1.06) rotate(-2deg);
}

/* Card title */
.feature-card .panel-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    line-height: 1.25;
}

/* Card description */
.feature-card .text-dim {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255,255,255,0.65);
    flex-grow: 1;
}

/* Bullets */
.feature-bullets {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.feature-bullets li {
    font-size: 13px;
    color: rgba(255,255,255,0.42);
    font-weight: 500;
    line-height: 1.5;
    padding-left: 2px;
}

/* ─── Problem/Solution Lists ─────────────────────────────────── */
.problem-list,
.solution-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 8px;
}

.problem-list li,
.solution-list li {
    font-size: 15px;
    line-height: 1.55;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.problem-list li { color: rgba(255,255,255,0.70); }
.solution-list li { color: rgba(255,255,255,0.90); }

.problem-list li:last-child,
.solution-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* ─── Pricing Cards ──────────────────────────────────────────── */
.pricing-card {
    display: flex;
    flex-direction: column;
    padding: 36px 28px 28px;
    height: 100%;
    transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
    cursor: default;
    position: relative;
}

.pricing-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(99,102,241,0.07) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: inherit;
}

.pricing-card:hover::before { opacity: 1; }

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99,102,241,0.35) !important;
}

.pricing-card.featured {
    border-color: rgba(99,102,241,0.45) !important;
    background: linear-gradient(160deg, rgba(99,102,241,0.10) 0%, rgba(10,10,22,0.60) 65%) !important;
    transform: translateY(-4px);
    box-shadow:
        0 0 0 1px rgba(99,102,241,0.3),
        0 28px 80px rgba(99,102,241,0.20);
}

.pricing-card.featured:hover {
    transform: translateY(-9px);
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 16px;
    background: var(--gradient-brand);
    border-radius: 9999px;
    color: #fff;
    box-shadow: 0 4px 16px rgba(99,102,241,0.45);
}

.tier-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.70);
    margin-bottom: 12px;
}

.price {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.1;
}

.price-original {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    text-decoration: line-through;
    margin-bottom: 2px;
}

.price-discounted {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.1;
}

.target {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 24px;
    line-height: 1.5;
    min-height: 48px;
}

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-grow: 1;
    margin-bottom: 32px;
}

.pricing-list li {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.45;
}

.pricing-card .btn {
    width: 100%;
    margin-top: auto;
}

/* ─── Spots Counter (Pricing) ─────────────────────────────────── */
.spots-counter-mini {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 9999px;
    font-size: 13px;
    color: #fbbf24;
    font-weight: 600;
    margin-bottom: 16px;
}

.spots-pulse-mini {
    width: 8px;
    height: 8px;
    background: #fbbf24;
    border-radius: 50%;
    animation: spots-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes spots-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.4); }
    50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(251, 191, 36, 0); }
}

/* ─── Testimonial Cards ───────────────────────────────────────── */
.testimonial-card {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card .stars {
    font-size: 15px;
    letter-spacing: 2px;
}

.quote {
    font-size: 15px;
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
    flex-grow: 1;
    font-style: italic;
}

.quote::before { content: '"'; }
.quote::after  { content: '"'; }

.avatar-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.avatar-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.avatar-info .name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.avatar-info .role {
    font-size: 12px;
    color: rgba(255,255,255,0.42);
}

/* ─── FAQ Accordion ──────────────────────────────────────────── */
.faq-accordion {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.faq-item:last-child { border-bottom: none; }

.faq-trigger {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background 0.2s ease, color 0.2s ease;
    outline: none;
}

.faq-trigger:focus-visible {
    outline: 2px solid rgba(99, 102, 241, 0.8);
    outline-offset: -2px;
    border-radius: 8px;
    background: rgba(99,102,241,0.05);
    box-shadow: inset 0 0 0 2px rgba(99,102,241,0.65);
}

.faq-trigger::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    color: rgba(99,102,241,0.7);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.active .faq-trigger::after {
    transform: rotate(45deg);
}

.faq-trigger:hover {
    background: rgba(255,255,255,0.03);
    color: #fff;
}

.faq-item.active .faq-trigger {
    color: #fff;
    background: rgba(99,102,241,0.05);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    font-size: 15px;
    color: rgba(255,255,255,0.58);
    line-height: 1.72;
    opacity: 0;
    transition:
        max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease;
}

/* ─── Contact Form ───────────────────────────────────────────── */
.contact-form-wrapper {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px;
}

@media (max-width: 640px) {
    .contact-form-wrapper { padding: 28px 20px; }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.60);
    letter-spacing: 0.02em;
}

.form-input {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    color: #fff;
    padding: 13px 16px;
    border-radius: 12px;
    font-size: 15px;
    font-family: var(--font-body);
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-input::placeholder { color: rgba(255,255,255,0.25); }

.form-input:hover {
    border-color: rgba(255,255,255,0.16);
}

.form-input:focus {
    border-color: rgba(99,102,241,0.65);
    background: rgba(99,102,241,0.05);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.12);
}

select.form-input {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.4)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

select.form-input option {
    background: #13131f;
    color: #fff;
}

textarea.form-input {
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
}

/* ─── Form Success State ─────────────────────────────────────── */
.form-success-message {
    text-align: center;
    padding: 48px 24px;
}

.success-icon { font-size: 48px; margin-bottom: 20px; }

.form-success-message .panel-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.hidden { display: none; }

/* ─── Comparison Table ───────────────────────────────────────── */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    font-size: 14px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    color: rgba(255,255,255,0.65);
    font-weight: 400;
}

.comparison-table thead th {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 20px;
    background: rgba(255,255,255,0.02);
}

.comparison-table th.highlight {
    color: #a5b4fc;
    background: rgba(99,102,241,0.07);
}

.comparison-table .check {
    color: #4ade80;
    font-size: 16px;
}

.comparison-table tbody tr:hover td {
    background: rgba(255,255,255,0.015);
}

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

/* ─── Footer ─────────────────────────────────────────────────── */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 640px) {
    .footer-links { grid-template-columns: repeat(2, 1fr); }
}

.footer-col h4,
.footer-col .footer-heading {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.50);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-family: var(--font-body);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    transition: color 0.2s ease;
}

.footer-col ul li a:hover { color: rgba(255,255,255,0.82); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copyright,
.footer-powered {
    font-size: 13px;
    color: rgba(255,255,255,0.28);
}

/* ─── Form footer meta ───────────────────────────────────────── */
.form-footer-meta {
    font-size: 14px;
    color: rgba(255,255,255,0.32);
}

/* ─── App Showcase: Tabs ─────────────────────────────────────── */
.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.showcase-tab {
    padding: 10px 20px;
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.55);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    white-space: nowrap;
}

.showcase-tab:hover {
    background: rgba(99,102,241,0.10);
    border-color: rgba(99,102,241,0.25);
    color: #c7d2fe;
}

.showcase-tab.active {
    background: rgba(99,102,241,0.18);
    border-color: rgba(99,102,241,0.45);
    color: #fff;
    box-shadow: 0 0 24px rgba(99,102,241,0.15);
}

/* ─── App Showcase: Stage ────────────────────────────────────── */
.showcase-stage {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 620px;
    position: relative;
}

/* ─── Phone Mockup ───────────────────────────────────────────── */
.phone-mockup {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    animation: fadeInMockup 0.5s cubic-bezier(0.16,1,0.3,1);
}

.phone-mockup.active {
    display: flex;
}

@keyframes fadeInMockup {
    from { opacity: 0; transform: translateY(18px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)   scale(1); }
}

.phone-frame {
    width: 320px;
    background: linear-gradient(145deg, rgba(15,15,30,0.95), rgba(8,8,20,0.98));
    border-radius: 36px;
    border: 2px solid rgba(255,255,255,0.10);
    box-shadow:
        0 40px 100px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.04),
        inset 0 1px 0 rgba(255,255,255,0.06);
    overflow: hidden;
    position: relative;
}

.phone-notch {
    width: 120px;
    height: 28px;
    background: #000;
    border-radius: 0 0 18px 18px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.phone-notch::after {
    content: "";
    width: 8px;
    height: 8px;
    background: rgba(99,102,241,0.4);
    border-radius: 50%;
    position: absolute;
    top: 7px;
    right: 30px;
}

.phone-screen {
    padding: 8px 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 540px;
    overflow-y: auto;
}

.phone-screen::-webkit-scrollbar { width: 3px; }
.phone-screen::-webkit-scrollbar-thumb { background: rgba(99,102,241,0.3); border-radius: 10px; }

/* ─── App Internal Components ────────────────────────────────── */
.app-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0 6px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 4px;
}

.app-logo { font-size: 20px; }

.app-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    flex: 1;
}

.app-status {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.app-status.online { color: #4ade80; }

.app-section {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.app-section-title {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.50);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Stats Row */
.app-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.app-stat {
    text-align: center;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    padding: 8px 4px;
    border: 1px solid rgba(255,255,255,0.04);
}

.app-stat .stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.app-stat .stat-lbl {
    display: block;
    font-size: 10px;
    color: rgba(255,255,255,0.45);
    margin-top: 2px;
}

.app-stat.accent .stat-num {
    color: #818cf8;
}

/* List Items */
.app-list-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.app-list-item:last-child { border-bottom: none; }

.item-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.item-dot.blue   { background: #60a5fa; }
.item-dot.green  { background: #4ade80; }
.item-dot.purple { background: #a78bfa; }
.item-dot.orange { background: #fb923c; }

.item-time {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    color: #818cf8;
    flex-shrink: 0;
    min-width: 34px;
}

.item-badge {
    margin-left: auto;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    background: rgba(255,255,255,0.06);
    border-radius: 6px;
    color: rgba(255,255,255,0.5);
    flex-shrink: 0;
}

.item-badge.full {
    background: rgba(239,68,68,0.15);
    color: #fca5a5;
}

.item-badge.confirm {
    background: rgba(74,222,128,0.15);
    color: #4ade80;
}

.item-badge.pending {
    background: rgba(251,191,36,0.15);
    color: #fbbf24;
}

/* Alerts */
.app-alert {
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 6px;
}

.app-alert.danger {
    background: rgba(239,68,68,0.10);
    border: 1px solid rgba(239,68,68,0.20);
    color: #fca5a5;
}

.app-alert.info {
    background: rgba(99,102,241,0.08);
    border: 1px solid rgba(99,102,241,0.18);
    color: #a5b4fc;
}

.app-alert.success {
    background: rgba(74,222,128,0.08);
    border: 1px solid rgba(74,222,128,0.18);
    color: #86efac;
}

/* Client Row */
.app-client-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
}

.client-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.client-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    font-size: 12px;
    color: #fff;
}

.client-info .text-dim {
    font-size: 10px;
}

/* Plan Items */
.app-plan-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.app-plan-item:last-child { border-bottom: none; }

.plan-price {
    font-family: var(--font-display);
    font-weight: 700;
    color: #818cf8;
    font-size: 13px;
}

/* Chart Bars */
.app-chart-bar {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 64px;
    padding-top: 8px;
}

.bar-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    height: 100%;
    justify-content: flex-end;
}

.bar-col span {
    font-size: 9px;
    color: rgba(255,255,255,0.35);
}

.bar-fill {
    width: 100%;
    border-radius: 4px 4px 0 0;
    background: rgba(99,102,241,0.25);
    transition: height 0.6s cubic-bezier(0.16,1,0.3,1);
}

.bar-fill.active {
    background: linear-gradient(180deg, #818cf8, #6366f1);
    box-shadow: 0 0 12px rgba(99,102,241,0.3);
}

/* ─── Showcase Caption ───────────────────────────────────────── */
.showcase-caption {
    text-align: center;
    max-width: 360px;
}

.showcase-caption h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.showcase-caption p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

/* ─── Showcase Responsive ────────────────────────────────────── */
@media (max-width: 768px) {
    .showcase-tabs {
        gap: 6px;
        margin-bottom: 32px;
    }
    .showcase-tab {
        padding: 8px 14px;
        font-size: 12px;
    }
    .phone-frame {
        width: 280px;
    }
    .showcase-stage {
        min-height: 560px;
    }
}

@media (max-width: 480px) {
    .showcase-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        max-width: calc(100vw - 48px); /* Account for container padding to not break out */
    }
    .phone-frame {
        width: 260px;
    }
}

/* ─── Trust Items ────────────────────────────────────────────── */
.trust-items {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.trust-item {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
}

/* ─── WhatsApp Float Button ─────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: whatsapp-pulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}
