/* PostDog — Landing page additions (content refresh April 2026)
   New components introduced alongside the existing design system.
   All tokens (brand, slate, shadow) come from styles.css. */

/* ------- Missing token aliases ------- */
:root {
    --brand-500: #6366f1;
    --brand-600: #4f46e5;
}

/* ------- Hero stats row ------- */
.hero-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 1.25rem 1.75rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid var(--slate-200);
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}
.hero-stat { text-align: center; flex: 1; min-width: 120px; }
.hero-stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--slate-900);
    letter-spacing: -0.025em;
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.8rem;
    color: var(--slate-500);
    margin-top: 0.25rem;
}
.hero-stat-divider {
    width: 1px;
    height: 32px;
    background: var(--slate-200);
}
@media (max-width: 640px) {
    .hero-stats-row { gap: 1rem; padding: 1rem; }
    .hero-stat-divider { display: none; }
    .hero-stat-num { font-size: 1.25rem; }
}

/* ------- Journey flow section ------- */
.journey-flow {
    padding: 3rem 0 2rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--slate-50) 100%);
}
.journey-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1.25rem;
    align-items: stretch;
    margin-top: 3rem;
}
.journey-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.journey-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.journey-step {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate-500);
}
.journey-channel {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
}
.journey-channel.green { background: var(--green-100); color: var(--green-600); }
.journey-channel.blue  { background: var(--blue-100);  color: var(--blue-600); }
.journey-channel.purple{ background: var(--purple-100);color: var(--purple-600); }
.journey-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--slate-900);
    letter-spacing: -0.02em;
}
.journey-text { color: var(--slate-600); font-size: 0.95rem; }
.journey-arrow {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    color: var(--slate-400);
    font-weight: 300;
}
@media (max-width: 900px) {
    .journey-grid { grid-template-columns: 1fr; }
    .journey-arrow { justify-content: center; transform: rotate(90deg); }
}

/* ------- How It Works ------- */
.how-it-works { padding: 5rem 0; }
.how-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 3rem;
    counter-reset: step;
    list-style: none;
    padding: 0;
}
.how-step {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 0.875rem;
    padding: 1.5rem 1.25rem;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.2s, transform 0.2s;
}
.how-step:hover { border-color: var(--brand-light); transform: translateY(-2px); }
.how-step-num {
    display: inline-flex;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--indigo-50);
    color: var(--brand);
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 0.875rem;
}
.how-step-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
    letter-spacing: -0.015em;
}
.how-step-text { font-size: 0.9rem; color: var(--slate-600); line-height: 1.55; }
@media (max-width: 1024px) { .how-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .how-steps { grid-template-columns: 1fr; } }

/* ------- Industries ------- */
.industries { padding: 5rem 0; background: var(--slate-50); }
.industries-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 2.5rem auto 2rem;
    padding: 0.375rem;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 999px;
    width: fit-content;
    max-width: 100%;
    box-shadow: var(--shadow-sm);
}
.industries-tab {
    padding: 0.625rem 1.125rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--slate-600);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.industries-tab:hover { color: var(--slate-900); }
.industries-tab.active { background: var(--brand); color: var(--white); }
.industries-panels { max-width: 960px; margin: 0 auto; }
.industry-panel { display: none; animation: fadeIn 0.3s ease; }
.industry-panel.active { display: block; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.industry-panel-content {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 2rem;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}
.industry-heading {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--slate-900);
    letter-spacing: -0.025em;
    margin-bottom: 0.75rem;
}
.industry-desc { color: var(--slate-600); margin-bottom: 1.25rem; line-height: 1.6; }
.industry-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.industry-list li {
    color: var(--slate-700);
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
}
.industry-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
}
.industry-metric {
    background: linear-gradient(135deg, var(--indigo-50) 0%, var(--slate-50) 100%);
    border: 1px solid var(--indigo-100);
    border-radius: 0.875rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.industry-metric-num {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--brand-dark);
    line-height: 1;
}
.industry-metric-label {
    color: var(--slate-600);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    line-height: 1.4;
}
@media (max-width: 780px) {
    .industry-panel-content { grid-template-columns: 1fr; padding: 1.5rem; }
}

/* ------- Comparison table ------- */
.compare-table-section { padding: 5rem 0; }
.compare-table-wrap {
    max-width: 960px;
    margin: 3rem auto 2rem;
    overflow-x: auto;
    border: 1px solid var(--slate-200);
    border-radius: 1rem;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.compare-table thead th {
    padding: 1.25rem 1rem;
    text-align: center;
    font-weight: 700;
    color: var(--slate-500);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--slate-200);
}
.compare-table thead th.compare-feat { text-align: left; }
.compare-brand-name {
    color: var(--brand);
    font-size: 1rem;
    text-transform: none;
    letter-spacing: -0.01em;
    font-weight: 800;
}
.compare-table tbody td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--slate-100);
    color: var(--slate-700);
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table td.compare-feat {
    text-align: left;
    font-weight: 600;
    color: var(--slate-900);
}
.compare-table td.compare-brand {
    background: var(--indigo-50);
    position: relative;
}
.compare-yes {
    display: inline-flex;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green-100);
    color: var(--green-600);
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
}
.compare-no { color: var(--slate-400); font-weight: 600; }
.compare-partial { color: var(--orange-600); font-size: 0.85rem; font-weight: 600; }

.compare-calc {
    max-width: 860px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
}
.compare-calc-stack {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}
.compare-calc-line {
    display: flex;
    justify-content: space-between;
    padding: 0.625rem 0;
    color: var(--slate-600);
    border-bottom: 1px solid var(--slate-100);
}
.compare-calc-line:last-of-type { border-bottom: 2px solid var(--slate-200); margin-bottom: 0.25rem; }
.compare-calc-total {
    display: flex;
    justify-content: space-between;
    padding-top: 0.75rem;
    font-weight: 800;
    color: var(--slate-900);
    font-size: 1.1rem;
}
.compare-calc-vs {
    font-weight: 700;
    color: var(--slate-400);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.compare-calc-postdog {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: var(--white);
    border-radius: 1rem;
    padding: 1.75rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.compare-calc-postdog-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.85;
    font-weight: 600;
}
.compare-calc-postdog-price {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0.25rem 0;
    line-height: 1;
}
.compare-calc-postdog-price span { font-size: 1rem; opacity: 0.8; font-weight: 600; }
.compare-calc-postdog-save { font-size: 0.875rem; opacity: 0.9; }
@media (max-width: 780px) {
    .compare-calc { grid-template-columns: 1fr; }
    .compare-calc-vs { text-align: center; }
}

/* ------- Security & trust ------- */
.security {
    padding: 5rem 0;
    background: var(--slate-50);
}
.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}
.security-tile {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 1rem;
    padding: 1.75rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.security-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.security-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.security-icon.green  { background: var(--green-100);  color: var(--green-600); }
.security-icon.blue   { background: var(--blue-100);   color: var(--blue-600); }
.security-icon.purple { background: var(--purple-100); color: var(--purple-600); }
.security-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--slate-900);
    letter-spacing: -0.015em;
    margin-bottom: 0.5rem;
}
.security-desc { color: var(--slate-600); font-size: 0.9rem; line-height: 1.55; }
@media (max-width: 900px) { .security-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .security-grid { grid-template-columns: 1fr; } }

/* ------- Testimonials role line ------- */
.testimonials-subtitle {
    text-align: center;
    color: var(--slate-600);
    margin: 0.75rem auto 3rem;
    font-size: 1.125rem;
    line-height: 1.625;
    max-width: 44rem;
}
.testimonial-role {
    color: var(--slate-500);
    font-size: 0.85rem;
    margin-top: 0.125rem;
}

/* ------- CTA v2 additions ------- */
.cta-kicker {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.75rem;
}
.cta-buttons {
    display: flex;
    gap: 0.875rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}
.btn-ghost-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.625rem;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s, border-color 0.2s;
}
.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}


/* ------- Hero tagline + live dot ------- */
.hero-tagline-signature {
    text-align: center;
    margin-top: 1.5rem;
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--slate-500);
    letter-spacing: 0.01em;
}
.hero-tagline-signature span { color: var(--brand); font-weight: 600; }
.hero-live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    animation: livePulse 1.8s infinite;
    vertical-align: middle;
    margin-right: 6px;
    transform: translateY(-2px);
}
@keyframes livePulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
    70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* ------- Tuesday narrative ------- */
.tuesday { padding: 5rem 0; background: var(--white); }
.tuesday-wrap { max-width: 1040px; }
.tuesday-label {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 0.75rem;
}
.tuesday-title {
    text-align: center;
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: var(--slate-900);
    letter-spacing: -0.025em;
    margin-bottom: 3rem;
    line-height: 1.2;
}
.tuesday-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.tuesday-col {
    border-radius: 1rem;
    padding: 1.75rem 1.75rem 1.5rem;
    border: 1px solid var(--slate-200);
}
.tuesday-before { background: var(--slate-50); }
.tuesday-after {
    background: linear-gradient(180deg, #ecfdf5 0%, var(--white) 100%);
    border-color: #a7f3d0;
}
.tuesday-col-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate-500);
    margin-bottom: 1rem;
}
.tuesday-after .tuesday-col-label { color: #047857; }
.tuesday-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.tuesday-steps li {
    display: flex;
    gap: 0.875rem;
    color: var(--slate-700);
    font-size: 0.95rem;
    line-height: 1.45;
    padding: 0.25rem 0;
}
.tuesday-time {
    font-family: 'SF Mono', ui-monospace, Menlo, monospace;
    font-size: 0.8rem;
    color: var(--slate-500);
    min-width: 48px;
    padding-top: 0.1em;
    font-weight: 600;
}
.tuesday-after .tuesday-time { color: #047857; }
.tuesday-bad { color: #b91c1c !important; font-weight: 600; }
.tuesday-good { color: #047857 !important; font-weight: 700; }
@media (max-width: 780px) { .tuesday-grid { grid-template-columns: 1fr; } }

/* ------- The 98% Club (simple) ------- */
.club98 {
    padding: 5rem 0;
    background: var(--white);
    border-top: 1px solid var(--slate-100);
    border-bottom: 1px solid var(--slate-100);
}
.club98-inner { text-align: center; }
.club98-kicker {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 0.875rem;
}
.club98-headline {
    max-width: 720px;
    margin: 0 auto 0.75rem;
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: var(--slate-900);
}
.club98-lede {
    color: var(--slate-600);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}
.club98-rows {
    max-width: 560px;
    margin: 0 auto 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.club98-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--slate-200);
}
.club98-row:last-child { border-bottom: none; }
.club98-row-label {
    color: var(--slate-600);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
}
.club98-row-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-400);
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}
.club98-row.featured .club98-row-label { color: var(--slate-900); font-weight: 600; }
.club98-row.featured .club98-row-num {
    font-size: 2.25rem;
    color: #16a34a;
}
.club98-meta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 780px;
    margin: 0 auto;
    padding-top: 2.5rem;
    border-top: 1px solid var(--slate-200);
}
.club98-meta-item { text-align: center; }
.club98-meta-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--slate-900);
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}
.club98-meta-label {
    font-size: 0.78rem;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}
@media (max-width: 640px) {
    .club98-meta { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
}

/* ------- WhatsApp template gallery ------- */
.wa-templates { padding: 5rem 0; background: var(--white); }
.wa-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.wa-template {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}
.wa-template-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}
.wa-template-tag {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.wa-template-tag.ecom   { background: var(--blue-100);   color: var(--blue-600); }
.wa-template-tag.health { background: var(--green-100);  color: var(--green-600); }
.wa-template-tag.real   { background: var(--purple-100); color: var(--purple-600); }
.wa-template-tag.edu    { background: var(--indigo-50);  color: var(--brand); }
.wa-template-name {
    font-weight: 700;
    color: var(--slate-800);
    font-size: 0.9rem;
}
.wa-phone {
    background: #e5ded8;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--slate-200);
    min-height: 320px;
    display: flex;
    flex-direction: column;
}
.wa-phone-top {
    background: #128c7e;
    color: white;
    padding: 0.75rem 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}
.wa-phone-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}
.wa-phone-name { font-weight: 600; font-size: 0.95rem; }
.wa-phone-online { font-size: 0.75rem; opacity: 0.85; }
.wa-phone-body {
    flex: 1;
    padding: 1rem 0.875rem;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.35) 0, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.25) 0, transparent 40%);
}
.wa-msg {
    background: var(--white);
    padding: 0.75rem 0.875rem;
    border-radius: 8px 8px 8px 2px;
    font-size: 0.85rem;
    color: var(--slate-800);
    line-height: 1.5;
    box-shadow: 0 1px 0.5px rgba(0,0,0,0.1);
    max-width: 85%;
    position: relative;
}
.wa-btn {
    display: block;
    margin: 0.5rem 0;
    padding: 0.55rem 0.75rem;
    background: var(--indigo-50);
    color: var(--brand);
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid var(--indigo-100);
}
.wa-msg-meta {
    text-align: right;
    font-size: 0.7rem;
    color: #667781;
    margin-top: 0.375rem;
}
.wa-gallery-cta {
    text-align: center;
    margin-top: 3rem;
}
.wa-gallery-note {
    margin-top: 1rem;
    color: var(--slate-500);
    font-size: 0.9rem;
}
@media (max-width: 900px) { .wa-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .wa-gallery { grid-template-columns: 1fr; } }


/* ========================================================================
   NEW ADDITIONS (AI / Tour / Calc / Hours5 / Founder / Sticky / ROI / Intg)
   ======================================================================== */

/* Hero ROI mini widget */
.hero-roi {
    margin: 2rem auto 0;
    max-width: 620px;
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 999px;
    padding: 0.5rem 1rem 0.5rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    font-size: 0.9rem;
    color: var(--slate-700);
}
.hero-roi-q { display: flex; align-items: center; gap: 0.5rem; }
.hero-roi-q input {
    width: 64px;
    padding: 0.35rem 0.5rem;
    border: 1px solid var(--slate-200);
    border-radius: 0.5rem;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    color: var(--slate-900);
    background: var(--slate-50);
}
.hero-roi-q input:focus { outline: 2px solid var(--brand-600); outline-offset: 1px; }
.hero-roi-a { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.9rem; color: var(--slate-700); }
.hero-roi-a strong { color: #15803d; font-size: 1.05rem; font-weight: 800; }
.hero-roi-link { color: var(--brand-600); font-weight: 600; text-decoration: none; margin-left: 0.25rem; }
.hero-roi-link:hover { text-decoration: underline; }

/* =============== Product Platform (realistic SaaS mock) =============== */
.product-tour {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fff 0%, var(--slate-50) 100%);
}
.platform {
    max-width: 1180px;
    margin: 3rem auto 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 60px -12px rgba(15,23,42,0.25), 0 8px 16px -8px rgba(15,23,42,0.15);
    background: #fff;
    border: 1px solid var(--slate-200);
}
/* Top nav */
.plt-topnav {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    background: #0a2e1f;
    background: linear-gradient(180deg, #0f3a28 0%, #0a2e1f 100%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.plt-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 1.1rem 0.5rem;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.55);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    transition: color 0.15s;
}
.plt-tab:hover { color: rgba(255,255,255,0.9); }
.plt-tab.is-active {
    color: #fff;
    background: linear-gradient(180deg, rgba(37,211,102,0.08), rgba(37,211,102,0));
}
.plt-tab.is-active::before,
.plt-tab.is-active::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 14px; height: 14px;
    border: 2px solid #25D366;
}
.plt-tab.is-active::before { left: 0; border-right: none; border-top: none; }
.plt-tab.is-active::after { right: 0; border-left: none; border-top: none; }
.plt-tab.is-active + .plt-tab::before,
.plt-tab:not(.is-active):has(+ .plt-tab.is-active)::after { display: none; }
.plt-tab-ico { width: 22px; height: 22px; stroke-linecap: round; stroke-linejoin: round; }

/* Body layout */
.plt-body {
    display: grid;
    grid-template-columns: 56px 1fr;
    min-height: 560px;
    background: #f6f8f7;
}

/* Sidebar */
.plt-side {
    background: #fff;
    border-right: 1px solid var(--slate-200);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 0;
    gap: 0.5rem;
}
.plt-side-logo {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(37,211,102,0.12);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 0.5rem;
}
.plt-side-group { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.plt-side-ico {
    width: 36px; height: 36px;
    border: none; background: transparent;
    color: var(--slate-500);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.plt-side-ico svg { width: 18px; height: 18px; }
.plt-side-ico:hover { background: var(--slate-100); color: var(--slate-900); }
.plt-side-ico.is-active {
    background: rgba(37,211,102,0.12);
    color: #16a34a;
}
.plt-side-bottom { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; padding-top: 0.5rem; border-top: 1px solid var(--slate-100); width: 80%; margin-top: auto; }
.plt-side-avatar {
    width: 30px; height: 30px;
    border-radius: 999px;
    background: #fda4af;
    color: #881337;
    font-size: 0.7rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}

/* Stage */
.plt-stage { padding: 1rem; overflow: hidden; position: relative; }
.plt-panel { display: none; background: #fff; border-radius: 10px; border: 1px solid var(--slate-200); height: 100%; min-height: 540px; overflow: hidden; }
.plt-panel.is-active { display: flex; flex-direction: column; }

/* Panel header */
.plt-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid var(--slate-200);
    flex-wrap: wrap; gap: 0.75rem;
}
.plt-h1 { font-size: 1.15rem; font-weight: 700; color: var(--slate-900); margin: 0; letter-spacing: -0.01em; }
.plt-head-actions { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.plt-chip {
    background: var(--slate-100);
    color: var(--slate-700);
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}
.plt-chip-muted { background: transparent; color: var(--slate-500); border: 1px solid var(--slate-200); }
.plt-chip-live { background: #dcfce7; color: #166534; }
.plt-chip-ok { background: #dbeafe; color: #1e40af; }
.plt-btn-sec {
    padding: 0.4rem 0.85rem;
    background: #fff;
    border: 1px solid var(--slate-300);
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--slate-700);
    cursor: pointer;
}
.plt-btn-pri {
    padding: 0.45rem 0.95rem;
    background: #16a34a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
}

/* ========= Unified Inbox ========= */
.plt-inbox-layout { display: grid; grid-template-columns: 200px 1fr; flex: 1; }
.plt-inbox-filters {
    border-right: 1px solid var(--slate-200);
    padding: 1rem;
    background: #fafbfa;
    font-size: 0.8rem;
}
.plt-filter-head { font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate-500); font-weight: 700; margin-bottom: 0.5rem; }
.plt-filter {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.25rem;
    font-size: 0.8rem;
    color: var(--slate-700);
    cursor: pointer;
}
.plt-filter input { accent-color: #16a34a; }
.plt-filter small { color: var(--slate-400); font-size: 0.72rem; }
.tag-pill {
    display: inline-block; padding: 1px 8px; border-radius: 999px;
    font-size: 0.7rem; font-weight: 700;
}
.tag-vip { background: #fef3c7; color: #92400e; }
.tag-new { background: #dcfce7; color: #166534; }
.tag-urg { background: #fee2e2; color: #991b1b; }

.plt-inbox-list { display: flex; flex-direction: column; }
.plt-list-head {
    display: grid;
    grid-template-columns: 2fr 1fr 3fr 1fr;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate-500);
    font-weight: 700;
    background: #fafbfa;
    border-bottom: 1px solid var(--slate-200);
}
.plt-list-row {
    display: grid;
    grid-template-columns: 2fr 1fr 3fr 1fr;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    align-items: center;
    border-bottom: 1px solid var(--slate-100);
    font-size: 0.85rem;
    color: var(--slate-700);
}
.plt-list-row.is-sel { background: #f0fdf4; border-left: 3px solid #16a34a; padding-left: calc(1rem - 3px); }
.plt-who { display: flex; align-items: center; gap: 0.65rem; }
.plt-who strong { display: block; font-size: 0.85rem; color: var(--slate-900); font-weight: 600; }
.plt-who small { display: block; font-size: 0.72rem; color: var(--slate-500); }
.plt-ava {
    width: 32px; height: 32px; border-radius: 999px;
    color: #fff; font-weight: 700; font-size: 0.75rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.plt-chan {
    display: inline-block; padding: 0.15rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem; font-weight: 700;
}
.plt-chan-wa { background: #dcfce7; color: #166534; }
.plt-chan-em { background: #dbeafe; color: #1e40af; }
.plt-last { color: var(--slate-600); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.plt-st {
    display: inline-block; padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.7rem; font-weight: 700;
}
.plt-st-open { background: #dcfce7; color: #166534; }
.plt-st-open::first-letter { color: #16a34a; }
.plt-st-done { background: var(--slate-100); color: var(--slate-600); }
.plt-st-wait { background: #fef3c7; color: #92400e; }
.plt-st-auto { background: #ede9fe; color: #5b21b6; }

/* ========= Automation ========= */
.plt-auto-layout { display: grid; grid-template-columns: 280px 1fr; flex: 1; gap: 0; }
.plt-auto-list { border-right: 1px solid var(--slate-200); padding: 0.75rem; background: #fafbfa; display: flex; flex-direction: column; gap: 0.5rem; overflow-y: auto; }
.plt-flow-card {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 8px;
    padding: 0.85rem;
    cursor: pointer;
    transition: all 0.15s;
}
.plt-flow-card:hover { border-color: var(--slate-300); }
.plt-flow-sel { border-color: #16a34a; background: #f0fdf4; box-shadow: 0 0 0 2px rgba(22,163,74,0.1); }
.plt-flow-title { font-weight: 600; color: var(--slate-900); font-size: 0.88rem; }
.plt-flow-meta { font-size: 0.72rem; color: var(--slate-500); margin-top: 3px; }
.plt-flow-stat { margin-top: 0.6rem; display: flex; align-items: baseline; gap: 0.4rem; }
.plt-flow-stat strong { font-size: 1.1rem; color: #16a34a; font-weight: 800; letter-spacing: -0.01em; }
.plt-flow-stat small { color: var(--slate-500); font-size: 0.72rem; }

.plt-auto-canvas { padding: 1.25rem; overflow: hidden; background: #fafbfa; background-image: radial-gradient(circle, var(--slate-200) 1px, transparent 1px); background-size: 16px 16px; }
.plt-canvas-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.plt-canvas-head strong { color: var(--slate-900); font-size: 0.9rem; }
.plt-chip-live-sm { background: #dcfce7; color: #166534; padding: 0.15rem 0.55rem; border-radius: 999px; font-size: 0.7rem; font-weight: 700; }

.plt-flow-diagram { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; }
.fd-node {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 8px;
    padding: 0.6rem 0.9rem;
    min-width: 220px;
    box-shadow: 0 1px 3px rgba(15,23,42,0.06);
    text-align: left;
    position: relative;
}
.fd-node small { display: block; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--slate-500); font-weight: 700; margin-bottom: 2px; }
.fd-node strong { color: var(--slate-900); font-size: 0.85rem; font-weight: 600; }
.fd-trigger { border-left: 3px solid #16a34a; }
.fd-wait { border-left: 3px solid #f59e0b; }
.fd-action { border-left: 3px solid var(--brand-500); }
.fd-human { border-left: 3px solid #3b82f6; background: #eff6ff; }
.fd-line { width: 2px; height: 20px; background: var(--slate-300); }
.fd-branch-row { display: flex; gap: 1.5rem; align-items: flex-start; margin-top: 0.25rem; }
.fd-branch { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.fd-label {
    font-size: 0.7rem; font-weight: 700;
    padding: 2px 10px; border-radius: 999px;
    background: #fff; border: 1px solid var(--slate-200); color: var(--slate-600);
}
.fd-label-yes { border-color: #bbf7d0; background: #f0fdf4; color: #166534; }
.fd-label-no { border-color: #fde68a; background: #fffbeb; color: #92400e; }

/* ========= Broadcasting ========= */
.plt-bcast-layout { padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem; overflow: hidden; flex: 1; }
.plt-bcast-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
.plt-kpi { background: #fafbfa; border: 1px solid var(--slate-200); border-radius: 8px; padding: 0.85rem; }
.plt-kpi small { display: block; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--slate-500); font-weight: 700; }
.plt-kpi strong { display: block; font-size: 1.4rem; color: var(--slate-900); font-weight: 800; letter-spacing: -0.02em; margin: 2px 0; }
.plt-kpi .up { color: #16a34a; font-size: 0.72rem; font-weight: 700; }

.plt-bcast-table { background: #fff; border: 1px solid var(--slate-200); border-radius: 8px; overflow: hidden; flex: 1; }
.plt-bcast-table .plt-list-head, .plt-bcast-row {
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1fr 1fr;
}
.plt-bcast-row {
    display: grid;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    align-items: center;
    border-bottom: 1px solid var(--slate-100);
    font-size: 0.82rem;
    color: var(--slate-700);
}
.plt-bcast-row strong { display: block; color: var(--slate-900); font-weight: 600; }
.plt-bcast-row small { display: block; font-size: 0.7rem; color: var(--slate-500); }
.bar { display: inline-block; width: 60px; height: 5px; background: var(--slate-100); border-radius: 999px; margin-left: 0.3rem; vertical-align: middle; overflow: hidden; }
.bar i { display: block; height: 100%; background: #16a34a; border-radius: 999px; }

/* ========= AI Agents ========= */
.plt-agents-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding: 1.25rem; }
.plt-agent {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    padding: 1.1rem;
    display: flex; flex-direction: column; gap: 0.85rem;
}
.plt-agent-head { display: grid; grid-template-columns: 44px 1fr auto; gap: 0.7rem; align-items: center; }
.plt-agent-ava { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: #fff; }
.plt-agent-head strong { display: block; color: var(--slate-900); font-weight: 700; font-size: 0.95rem; }
.plt-agent-head small { display: block; font-size: 0.72rem; color: var(--slate-500); }
.plt-dot-live { width: 8px; height: 8px; background: #16a34a; border-radius: 999px; box-shadow: 0 0 0 3px rgba(22,163,74,0.15); animation: pulse-dot 2s infinite; }
.plt-agent-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.5rem; padding: 0.65rem; background: #fafbfa; border-radius: 8px; border: 1px solid var(--slate-100); }
.plt-agent-stats small { display: block; font-size: 0.62rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--slate-500); font-weight: 700; }
.plt-agent-stats strong { display: block; font-size: 1.1rem; font-weight: 800; color: var(--slate-900); letter-spacing: -0.02em; }
.plt-agent-skills { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.plt-agent-skills span {
    font-size: 0.7rem; font-weight: 600;
    background: var(--slate-100); color: var(--slate-700);
    padding: 0.2rem 0.55rem; border-radius: 999px;
}

/* ========= AI Governance ========= */
.plt-gov-layout { display: grid; grid-template-columns: 1fr 220px; gap: 1rem; padding: 1.25rem; flex: 1; }
.plt-gov-rules { display: flex; flex-direction: column; gap: 0.5rem; }
.plt-gov-head { font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--slate-500); font-weight: 700; margin-bottom: 0.25rem; }
.plt-gov-head span { color: var(--slate-400); }
.plt-rule {
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    background: #fafbfa; border: 1px solid var(--slate-200); border-radius: 8px;
    padding: 0.85rem 1rem;
}
.plt-rule-on { border-left: 3px solid #16a34a; }
.plt-rule strong { display: block; color: var(--slate-900); font-size: 0.85rem; font-weight: 600; }
.plt-rule small { display: block; color: var(--slate-500); font-size: 0.72rem; margin-top: 2px; }
.plt-toggle {
    width: 34px; height: 20px; border-radius: 999px;
    background: var(--slate-300); position: relative; flex-shrink: 0;
    transition: background 0.15s;
}
.plt-toggle::after {
    content: ""; position: absolute; top: 2px; left: 2px;
    width: 16px; height: 16px; background: #fff; border-radius: 999px;
    transition: transform 0.15s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.plt-toggle-on { background: #16a34a; }
.plt-toggle-on::after { transform: translateX(14px); }

.plt-gov-side { display: flex; flex-direction: column; gap: 0.6rem; }
.plt-gov-card {
    background: #fff; border: 1px solid var(--slate-200); border-radius: 8px;
    padding: 1rem; text-align: center;
}
.plt-gov-num { font-size: 1.7rem; font-weight: 900; color: #16a34a; letter-spacing: -0.02em; line-height: 1; }
.plt-gov-lbl { margin-top: 4px; font-size: 0.72rem; color: var(--slate-600); font-weight: 600; }

/* ========= AI Analytics ========= */
.plt-ana-layout { display: grid; grid-template-columns: 1fr 220px; flex: 1; min-height: 0; }
.plt-ana-main { padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; overflow: hidden; }
.plt-ana-filters {
    display: flex; align-items: center; gap: 0.4rem;
    background: #fafbfa; border: 1px solid var(--slate-200);
    border-radius: 8px; padding: 0.35rem;
}
.plt-seg {
    padding: 0.35rem 0.75rem; font-size: 0.78rem; font-weight: 600;
    background: transparent; border: none; border-radius: 6px;
    color: var(--slate-600); cursor: pointer;
}
.plt-seg.is-active { background: #fff; color: #16a34a; box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.plt-spacer { flex: 1; }
.plt-seg-dd { border: 1px solid var(--slate-200); background: #fff; }

.plt-ana-card {
    background: #fff; border: 1px solid var(--slate-200); border-radius: 8px;
    padding: 1rem; display: flex; flex-direction: column; gap: 0.75rem;
}
.plt-ana-card-head { display: flex; align-items: baseline; gap: 0.75rem; }
.plt-ana-kicker { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate-500); font-weight: 700; }
.plt-ana-big { font-size: 1.6rem; font-weight: 800; color: var(--slate-900); letter-spacing: -0.02em; }
.plt-ana-dots { margin-left: auto; color: var(--slate-400); cursor: pointer; }

.plt-chart { display: grid; grid-template-columns: 40px 1fr; gap: 0.5rem; height: 180px; }
.plt-chart-y { display: flex; flex-direction: column; justify-content: space-between; font-size: 0.7rem; color: var(--slate-400); padding: 2px 0; text-align: right; }
.plt-chart-bars { display: grid; grid-template-columns: repeat(8, 1fr); gap: 0.5rem; align-items: end; border-left: 1px solid var(--slate-100); padding-left: 0.5rem; position: relative; }
.plt-chart-bars::before, .plt-chart-bars::after {
    content: ""; position: absolute; left: 0.5rem; right: 0; border-top: 1px dashed var(--slate-100);
}
.plt-chart-bars::before { top: 25%; }
.plt-chart-bars::after { top: 50%; box-shadow: 0 50px 0 -1px var(--slate-100); }
.plt-bar { display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; gap: 0.25rem; position: relative; z-index: 1; }
.plt-bar i { display: block; width: 100%; background: #16a34a; border-radius: 2px 2px 0 0; }
.plt-bar small { font-size: 0.65rem; color: var(--slate-500); font-weight: 600; }

.plt-ana-table { background: #fff; border: 1px solid var(--slate-200); border-radius: 8px; overflow: hidden; }
.plt-ana-thead, .plt-ana-trow {
    display: grid;
    grid-template-columns: 120px repeat(7, 1fr);
    gap: 0.5rem;
    padding: 0.65rem 0.85rem;
    font-size: 0.72rem;
    align-items: center;
}
.plt-ana-thead { background: #fafbfa; border-bottom: 1px solid var(--slate-200); font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate-500); font-weight: 700; }
.plt-ana-trow { border-bottom: 1px solid var(--slate-100); color: var(--slate-700); font-size: 0.82rem; }
.plt-ana-trow strong { color: var(--slate-900); font-weight: 600; }
.plt-ana-trow-skel span { height: 10px; background: var(--slate-100); border-radius: 4px; display: block; }
.plt-ana-trow-skel span:first-child { background: transparent; }

.plt-ana-side { border-left: 1px solid var(--slate-200); padding: 1rem; display: flex; flex-direction: column; gap: 1rem; overflow-y: auto; }
.plt-ana-tabs { display: flex; gap: 0.75rem; border-bottom: 1px solid var(--slate-200); padding-bottom: 0.5rem; }
.plt-ana-tabs span { font-size: 0.78rem; color: var(--slate-500); font-weight: 600; cursor: pointer; padding-bottom: 0.5rem; position: relative; }
.plt-ana-tabs .is-active { color: #16a34a; }
.plt-ana-tabs .is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -0.5rem; height: 2px; background: #16a34a; }
.plt-ana-field small { display: block; font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate-500); font-weight: 700; margin-bottom: 0.4rem; display: flex; justify-content: space-between; align-items: center; }
.plt-plus { color: var(--slate-400); cursor: pointer; font-size: 0.9rem; }
.plt-ana-select {
    background: #fff; border: 1px solid var(--slate-200); border-radius: 6px;
    padding: 0.45rem 0.6rem; font-size: 0.8rem; color: var(--slate-700); font-weight: 500;
}
.plt-ana-pill {
    display: flex; align-items: center; justify-content: space-between;
    background: #ecfdf5; border: 1px solid #a7f3d0;
    border-radius: 6px; padding: 0.4rem 0.6rem;
    font-size: 0.78rem; color: #065f46; font-weight: 600;
    margin-bottom: 0.4rem;
}
.plt-x { color: #065f46; opacity: 0.5; cursor: pointer; }
.plt-ana-pill-skel { background: #fafbfa; border-style: dashed; height: 28px; padding: 0; }

/* Responsive */
@media (max-width: 980px) {
    .plt-topnav { grid-template-columns: repeat(3, 1fr); }
    .plt-tab { padding: 0.85rem 0.3rem; font-size: 0.65rem; }
    .plt-tab-ico { width: 18px; height: 18px; }
    .plt-body { grid-template-columns: 48px 1fr; }
    .plt-inbox-layout { grid-template-columns: 1fr; }
    .plt-inbox-filters { display: none; }
    .plt-auto-layout { grid-template-columns: 1fr; }
    .plt-auto-list { border-right: none; border-bottom: 1px solid var(--slate-200); max-height: 180px; }
    .plt-bcast-kpis { grid-template-columns: repeat(2,1fr); }
    .plt-agents-grid { grid-template-columns: 1fr; }
    .plt-gov-layout { grid-template-columns: 1fr; }
    .plt-ana-layout { grid-template-columns: 1fr; }
    .plt-ana-side { border-left: none; border-top: 1px solid var(--slate-200); }
    .plt-list-head, .plt-list-row { grid-template-columns: 2fr 1fr 1fr; }
    .plt-list-row > *:nth-child(3) { display: none; }
    .plt-bcast-table .plt-list-head, .plt-bcast-row { grid-template-columns: 2fr 1fr 1fr 1fr; }
    .plt-bcast-row > *:nth-child(5), .plt-bcast-row > *:nth-child(6),
    .plt-bcast-table .plt-list-head > *:nth-child(5), .plt-bcast-table .plt-list-head > *:nth-child(6) { display: none; }
    .plt-ana-thead, .plt-ana-trow { grid-template-columns: 80px repeat(4, 1fr); }
    .plt-ana-thead > *:nth-child(n+6), .plt-ana-trow > *:nth-child(n+6) { display: none; }
}

/* =============== AI Section =============== */
.ai-section {
    padding: 6rem 0;
    background: radial-gradient(ellipse at top, #1e1b4b 0%, #0f172a 60%);
    color: #e2e8f0;
    position: relative;
    overflow: hidden;
}
.ai-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 15% 20%, rgba(168,85,247,0.25), transparent 40%),
      radial-gradient(circle at 85% 80%, rgba(59,130,246,0.2), transparent 40%);
    pointer-events: none;
}
.ai-section .section-header { position: relative; z-index: 1; }
.ai-section .section-title { color: #fff; }
.ai-section .section-description { color: #cbd5e1; }
.ai-label { color: #a855f7 !important; }
.ai-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1100px;
    margin: 3rem auto 0;
}
.ai-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(8px);
    transition: all 0.2s;
}
.ai-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(168,85,247,0.4); transform: translateY(-2px); }
.ai-card.ai-big { grid-column: span 2; grid-row: span 1; }
.ai-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.ai-tag {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    background: rgba(168,85,247,0.15);
    border: 1px solid rgba(168,85,247,0.3);
    color: #d8b4fe;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.ai-dot { width: 8px; height: 8px; background: #a855f7; border-radius: 999px; box-shadow: 0 0 12px #a855f7; animation: pulse-dot 2s infinite; }
.ai-card h3 { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.02em; color: #fff; margin-bottom: 0.5rem; }
.ai-card p { color: #94a3b8; line-height: 1.5; font-size: 0.9rem; }

.ai-demo { margin-top: 1rem; display: grid; gap: 0.5rem; }
.ai-prompt {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.5rem;
    padding: 0.65rem 0.85rem;
    font-family: ui-monospace, monospace;
    font-size: 0.82rem;
    color: #cbd5e1;
}
.ai-reply {
    background: linear-gradient(135deg, rgba(168,85,247,0.15), rgba(59,130,246,0.1));
    border: 1px solid rgba(168,85,247,0.3);
    border-radius: 0.5rem;
    padding: 0.75rem 0.9rem;
}
.ai-reply small { color: #d8b4fe; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; display: block; margin-bottom: 4px; }
.ai-reply p { color: #f1f5f9; font-size: 0.85rem; margin: 0; line-height: 1.45; }

.mood-bar { margin-top: 1rem; display: flex; border-radius: 0.4rem; overflow: hidden; height: 28px; }
.mood-seg { display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; color: #fff; }
.mood-happy { background: #16a34a; }
.mood-neutral { background: #f59e0b; }
.mood-unhappy { background: #dc2626; }

/* =============== 5 Extra Hours =============== */
.hours5 { padding: 5rem 0; background: #fef9c3; }
.hours5-wrap { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center; }
.hours5-kicker { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #a16207; margin-bottom: 1rem; }
.hours5-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; color: var(--slate-900); margin-bottom: 1.25rem; }
.hours5-desc { font-size: 1.1rem; line-height: 1.55; color: var(--slate-700); max-width: 520px; margin-bottom: 1.75rem; }
.hours5-right { display: flex; flex-direction: column; align-items: center; }
.clock {
    width: 260px; height: 260px; position: relative;
    display: flex; align-items: center; justify-content: center;
}
.clock-face {
    width: 100%; height: 100%;
    border-radius: 999px;
    background: #fff;
    border: 4px solid var(--slate-900);
    position: relative;
    box-shadow: 8px 8px 0 var(--slate-900);
}
.clock-mark {
    position: absolute;
    top: 50%; left: 50%;
    width: 2px; height: 12px;
    background: var(--slate-400);
    transform-origin: 50% 120px;
    transform: translate(-50%, -50%) rotate(var(--r)) translateY(-110px);
}
.clock-slice {
    position: absolute;
    inset: 8px;
    border-radius: 999px;
    background: conic-gradient(from -90deg, #fef08a 0deg, #fde047 150deg, transparent 150deg);
    opacity: 0.7;
}
.clock-hand {
    position: absolute;
    top: 50%; left: 50%;
    background: var(--slate-900);
    border-radius: 2px;
    transform-origin: 50% 100%;
}
.clock-hand-hr {
    width: 5px; height: 70px;
    margin-left: -2.5px; margin-top: -70px;
    transform: rotate(150deg);
}
.clock-hand-min {
    width: 3px; height: 95px;
    margin-left: -1.5px; margin-top: -95px;
    transform: rotate(0deg);
}
.clock-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 14px; height: 14px;
    background: var(--brand-600);
    border-radius: 999px;
    border: 2px solid var(--slate-900);
}
.clock-label {
    margin-top: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    font-size: 1.1rem;
    background: var(--slate-900);
    color: #fef08a;
    padding: 0.5rem 1rem;
    border-radius: 999px;
}

/* =============== Integrations by Category =============== */
.integrations { padding: 6rem 0; background: #fff; }
.intg-cats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.intg-cat {
    padding: 0.55rem 1rem;
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-600);
    cursor: pointer;
    transition: all 0.15s;
}
.intg-cat:hover { color: var(--slate-900); border-color: var(--slate-300); }
.intg-cat.is-active { background: var(--slate-900); color: #fff; border-color: var(--slate-900); }
.intg-cat span { font-size: 0.72rem; opacity: 0.7; margin-left: 0.3rem; }
.intg-note {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    justify-content: center;
    max-width: 640px;
    margin: 0 auto 2rem;
    color: var(--slate-600);
    font-size: 0.9rem;
    text-align: center;
}
.intg-note-dot { width: 6px; height: 6px; background: var(--brand-500); border-radius: 999px; flex-shrink: 0; }
.intg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    max-width: 1100px;
    margin: 0 auto;
}
.intg-card {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 0.75rem;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
    transition: all 0.2s;
}
.intg-card:hover { border-color: var(--slate-300); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.intg-card.is-hidden { display: none; }
.intg-logo {
    width: 44px; height: 44px; border-radius: 0.5rem;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.1rem;
    margin-bottom: 0.25rem;
}
.intg-logo-more { background: var(--slate-100); color: var(--slate-600); border: 1px dashed var(--slate-300); }
.intg-card strong { color: var(--slate-900); font-size: 0.95rem; font-weight: 700; }
.intg-card small { color: var(--slate-500); font-size: 0.78rem; line-height: 1.35; }
.intg-foot { text-align: center; margin-top: 2rem; color: var(--slate-600); font-size: 0.9rem; }

/* =============== Stack Calculator =============== */
.stack-calc { padding: 6rem 0; background: var(--slate-50); }
.calc-wrap {
    max-width: 1100px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}
.calc-sliders { display: flex; flex-direction: column; gap: 1.75rem; }
.calc-row-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.calc-row-title { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; color: var(--slate-900); }
.calc-dot { width: 10px; height: 10px; border-radius: 999px; }
.calc-row-val { font-family: ui-monospace, monospace; font-weight: 700; color: var(--slate-900); font-size: 1.05rem; }
.calc-row-ex { font-size: 0.78rem; color: var(--slate-500); margin-top: 0.35rem; }
.calc-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 999px;
    background: var(--slate-200);
    outline: none;
    cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px; height: 20px;
    background: var(--slate-900);
    border-radius: 999px;
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px var(--slate-300);
}
.calc-slider::-moz-range-thumb {
    width: 20px; height: 20px;
    background: var(--slate-900);
    border-radius: 999px;
    cursor: pointer;
    border: 3px solid #fff;
}

.calc-result {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    gap: 1rem 0.75rem;
    align-items: center;
}
.calc-before, .calc-after {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 0.75rem;
    padding: 1.25rem;
    text-align: center;
}
.calc-after { background: #f0fdf4; border-color: #bbf7d0; }
.calc-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--slate-600); margin-bottom: 0.5rem; }
.calc-big { font-size: 2.25rem; font-weight: 900; letter-spacing: -0.03em; color: var(--slate-900); line-height: 1; }
.calc-big-green { color: #16a34a; }
.calc-unit { font-size: 0.9rem; color: var(--slate-500); font-weight: 600; margin-left: 0.15rem; }
.calc-sub { font-size: 0.8rem; color: var(--slate-500); margin-top: 0.4rem; }
.calc-arrow { font-size: 1.75rem; color: var(--slate-400); }
.calc-savings {
    grid-column: 1 / -1;
    background: var(--slate-900);
    color: #fff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    margin-top: 0.5rem;
}
.calc-savings-label { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: #86efac; font-weight: 700; margin-bottom: 0.3rem; }
.calc-savings-big { font-size: 2.5rem; font-weight: 900; letter-spacing: -0.03em; color: #86efac; line-height: 1; }
.calc-savings-big .calc-unit { color: #bbf7d0; }
.calc-savings-year { margin-top: 0.6rem; color: #cbd5e1; font-size: 0.95rem; }
.calc-savings-year strong { color: #fef08a; font-weight: 800; }
.calc-cta { margin-top: 1rem; display: inline-flex; }

/* =============== Founder note =============== */
.founder { padding: 6rem 0; background: #fff; }
.founder-wrap {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: start;
}
.founder-photo { text-align: center; }
.founder-avatar {
    width: 140px; height: 140px;
    background: linear-gradient(135deg, var(--brand-500), #8b5cf6);
    border-radius: 999px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-lg);
}
.founder-sig {
    font-family: 'Caveat', 'Dancing Script', cursive;
    font-size: 1.4rem;
    color: var(--slate-900);
    font-weight: 600;
}
.founder-role { font-size: 0.85rem; color: var(--slate-500); }
.founder-kicker { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand-600); margin-bottom: 1rem; }
.founder-quote { margin: 0; border-left: 3px solid var(--brand-500); padding-left: 1.5rem; }
.founder-quote p {
    font-size: 1.2rem;
    line-height: 1.55;
    color: var(--slate-800);
    margin-bottom: 1rem;
    letter-spacing: -0.005em;
}
.founder-quote p:first-child {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--slate-900);
    letter-spacing: -0.015em;
}
.founder-quote p:last-child { margin-bottom: 0; }

/* =============== Sticky CTA bar =============== */
.sticky-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--slate-900);
    color: #fff;
    padding: 0.9rem 1rem;
    box-shadow: 0 -8px 24px rgba(0,0,0,0.15);
    z-index: 60;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.sticky-cta-text strong { display: inline; font-weight: 800; margin-right: 0.4rem; }
.sticky-cta-text span { color: #cbd5e1; font-size: 0.95rem; }
.sticky-cta-actions { display: flex; align-items: center; gap: 0.5rem; }
.sticky-cta .btn-primary-lg { background: var(--brand-500); color: #fff; }
.sticky-cta .btn-primary-lg:hover { background: var(--brand-600); }
.sticky-cta-close {
    width: 44px; height: 44px;
    min-width: 44px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: #fff;
    border-radius: 999px;
    font-size: 1.3rem;
    cursor: pointer;
    line-height: 1;
    flex-shrink: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}
.sticky-cta-close:hover { background: rgba(255,255,255,0.08); }

/* =============== Animated counters — base =============== */
.num-counter[data-counted="0"] { visibility: hidden; }

/* =============== Responsive =============== */
@media (max-width: 900px) {
    .tour-panel.is-active { grid-template-columns: 1fr; }
    .tscr-inbox { grid-template-columns: 140px 1fr; }
    .ai-grid { grid-template-columns: 1fr 1fr; }
    .ai-card.ai-big { grid-column: span 2; }
    .hours5-wrap { grid-template-columns: 1fr; }
    .hours5-right { order: -1; }
    .clock { width: 200px; height: 200px; }
    .intg-grid { grid-template-columns: repeat(2, 1fr); }
    .calc-wrap { grid-template-columns: 1fr; padding: 1.75rem; }
    .calc-result { grid-template-columns: 1fr auto 1fr; }
    .founder-wrap { grid-template-columns: 1fr; text-align: center; }
    .founder-quote { border-left: none; padding-left: 0; border-top: 3px solid var(--brand-500); padding-top: 1.5rem; text-align: left; }
    .hero-roi { padding: 1rem; border-radius: 1rem; }
    .ana-kpis { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .ai-grid { grid-template-columns: 1fr; }
    .ai-card.ai-big { grid-column: span 1; }
    .tscr-row { grid-template-columns: 1.5fr 1fr 1fr; }
    .tscr-row > *:nth-child(4), .tscr-row > *:nth-child(5) { display: none; }
    .intg-grid { grid-template-columns: 1fr; }
    .calc-result { grid-template-columns: 1fr; }
    .calc-arrow { transform: rotate(90deg); }
    .sticky-cta-text { flex: 1; min-width: 0; }
    .sticky-cta-text strong { display: block; }
    .sticky-cta-inner { flex-wrap: nowrap; align-items: center; gap: 0.625rem; padding: 0.625rem 0.75rem; }
    .sticky-cta-text span { display: none; }
    .sticky-cta-actions { flex-shrink: 0; }
    .sticky-cta-close { width: 44px; height: 44px; min-width: 44px; font-size: 1.1rem; }
}
