﻿:root {
    --bg: #0f1116;
    --fg: #f2efe8;
    --muted: #b4afa6;
    --hubspot: #d4a44c;
    --nav-h: 60px;
    --owl-color: #d4a44c; /* Unified with --hubspot */
    --stat-label: #aaa;
    --surface: rgba(255, 255, 255, 0.05);
    --surface-strong: rgba(255, 255, 255, 0.08);
    --surface-border: rgba(255, 255, 255, 0.12);
    --surface-border-strong: rgba(255, 255, 255, 0.2);
    --overlay: rgba(0, 0, 0, 0.92);
    --btn-font-size: 15px;
    --btn-line-height: 1.2;
}

:root[data-theme='light'] {
    --bg: #f6f1e8;
    --fg: #16181d;
    --muted: #57544c;
    --hubspot: #b88b35;
    --owl-color: #b88b35;
    --stat-label: #706a60;
    --surface: rgba(22, 24, 29, 0.04);
    --surface-strong: rgba(22, 24, 29, 0.08);
    --surface-border: rgba(22, 24, 29, 0.12);
    --surface-border-strong: rgba(22, 24, 29, 0.18);
    --overlay: rgba(246, 241, 232, 0.95);
}

:root[data-theme='light'] .text-white {
    color: #111318 !important;
}

:root[data-theme='light'] .text-white-50 {
    color: #3a3d45 !important;
}

:root[data-theme='light'] .setup-guide .guide-header,
:root[data-theme='light'] .setup-guide .guide-footer {
    color: #111318;
}

:root[data-theme='light'] .pricing-page .pricing-card.featured::before {
    color: #222;
}

:root[data-theme='light'] .wizard-page .wizard-option {
    color: #16181d;
}

:root[data-theme='light'] .wizard-page .demo-form .form-control,
:root[data-theme='light'] .wizard-page .demo-form .form-control:focus {
    color: #16181d;
}

:root[data-theme='light'] .wizard-page .demo-form .form-control::placeholder {
    color: rgba(22, 24, 29, 0.55);
}

html, body {
    background: var(--bg);
    color: var(--fg);
    color-scheme: dark;
}

html[data-theme='light'], html[data-theme='light'] body {
    color-scheme: light;
}

/* Navbar styles now live in assets/style.css */

.btn,
.btn-get,
.btn-login,
.btn-hubspot,
.pricing-page .btn-owl,
.pricing-page .btn-outline-owl,
.pricing-page .toggle-btn,
.wizard-page .btn-next,
.wizard-page .btn-restart,
.wizard-page .demo-form .btn-demo {
    font-family: inherit;
    font-size: var(--btn-font-size);
    line-height: var(--btn-line-height);
}

.topbar a.btn-login,
.topbar a.btn-login:hover,
.mobile-menu a.btn-login,
.mobile-menu a.btn-login:hover {
    color: #222;
}

/* Mobile navigation layout now lives in assets/style.css */

.btn-get {
    background: transparent;
    border: 1px solid var(--surface-border);
    color: var(--fg);
    padding: 6px 12px;
    border-radius: 8px;
    text-decoration: none;
}

.btn-login {
    background: var(--hubspot);
    border: 1px solid var(--hubspot);
    color: #1a1a1a;
    padding: 6px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    color: #222;
}

.btn-login:hover {
    background: #ff916f;
    border-color: #ff916f;
    color: #1a1a1a;
    text-decoration: none;
}


.theme-toggle {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--surface-border);
    background: var(--surface);
    color: var(--fg);
    padding: 0;
    flex: 0 0 auto;
    transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.theme-toggle:hover {
    border-color: var(--hubspot);
    color: var(--hubspot);
}

.theme-toggle .theme-icon {
    display: none;
    width: 16px;
    height: 16px;
}

.theme-toggle .theme-icon svg {
    width: 16px;
    height: 16px;
    display: block;
}

.theme-toggle[data-theme='dark'] .theme-icon-moon,
.theme-toggle[data-theme='light'] .theme-icon-sun {
    display: inline-flex;
}

.wrap {
    min-height: calc(75svh - var(--nav-h) - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 16px 4em;
}

/* Owl */
.owl {
    width: min(70vmin, 680px);
    height: auto;
    display: block;
    margin: 0 auto 28px;
}

.eye {
    filter: drop-shadow(0 0 22px rgba(255, 255, 255, .08));
}

.eyelid {
    transform-origin: 50% 0;
    transform: scaleY(0);
}

@keyframes blink {
    0%, 92%, 100% {
        transform: scaleY(0);
    }
    94%, 98% {
        transform: scaleY(1);
    }
}

.eyelid {
    animation: blink 5.5s infinite;
}

/* Type */
h1 {
    font-size: clamp(35px, 5vw, 67px);
    text-align: center;
    margin: 0 0 .25rem;
}

.sub {
    font-size: clamp(18px, 2.4vw, 26px);
    opacity: .9;
    text-align: center;
    margin-bottom: 1rem;
}

.lead {
    color: var(--muted);
    max-width: 880px;
    margin: 0 auto 1.25rem;
    text-align: center;
}

main.wrap > .lead,
.pricing-page .pricing-header .lead,
.setup-guide .guide-header p {
    font-size: clamp(18px, 2.4vw, 26px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    padding: .4rem .8rem;
    border-radius: 999px;
    border: 1px solid var(--surface-border);
    background: var(--surface);
    color: var(--hubspot);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.hero-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.hero-stats span {
    display: inline-flex;
    align-items: center;
    padding: .45rem .8rem;
    border-radius: 999px;
    border: 1px solid var(--surface-border);
    background: var(--surface);
    color: var(--muted);
    font-size: 14px;
}

.tech-eyes-image {
    width: 100%;
    max-width: 560px;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    border: 1px solid var(--surface-border);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.tech-page .lead,
.tech-page .sub {
    max-width: 860px;
}

/* CTA */
.btn-hubspot {
    background: var(--hubspot);
    border: 2px solid var(--hubspot);
    color: #1a1a1a;
    transition: .2s ease;
}

.btn-hubspot:hover {
    background: transparent;
    color: var(--hubspot);
    border-color: var(--hubspot);
}

/* Sections */
.section {
    padding: 6rem 0;
}

/* Mobile: reduce section padding */
@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }

    .hero-badge {
        font-size: 12px;
    }

    .logo {
        width: 90%;
        height: auto !important;
        max-height: 50px;
    }
}

/* Two-column how-row: left fills available space, right is a square */
.how-row {
    display: flex;
    gap: 1rem;
    align-items: stretch;
    flex-wrap: wrap;
}

.how-left {
    flex: 1 1 420px; /* grow to fill, but not shrink too small */
    min-width: 280px;
}

.how-right {
    flex: 0 0 auto; /* fixed size column */
    width: clamp(220px, 38vw, 420px);
    aspect-ratio: 1 / 1; /* force square */
}

/* Ensure the dash-placeholder fills the square container */
.how-right .dash-placeholder {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
}

/* Stack vertically on smaller screens */
@media (max-width: 992px) {
    .how-row {
        flex-direction: column-reverse; /* put image under the text on md/sm */
    }

    .how-right {
        width: 100%;
        aspect-ratio: 1 / 1;
    }
}

.how-card {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    padding: 1.25rem;
    height: 100%;
    backdrop-filter: blur(6px);
}

.dash-placeholder {
    aspect-ratio: 16/9;
    width: 100%;
    border-radius: 14px;
    background: linear-gradient(0deg, var(--surface), var(--surface)), repeating-linear-gradient(90deg, var(--surface-border) 0 1px, transparent 1px 40px);
    border: 1px dashed var(--surface-border-strong);
}

.section h2,
.section h3 {
    color: var(--fg);
}

/* Rotating background inside dash-placeholder */
.dash-placeholder {
    position: relative;
    overflow: hidden;
}

.dash-placeholder .rot-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 0.8s ease-in-out;
    opacity: 0;
    will-change: opacity;
}

/* Match any rot-bg element that has a class containing 'show' (keeps linter happy) */
.dash-placeholder .rot-bg[class*='show'] {
    opacity: 1;
}

/* slightly larger on small screens to avoid letterboxing */
@media (max-width: 576px) {
    .dash-placeholder .rot-bg {
        background-size: cover;
    }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .dash-placeholder .rot-bg {
        transition: none !important;
    }
}

.logo {
    height: 52px;
    max-width: 100%;
    opacity: .8;
    filter: grayscale(100%) brightness(0.95);
    transition: opacity .2s, filter .2s;
}

.logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Footer tweaks: make form compact and proportional */
#plans {
    padding-bottom: 10rem;
}

/* Responsive compact form inside footer */
#plans .lead-form {
    display: flex;
    gap: .5rem;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

/* Label: show on md+, hide on small screens to save vertical space */
#plans .lead-form label {
    font-size: 14px;
    color: var(--muted);
    margin: 0 .5rem 0 0;
    white-space: nowrap;
    display: none;
}

@media (min-width: 768px) {
    #plans .lead-form label {
        display: block;
    }
}

/* Make input flexible but not gigantic */
#plans .lead-form .form-control {
    flex: 1 1 220px;
    min-width: 160px;
    border-radius: 10px;
}

/* Reduce the oversized Bootstrap large sizing only in footer */
#plans .form-control-lg {
    padding: .45rem .75rem;
    font-size: 15px;
    height: auto;
}

#plans .btn-lg {
    padding: .45rem .9rem;
    font-size: 15px;
    border-radius: 10px;
}

/* Tighter spacing for small screens */
@media (max-width: 575.98px) {
    #plans .lead-form {
        gap: .5rem;
    }

    #plans .lead-form .form-control {
        width: 100%;
    }

    #plans .lead-form .btn {
        width: 100%;
    }
}

/* Slightly smaller logos in footer */
#plans .logo {
    height: 42px;
    max-width: 100%;
    opacity: .85;
}

/* Reduce heavy border/padding look */
#plans .container .row {
    gap: 1rem;
}

.text-hubspot {
    color: var(--hubspot);
}

/* Footer styles now live in assets/style.css */

/* New section styles */
.why-section {
    padding: 4rem 0;
    text-align: center;
}

/* Make Why section h2 match How it works h2 size */
.how-card h2,
.why-section h2 {
    margin-bottom: 2rem;
    font-size: clamp(24px, 3vw, 35px);
}

.why-section p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.thank-msg {
    display: none;
    background: var(--hubspot);
    color: #1a1a1a;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    margin-top: .5rem;
}

/* Section diamond separator (matches owl nose color) */
.section-separator {
    padding: 2.25rem 0; /* equal top and bottom spacing */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* diamond size + subtle fade animation */
.section-sep {
    width: 20px;
    height: 20px;
    display: block;
    opacity: 0.5; /* start value */
    animation: sepPulse 3s ease-in-out infinite;
}

@keyframes sepPulse {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 0.5;
    }
}

@media (max-width: 576px) {
    .section-sep {
        width: 28px;
        height: 28px;
    }

    .section-separator {
        padding: 1.5rem 0;
    }
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    .section-sep {
        animation: none !important;
    }
}

.animate-number {
    display: inline-block;
    transition: all 2s ease-out;
}

/* Prevent number and percent sign from wrapping separately */
.nowrap {
    white-space: nowrap;
}

.animate-number[data-target] {
    opacity: 0;
}


/* Left-align policy content */
.policy {
    text-align: left;
}

.policy h1 {
    font-size: clamp(32px, 4.5vw, 48px);
    margin: 0 0 .25rem;
    text-align: center;
}

.policy .sub {
    color: var(--muted);
    margin-bottom: 1.25rem;
    text-align: center;
}

.policy section {
    margin: 1.25rem 0;
}

.policy h2 {
    font-size: 18px;
    margin-bottom: .5rem;
}

.policy p, .policy ul {
    margin: 0 0 .6rem;
    line-height: 1.6;
    color: var(--fg);
}

.policy ul {
    list-style: none;
    padding-left: 0;
}

.policy ul li::before {
    content: "■ ";
    color: var(--hubspot);
    margin-right: .25rem;
    font-size: 13px;
    vertical-align: middle;
}

.policy a {
    color: var(--hubspot);
    text-decoration: none;
}

.video-block {
    margin-top: 1.5rem;
}

.video-player-wrap {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.video-inner {
    width: 100%;
    height: calc(1140px * 0.5625);
    position: relative;
}

.video-inner video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #000;
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12));
    transition: opacity .2s ease;
}

.video-play-button {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.video-play-button svg {
    width: 44px;
    height: 44px;
    fill: var(--hubspot);
    margin-left: 4px;
}

.video-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 767.98px) {
    .video-inner {
        height: calc(100vw * 0.5625);
    }

    .video-play-button {
        width: 80px;
        height: 80px;
    }

    .video-play-button svg {
        width: 36px;
        height: 36px;
    }
}

/* ========================================
   HubSpot Setup Guide Styles
   Scoped to .setup-guide to avoid conflicts
   ======================================== */

.setup-guide {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #33475b;
    background: #f5f8fa;
}

.setup-guide .guide-header {
    background: #000;
    color: #fff;
    padding: 120px 0 2.5rem;
    border-bottom: 3px solid var(--hubspot);
}

.setup-guide .guide-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.setup-guide .guide-header .row {
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.setup-guide .guide-header .col,
.setup-guide .guide-header .col-auto {
    flex: 0 0 100%;
    max-width: 100%;
}

.setup-guide .guide-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.setup-guide .guide-header h1 {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin: 0 0 .25rem;
}

.setup-guide .guide-header p {
    margin: 0;
    max-width: 880px;
    font-size: clamp(18px, 2.4vw, 26px);
    color: rgba(255, 255, 255, 0.72);
}

.setup-guide .guide-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.setup-guide .intro {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.setup-guide .intro h2 {
    margin-bottom: 1rem;
    font-size: 24px;
    text-align: left;
}

.setup-guide .intro p {
    margin-bottom: 1rem;
    font-size: 17px;
}

.setup-guide .guide-section {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.setup-guide .guide-section h2 {
    color: #2d3e50;
    margin-bottom: 1.5rem;
    font-size: 28px;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--hubspot);
    text-align: left;
}

.setup-guide .guide-section h3 {
    color: #33475b;
    margin: 1.5rem 0 1rem;
    font-size: 21px;
    text-align: left;
}

.setup-guide .step {
    position: relative;
    background: #f5f8fa;
    border-left: 4px solid var(--hubspot);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}


.setup-guide .step h4 {
    color: #2d3e50;
    margin-bottom: 0.75rem;
    font-size: 18px;
}


.setup-guide .step p {
    margin-bottom: 0.75rem;
}

.setup-guide .code-block {
    background: #f5f8fa;
    border: 1px solid #cbd6e2;
    border-radius: 4px;
    padding: 1rem;
    margin: 1rem 0;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    overflow-x: auto;
}

.setup-guide .note {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 4px;
}

.setup-guide .note strong {
    color: #0091ae;
    display: block;
    margin-bottom: 0.5rem;
}

.setup-guide .warning {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 4px;
}

.setup-guide .warning strong {
    color: #856404;
    display: block;
    margin-bottom: 0.5rem;
}

.setup-guide .success {
    background: #d4edda;
    border-left: 4px solid #28a745;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 4px;
}

.setup-guide .success strong {
    color: #155724;
    display: block;
    margin-bottom: 0.5rem;
}

.setup-guide ul, .setup-guide ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.setup-guide li {
    margin-bottom: 0.5rem;
}

.setup-guide .cta-button {
    display: inline-block;
    background: var(--hubspot);
    color: #222;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.setup-guide .cta-button:hover {
    background: #e8603d; /* Darker hubspot */
    color: #222;
    text-decoration: none;
}

.setup-guide .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.setup-guide .feature-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 1.5rem;
    transition: box-shadow 0.3s ease;
}

.setup-guide .feature-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.setup-guide .guide-footer {
    background: #2d3e50;
    color: #fff;
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
}

.setup-guide .guide-footer a {
    color: var(--hubspot);
    text-decoration: none;
}

.setup-guide .guide-footer a:hover {
    color: #ff9d7a; /* Lighter hubspot shade */
    text-decoration: underline;
}

@media (max-width: 768px) {
    .setup-guide .guide-header .container {
        flex-direction: column;
        text-align: center;
    }

    .setup-guide .guide-container {
        padding: 2rem 1rem;
    }

    .setup-guide .guide-section {
        padding: 1.5rem;
    }

    .setup-guide .step {
        padding-left: 1.5rem;
    }
}

/* ========================================
   Pricing Page Styles
   Scoped to .pricing-page to avoid conflicts
   ======================================== */

.pricing-page .pricing-header {
    padding: 120px 0 2rem;
    text-align: center;
}

.pricing-page .pricing-header h1 {
    font-size: clamp(35px, 5vw, 67px);
    text-align: center;
    margin: 0 0 .25rem;
}

.pricing-page .pricing-header .lead {
    color: var(--muted);
    max-width: 880px;
    margin: 0 auto 1.25rem;
    text-align: center;
}

.pricing-page .pricing-card {
    border: 2px solid var(--surface-border);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    background: var(--surface);
    display: flex;
    flex-direction: column;
}

.pricing-page .pricing-card:hover {
    border-color: var(--owl-color);
    box-shadow: 0 10px 30px rgba(212, 164, 76, 0.15);
    transform: translateY(-5px);
}

.pricing-page .pricing-card.featured {
    border-color: var(--owl-color);
    border-width: 3px;
    position: relative;
}

.pricing-page .pricing-card.featured::before {
    content: none;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--owl-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.pricing-page .plan-name {
    font-size: 22px;
    font-weight: bold;
    color: var(--owl-color);
    margin-bottom: 0.75rem;
}

.pricing-page .plan-price {
    font-size: 40px;
    font-weight: bold;
    color: var(--fg);
    margin-bottom: 0.35rem;
    line-height: 1.1;
}

.pricing-page .plan-price .currency {
    font-size: 20px;
    vertical-align: super;
}

.pricing-page .plan-price .period {
    font-size: 16px;
    color: var(--muted);
    font-weight: normal;
}

.pricing-page .plan-companies {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.pricing-page .plan-details {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    flex-grow: 1;
}

.pricing-page .plan-details li {
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--surface-border);
    color: var(--muted);
    line-height: 1.45;
}

.pricing-page .plan-details li:last-child {
    border-bottom: none;
}

.pricing-page .plan-details li strong {
    color: var(--fg);
}

.pricing-page .pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.pricing-page .toggle-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--surface-border);
    background: var(--surface);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--fg);
}

.pricing-page .toggle-btn.active {
    background: var(--owl-color);
    color: #222;
    border-color: var(--owl-color);
}

.pricing-page .save-badge {
    background: var(--hubspot);
    color: #222;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1.2;
    font-weight: bold;
    margin-left: 0.5rem;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.pricing-page .trial-note {
    display: block;
    margin-top: 0.25rem;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
}

.pricing-page .custom-price {
    font-size: 30px;
    font-weight: 700;
    color: var(--hubspot);
}

.pricing-page .enterprise-card {
    background: var(--surface);
    color: var(--fg);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
    border: 2px solid var(--surface-border);
}

.pricing-page .enterprise-card h3 {
    font-size: 32px;
    margin-bottom: 1rem;
    color: var(--hubspot);
}

.pricing-page .enterprise-card p {
    font-size: 18px;
    margin-bottom: 2rem;
    color: var(--muted);
}

.pricing-page .enterprise-subtitle {
    max-width: 760px;
    margin: 0 auto 2rem;
    font-size: 16px;
    line-height: 1.65;
    color: var(--fg-dim);
}

.pricing-page .enterprise-form {
    margin-top: 2rem;
}

.pricing-page .pricing-matrix-wrap {
    border: 2px solid var(--surface-border);
    border-radius: 12px;
    padding: 1.5rem;
    background: var(--surface);
}

.pricing-page .pricing-matrix {
    margin: 0;
    color: var(--fg);
}

.pricing-page .pricing-matrix thead th {
    font-size: 13px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--hubspot);
    border-bottom: 1px solid var(--surface-border-strong);
    background: color-mix(in srgb, var(--hubspot) 8%, transparent);
}

.pricing-page .pricing-matrix tbody th,
.pricing-page .pricing-matrix tbody td {
    border-color: var(--surface-border);
    background: transparent;
    color: var(--fg);
}

.pricing-page .pricing-matrix tbody th {
    font-size: 13px;
    color: var(--muted);
    white-space: nowrap;
}

@media (min-width: 992px) {
    .pricing-page .col-lg-3 {
        width: 25%;
    }
}

.pricing-page .enterprise-form .form-control {
    border: 2px solid var(--surface-border);
    padding: 0.75rem 1rem;
    font-size: 16px;
    color: var(--fg);
    background: var(--bg);
}

.pricing-page .enterprise-form .form-control:focus {
    border-color: var(--owl-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 122, 89, 0.25);
}

.pricing-page .enterprise-form .form-control::placeholder {
    color: var(--muted);
}

.pricing-page .btn-owl {
    background: var(--owl-color);
    color: #111318;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    width: 100%;
    min-height: 50px;
    align-content: center;
}

.pricing-page .btn-owl:hover {
    background: #b88b35;
    color: #111318;
    transform: scale(1.05);
}

.pricing-page .btn-outline-owl {
    background: transparent;
    color: var(--hubspot);
    border: 2px solid var(--hubspot);
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.pricing-page .btn-outline-owl:hover {
    background: var(--hubspot);
    color: #222;
}

.pricing-page .free-trial-badge {
    background: #28a745;
    color: #111318;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.pricing-page .pricing-faq .accordion-item {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    margin-bottom: .75rem;
    overflow: hidden;
}

.pricing-page .pricing-faq .accordion-button {
    background: var(--surface);
    color: var(--fg);
}

.pricing-page .pricing-faq .accordion-button:not(.collapsed) {
    background: color-mix(in srgb, var(--hubspot) 16%, var(--surface));
    color: var(--fg);
    box-shadow: none;
}

.pricing-page .pricing-faq .accordion-button:focus {
    border-color: var(--surface-border-strong);
    box-shadow: 0 0 0 .2rem color-mix(in srgb, var(--hubspot) 18%, transparent);
}

.pricing-page .pricing-faq .accordion-button::after {
    filter: var(--accordion-icon-filter, invert(0.85));
}

:root[data-theme='light'] .pricing-page .pricing-faq .accordion-button::after {
    --accordion-icon-filter: invert(0.2);
}

.pricing-page .pricing-faq .accordion-body {
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    color: var(--muted);
}

.solution-faq .accordion-item {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    margin-bottom: .75rem;
    overflow: hidden;
}

.solution-faq .accordion-button {
    background: var(--surface);
    color: var(--fg);
}

.solution-faq .accordion-button:not(.collapsed) {
    background: color-mix(in srgb, var(--hubspot) 16%, var(--surface));
    color: var(--fg);
    box-shadow: none;
}

.solution-faq .accordion-button:focus {
    border-color: var(--surface-border-strong);
    box-shadow: 0 0 0 .2rem color-mix(in srgb, var(--hubspot) 18%, transparent);
}

.solution-faq .accordion-button::after {
    filter: var(--accordion-icon-filter, invert(0.85));
}

:root[data-theme='light'] .solution-faq .accordion-button::after {
    --accordion-icon-filter: invert(0.2);
}

.solution-faq .accordion-body {
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    color: var(--muted);
}

.solution-more-link {
    color: var(--hubspot);
    font-weight: 600;
    text-decoration: none;
}

.solution-more-link:hover {
    color: var(--hubspot);
    text-decoration: underline;
}

/* ========== Wizard Page Styles ========== */
.wizard-page {
    padding-top: var(--nav-h);
    min-height: 100svh;
    display: flex;
    flex-direction: column;
}

.wizard-page .wizard-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 1rem;
    flex: 1;
    width: 100%;
}

.wizard-page .site-footer {
    margin-top: auto;
}

.wizard-page .wizard-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 122, 89, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.wizard-page .wizard-card h2 {
    text-align: center;
    color: var(--hubspot);
    margin-bottom: 1.5rem;
}

.wizard-page .question-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 122, 89, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.wizard-page .question-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 122, 89, 0.4);
}

.wizard-page .wizard-option {
    display: block;
    width: 100%;
    padding: 1rem;
    margin: 0.5rem 0;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 122, 89, 0.3);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.wizard-page .wizard-option:hover {
    background: rgba(212, 164, 76, 0.1);
    border-color: var(--hubspot);
    transform: translateY(-2px);
}

.wizard-page .wizard-option.selected {
    background: rgba(212, 164, 76, 0.2);
    border-color: var(--hubspot);
}

.wizard-page .wizard-progress {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.wizard-page .wizard-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--hubspot), var(--owl-color));
    transition: width 0.5s ease;
}

.wizard-page .result-card {
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    text-align: center;
}

.wizard-page .result-excellent {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(76, 175, 80, 0.05));
    border: 2px solid #4caf50;
}

.wizard-page .result-good {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 193, 7, 0.05));
    border: 2px solid #ffc107;
}

.wizard-page .result-neutral {
    background: linear-gradient(135deg, rgba(158, 158, 158, 0.2), rgba(158, 158, 158, 0.05));
    border: 2px solid #9e9e9e;
}

.wizard-page .result-icon {
    font-size: 64px;
    margin-bottom: 1rem;
}

.wizard-page .result-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.wizard-page .result-description {
    font-size: 18px;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.wizard-page .btn-next,
.wizard-page .btn-restart {
    background: var(--owl-color);
    border: none;
    padding: 1rem 3rem;
    font-weight: 700;
    border-radius: 8px;
    color: #222 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0;
}

.wizard-page .btn-next:hover,
.wizard-page .btn-restart:hover {
    background: var(--owl-color);
    transform: translateY(-2px);
    color: #222 !important;
}

.wizard-page .btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.wizard-page .fade-in {
    animation: fadeIn 0.5s ease-in;
}

.wizard-page .demo-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 122, 89, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.wizard-page .demo-form .form-label {
    color: var(--hubspot);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.wizard-page .demo-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.wizard-page .demo-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--hubspot);
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(255, 122, 89, 0.25);
}

.wizard-page .demo-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.wizard-page .demo-form .btn-demo {
    background: var(--owl-color);
    border: none;
    color: #222 !important;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.wizard-page .demo-form .btn-demo:hover {
    background: var(--owl-color);
    color: #222 !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Enterprise Card Styles for Pricing Page
   ======================================== */
.pricing-page .pricing-card.enterprise {
    background: linear-gradient(135deg, rgba(255, 122, 89, 0.15), rgba(255, 122, 89, 0.05));
    border: 2px solid var(--hubspot);
}

.pricing-page .pricing-card.enterprise .plan-price {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-page .pricing-card.enterprise .enterprise-label {
    font-size: 40px;
    font-weight: 700;
    color: var(--hubspot);
}

/* Mobile menu styles now live in assets/style.css */

/* Mobile theme toggle in side menu */
.mobile-theme-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    font-size: 18px;
    color: var(--fg);
}

.mobile-theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid var(--surface-border);
    background: var(--surface);
    color: var(--fg);
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color .2s, color .2s;
}

.mobile-theme-btn:hover {
    border-color: var(--hubspot);
    color: var(--hubspot);
}

.mobile-theme-btn .theme-icon {
    display: none;
    width: 18px;
    height: 18px;
}

.mobile-theme-btn .theme-icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.mobile-theme-btn[data-theme='dark'] .theme-icon-moon,
.mobile-theme-btn[data-theme='light'] .theme-icon-sun {
    display: inline-flex;
}

/* Desktop: hide hamburger and mobile menu */
@media (min-width: 992px) {
    .hamburger-btn {
        display: none !important;
    }

    .mobile-menu {
        display: none !important;
    }
}

/* ================================================================
   PARALLAX BACKGROUND + INTERACTIVE WIDGETS
   ================================================================ */

/* ---- Parallax Canvas ---- */
#parallax-bg-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.33;
}
/* Content layers above canvas */
main.wrap, .section, .section-separator, footer.site-footer {
    position: relative;
    z-index: 1;
}

/* ---- Shared Widget Panel ---- */
.widget-panel {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    border-radius: 20px;
    border: 1px solid var(--surface-border);
    box-shadow: 0 18px 45px rgba(0,0,0,.20);
    background: color-mix(in srgb, var(--bg) 72%, transparent);
    backdrop-filter: blur(12px);
    overflow: hidden;
    font-size: 13px;
    position: relative;
}

/* ---- On-scroll reveal animation ---- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ================================================================
   INTEL AGENTS FLOW WIDGET
   ================================================================ */
.intel-flow-widget {
    aspect-ratio: 4/3;
    background: radial-gradient(ellipse at 50% 50%, rgba(212,164,76,.05) 0%, transparent 70%);
    display: flex; align-items: center; justify-content: center;
}
.intel-flow-widget svg { width: 100%; height: 100%; display: block; }
.intel-flow-widget text {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    dominant-baseline: middle;
}

.flow-line { stroke-dasharray: 8 5; animation: flowDash 2.8s linear infinite; }
.flow-line-rev { stroke-dasharray: 8 5; animation: flowDash 2.8s linear infinite reverse; }
@keyframes flowDash { to { stroke-dashoffset: -26; } }

.flow-pulse-ring { animation: flowNodePulse 2.2s ease-in-out infinite; }
@keyframes flowNodePulse {
    0%,100% { r: 22; opacity: .05; }
    50%      { r: 30; opacity: .14; }
}

/* ---- Intel Triage Widget (2nd widget) ---- */
.intel-triage-widget {
    padding: 0;
    display: flex;
    flex-direction: column;
}
.triage-header {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--surface-border);
    font-size: 13px; font-weight: 700; color: var(--fg);
}
.triage-live-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #5ecfb0; box-shadow: 0 0 6px #5ecfb0;
    animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse { 0%,100%{box-shadow:0 0 6px #5ecfb0;} 50%{box-shadow:0 0 12px #5ecfb0;} }
.triage-cols {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
}
.triage-col { border-right: 1px solid var(--surface-border); padding: 8px; }
.triage-col:last-child { border-right: 0; }
.triage-col-label {
    font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
    margin-bottom: 7px; padding-bottom: 5px; border-bottom: 1px solid var(--surface-border);
}
.triage-col-label.risk    { color: #f87171; }
.triage-col-label.expand  { color: #5ecfb0; }
.triage-col-label.watch   { color: var(--hubspot); }
.triage-item {
    background: var(--surface-strong); border: 1px solid var(--surface-border);
    border-radius: 7px; padding: 6px 8px; margin-bottom: 5px; font-size: 11px;
    color: var(--fg); line-height: 1.35;
}
.triage-item .ti-co { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 2px; }
.triage-item .ti-co.risk   { color: #f87171; }
.triage-item .ti-co.expand { color: #5ecfb0; }
.triage-item .ti-co.watch  { color: var(--hubspot); }
.triage-item .ti-event { color: var(--muted); font-size: 10px; }

/* ================================================================
   CO-OWL FEED WIDGET
   ================================================================ */
.co-owl-feed-widget {
    max-height: 450px;
    display: flex;
    flex-direction: column;
}
.feed-wh {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--surface-border);
    font-weight: 700; font-size: 13px; color: var(--fg);
}
.feed-wh-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #5ecfb0; box-shadow: 0 0 6px #5ecfb0;
    animation: livePulse 2s ease-in-out infinite;
}
.feed-filter-row {
    display: flex; gap: 5px; margin-left: auto;
}
.feed-chip {
    font-size: 10px; padding: 2px 8px; border-radius: 999px;
    border: 1px solid var(--surface-border); background: var(--surface);
    color: var(--muted); cursor: pointer; font-family: inherit;
    transition: border-color .15s, color .15s;
}
.feed-chip.active, .feed-chip:hover { border-color: var(--hubspot); color: var(--hubspot); }
.feed-scroll {
    overflow-y: auto; flex: 1; padding: 8px;
    display: flex; flex-direction: column; gap: 8px;
    scrollbar-width: thin; scrollbar-color: var(--surface-border) transparent;
}
.feed-card {
    background: var(--surface-strong); border: 1px solid var(--surface-border);
    border-radius: 11px; padding: 10px 12px;
    transition: border-color .15s;
}
.feed-card:hover { border-color: var(--surface-border-strong); }
.feed-card-top {
    display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; margin-bottom: 2px;
}
.feed-co { font-size: 10px; color: var(--hubspot); font-weight: 700; text-transform: uppercase; letter-spacing:.05em; }
.pri-badge {
    font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 999px;
    text-transform: uppercase; letter-spacing: .04em; flex-shrink: 0;
}
.pri-badge.high { background:rgba(239,68,68,.15); color:#f87171; border:1px solid rgba(239,68,68,.25); }
.pri-badge.med  { background:rgba(212,164,76,.15); color:var(--hubspot); border:1px solid rgba(212,164,76,.25); }
.pri-badge.low  { background:rgba(94,207,176,.12); color:#5ecfb0; border:1px solid rgba(94,207,176,.2); }
.feed-title { font-size: 13px; font-weight: 600; color: var(--fg); margin: 2px 0 4px; line-height: 1.3; }
.feed-desc { font-size: 12px; color: var(--muted); margin: 0 0 8px; line-height: 1.45; }
.feed-actions { display: flex; gap: 5px; flex-wrap: wrap; }
.fa-btn {
    font-size: 11px; padding: 3px 9px; border-radius: 7px;
    border: 1px solid var(--surface-border); background: var(--surface);
    color: var(--muted); cursor: pointer; font-family: inherit; line-height: 1.4;
    transition: border-color .15s, color .15s, background .15s;
}
.fa-btn:hover { border-color: var(--hubspot); color: var(--hubspot); }
.fa-btn.primary { border-color:rgba(212,164,76,.4); color:var(--hubspot); background:rgba(212,164,76,.06); }
.fa-btn.primary:hover { background:rgba(212,164,76,.14); }
.fa-btn.liked { border-color:rgba(94,207,176,.4); color:#5ecfb0; background:rgba(94,207,176,.08); }
.fa-btn.disliked { border-color:rgba(239,68,68,.4); color:#f87171; background:rgba(239,68,68,.08); }
.feed-draft {
    margin-top: 9px; padding: 9px 11px;
    background: rgba(212,164,76,.05); border: 1px solid rgba(212,164,76,.22);
    border-radius: 9px; font-size: 12px; color: var(--fg); line-height: 1.55;
    display: none;
}
.feed-draft.show { display: block; }
.draft-label {
    font-size: 10px; color: var(--hubspot); font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px;
}
.draft-body { color: var(--muted); }
.draft-body strong { color: var(--fg); }

/* Co-Owl playbook widget */
.coowl-playbook-widget { padding: 0; display: flex; flex-direction: column; }
.pb-header {
    display: flex; align-items: center; gap: 8px; padding: 10px 14px;
    border-bottom: 1px solid var(--surface-border);
    font-size: 13px; font-weight: 700; color: var(--fg);
}
.pb-list { padding: 8px; display: flex; flex-direction: column; gap: 7px; }
.pb-card {
    background: var(--surface-strong); border: 1px solid var(--surface-border);
    border-radius: 10px; padding: 10px 12px;
}
.pb-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.pb-co { font-size: 10px; color: var(--hubspot); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.pb-type { font-size: 10px; color: var(--muted); }
.pb-action { font-size: 12px; font-weight: 600; color: var(--fg); margin-bottom: 3px; }
.pb-why { font-size: 11px; color: var(--muted); line-height: 1.4; margin-bottom: 7px; }
.pb-btns { display: flex; gap: 5px; }
.pb-btn {
    font-size: 11px; padding: 3px 9px; border-radius: 6px;
    border: 1px solid var(--surface-border); background: var(--surface);
    color: var(--muted); cursor: pointer; font-family: inherit;
    transition: all .15s;
}
.pb-btn:hover { border-color: var(--hubspot); color: var(--hubspot); }
.pb-btn.use { border-color:rgba(212,164,76,.4); color:var(--hubspot); background:rgba(212,164,76,.07); }
.pb-btn.use:hover { background:rgba(212,164,76,.15); }

/* ================================================================
   CORTEX CHAT WIDGET
   ================================================================ */
.cortex-demo-wrap {
    background: color-mix(in srgb, var(--bg) 68%, transparent);
    border: 1px solid var(--surface-border);
    border-radius: 22px;
    box-shadow: 0 22px 55px rgba(0,0,0,.22);
    backdrop-filter: blur(14px);
    overflow: hidden;
    width: 100%;
    position: relative; z-index: 1;
}
.cx-topbar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 9px 16px; border-bottom: 1px solid var(--surface-border);
    font-size: 12px; color: var(--muted);
}
.cx-topbar-title { font-weight: 700; font-size: 13px; color: var(--fg); }
.cx-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.cx-chip {
    font-size: 10px; padding: 2px 8px; border-radius: 999px;
    border: 1px solid var(--surface-border); color: var(--muted);
    display: flex; align-items: center; gap: 4px;
}
.cx-chip .cx-dot { width: 6px; height: 6px; border-radius: 50%; background: #5ecfb0; }
.cx-body { padding: 24px 22px 16px; }
.cx-hero { text-align: center; margin-bottom: 20px; }
.cx-icon-box {
    width: 54px; height: 54px; border-radius: 15px;
    background: rgba(212,164,76,.12); border: 1px solid rgba(212,164,76,.22);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 26px; margin-bottom: 11px;
}
.cx-hero h4 { font-size: 18px; font-weight: 700; color: var(--fg); margin-bottom: 4px; }
.cx-hero p  { font-size: 13px; color: var(--muted); margin: 0; }
.cx-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px;
}
@media (max-width: 576px) { .cx-grid { grid-template-columns: 1fr; } }
.cx-ex {
    background: var(--surface-strong); border: 1px solid var(--surface-border);
    border-radius: 11px; padding: 10px 12px; cursor: pointer;
    transition: border-color .15s, background .15s;
    text-align: left; width: 100%; font-family: inherit; color: inherit;
    display: block;
}
.cx-ex:hover { border-color: var(--hubspot); background: rgba(212,164,76,.06); }
.cx-try {
    font-size: 10px; color: var(--hubspot); font-weight: 700; text-transform: uppercase;
    letter-spacing: .05em; margin-bottom: 4px; display: flex; align-items: center; gap: 3px;
}
.cx-ex-text { font-size: 13px; color: var(--fg); line-height: 1.35; }
.cx-resp-wrap {
    margin-bottom: 14px; display: none;
    animation: fadeUpIn .25s ease;
}
.cx-resp-wrap.show { display: block; }
@keyframes fadeUpIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
.cx-resp-inner {
    background: var(--surface-strong); border: 1px solid rgba(212,164,76,.22);
    border-radius: 13px; padding: 13px 15px; font-size: 13px; color: var(--fg);
    line-height: 1.65; max-height: 200px; overflow-y: auto;
}
.cx-resp-label {
    font-size: 10px; color: var(--hubspot); font-weight: 700; text-transform: uppercase;
    letter-spacing: .06em; margin-bottom: 8px; display: flex; align-items: center; gap: 5px;
}
.cx-resp-label::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--hubspot); }
.cx-typing { display:inline-flex; gap:4px; align-items:center; }
.cx-typing span { width:5px; height:5px; border-radius:50%; background:var(--hubspot); animation:cxBounce 1.2s ease-in-out infinite; }
.cx-typing span:nth-child(2){animation-delay:.2s} .cx-typing span:nth-child(3){animation-delay:.4s}
@keyframes cxBounce { 0%,60%,100%{transform:translateY(0);opacity:.4} 30%{transform:translateY(-5px);opacity:1} }
.cx-input-row {
    display: flex; align-items: center; gap: 8px;
    background: var(--surface-strong); border: 1px solid var(--surface-border);
    border-radius: 12px; padding: 8px 10px 8px 14px;
    transition: border-color .2s;
}
.cx-input-row:focus-within { border-color: rgba(212,164,76,.5); }
.cx-arrow { font-size: 12px; color: var(--muted); flex-shrink: 0; }
.cx-input-row input {
    flex: 1; background: transparent; border: 0; outline: none;
    font-family: inherit; font-size: 13px; color: var(--fg);
}
.cx-input-row input::placeholder { color: var(--muted); }
.cx-send {
    background: var(--hubspot); border: 0; border-radius: 8px; padding: 5px 13px;
    font-size: 11px; font-weight: 700; color: #1a1a1a; cursor: pointer;
    font-family: inherit; text-transform: uppercase; letter-spacing: .05em;
    transition: opacity .15s; display: flex; align-items: center; gap: 5px; flex-shrink: 0;
}
.cx-send:hover { opacity: .85; }

/* ================================================================
   INTEGRATIONS WIDGETS
   ================================================================ */

/* HubSpot mock */
.hs-mock {
    border-radius: 16px; border: 1px solid var(--surface-border);
    background: color-mix(in srgb, var(--bg) 68%, transparent);
    backdrop-filter: blur(10px); overflow: hidden; font-size: 13px;
    box-shadow: 0 14px 36px rgba(0,0,0,.16);
}
.hs-mock-topbar {
    background: rgba(255,122,89,.07); border-bottom: 1px solid var(--surface-border);
    padding: 9px 14px; display: flex; align-items: center; gap: 8px;
}
.hs-logo-sq {
    width: 24px; height: 24px; border-radius: 6px;
    background: rgba(255,122,89,.14);
    border: 1px solid rgba(255,122,89,.32);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 13px; font-weight: 900; flex-shrink: 0;
}
.service-logo-img {
    width: 16px;
    height: 16px;
    display: block;
}
.hs-topbar-name { font-size: 13px; font-weight: 700; color: var(--fg); }
.hs-topbar-sub  { font-size: 11px; color: var(--muted); margin-left: auto; }
.hs-mock-body   { padding: 13px; }
.hs-good-morning { font-size: 16px; font-weight: 700; color: var(--fg); margin-bottom: 12px; }
.hs-sec-label {
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
    color: var(--muted); margin-bottom: 7px; display: flex; align-items: center; gap: 5px;
}
.hs-task-row {
    display: flex; align-items: center; gap: 8px; padding: 6px 9px;
    border-radius: 8px; background: var(--surface-strong); border: 1px solid var(--surface-border);
    margin-bottom: 5px;
}
.hs-task-circle { width:16px; height:16px; border-radius:50%; border:2px solid var(--surface-border-strong); flex-shrink:0; }
.hs-task-text   { flex:1; font-size:12px; color:var(--fg); }
.hs-tag         { color:var(--hubspot); font-weight:600; }
.hs-task-pri {
    font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 999px; text-transform: uppercase;
}
.hs-task-pri.high { background:rgba(239,68,68,.15); color:#f87171; }
.hs-task-pri.med  { background:rgba(212,164,76,.15); color:var(--hubspot); }
.hs-task-date { font-size: 10px; color: var(--muted); flex-shrink: 0; }
.hs-actions { display:flex; gap:6px; margin-top:10px; }
.hs-btn {
    font-size:11px; padding:5px 12px; border-radius:8px;
    border:1px solid var(--surface-border); background:var(--surface);
    color:var(--fg); cursor:pointer; font-family:inherit; text-decoration:none;
    display:inline-block; transition:border-color .15s, color .15s;
}
.hs-btn:hover { border-color:var(--hubspot); color:var(--hubspot); }
.hs-btn.orange { background:rgba(255,122,89,.1); border-color:rgba(255,122,89,.35); color:#ff7a59; }
.hs-btn.orange:hover { background:rgba(255,122,89,.2); color:#ff7a59; }

/* Slack mock */
.slack-mock {
    border-radius: 16px; border: 1px solid var(--surface-border);
    background: color-mix(in srgb, var(--bg) 68%, transparent);
    backdrop-filter: blur(10px); overflow: hidden; font-size: 13px;
    box-shadow: 0 14px 36px rgba(0,0,0,.16); margin-top: 14px;
}
.slack-mock-topbar {
    background: rgba(74,21,75,.08); border-bottom: 1px solid var(--surface-border);
    padding: 9px 14px; display: flex; align-items: center; gap: 8px;
}
.slack-logo-sq {
    width: 24px; height: 24px; border-radius: 6px;
    background: rgba(116,78,194,.12);
    border: 1px solid rgba(116,78,194,.26);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slack-topbar-channel { font-size:13px; font-weight:700; color:var(--fg); }
.slack-mock-body { padding:12px 14px; display:flex; flex-direction:column; gap:12px; }
.slack-msg { display:flex; gap:10px; align-items:flex-start; }
.slack-avi {
    width:32px; height:32px; border-radius:7px; background:rgba(212,164,76,.18);
    display:flex; align-items:center; justify-content:center;
    font-weight:800; font-size:13px; color:var(--hubspot); flex-shrink:0;
}
.slack-content { flex:1; }
.slack-msg-header { display:flex; align-items:baseline; gap:6px; margin-bottom:2px; }
.slack-sender { font-size:13px; font-weight:700; color:var(--fg); }
.slack-ts     { font-size:11px; color:var(--muted); }
.slack-app-badge { font-size:10px; padding:1px 5px; background:rgba(46,182,125,.15); color:#2eb67d; border-radius:4px; font-weight:600; }
.slack-msg-body { font-size:13px; color:var(--fg); line-height:1.55; }
.slack-co-link  { color:var(--hubspot); font-weight:600; text-decoration:none; }
.slack-co-link:hover { text-decoration:underline; }
.slack-meta { font-size:12px; color:var(--muted); margin-top:5px; line-height:1.6; }
.slack-meta strong { color:var(--fg); }
.slack-footer-input {
    background:var(--surface-strong); border-top:1px solid var(--surface-border);
    padding:8px 14px; font-size:12px; color:var(--muted);
    display:flex; align-items:center; gap:8px;
}

/* Integration info cards grid */
.int-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
@media (max-width:576px) { .int-grid { grid-template-columns:1fr; } }
.int-card {
    background:var(--surface); border:1px solid var(--surface-border);
    border-radius:13px; padding:14px;
}
.int-card-head { display:flex; align-items:center; gap:9px; margin-bottom:7px; }
.int-card-icon {
    width:34px; height:34px; border-radius:9px;
    display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0;
}
.int-card-icon .service-logo-img {
    width: 20px;
    height: 20px;
}
.int-card-name { font-size:13px; font-weight:700; color:var(--fg); }
.int-card-desc { font-size:12px; color:var(--muted); line-height:1.4; margin:0; }

/* Google Calendar mock */
.gcal-mock {
    border-radius: 16px; border: 1px solid var(--surface-border);
    background: color-mix(in srgb, var(--bg) 68%, transparent);
    backdrop-filter: blur(10px); overflow: hidden; font-size: 13px;
    box-shadow: 0 14px 36px rgba(0,0,0,.16); margin-top: 14px;
}
.gcal-topbar {
    background: rgba(66,133,244,.06); border-bottom: 1px solid var(--surface-border);
    padding: 9px 14px; display: flex; align-items: center; gap: 8px;
}
.gcal-logo-sq {
    width: 24px; height: 24px; border-radius: 6px;
    background: white; display: flex; align-items: center; justify-content: center;
    font-size: 12px; flex-shrink: 0; border: 1px solid rgba(66,133,244,.3);
}
.gcal-topbar-title { font-size:13px; font-weight:700; color:var(--fg); }
.gcal-body { padding: 12px 14px; }
.gcal-meeting {
    display: flex; gap: 10px; align-items: flex-start;
    padding: 8px 0; border-bottom: 1px solid var(--surface-border);
}
.gcal-meeting:last-child { border-bottom:0; padding-bottom:0; }
.gcal-time { font-size:11px; color:var(--muted); width:42px; flex-shrink:0; padding-top:2px; }
.gcal-info { flex: 1; }
.gcal-name { font-size:13px; font-weight:600; color:var(--fg); margin-bottom:3px; }
.gcal-prep {
    font-size:11px; color:var(--muted); line-height:1.45; padding:4px 9px;
    background:rgba(212,164,76,.07); border-left:2px solid var(--hubspot);
    border-radius:0 7px 7px 0; margin-top:3px;
}
.gcal-prep strong { color:var(--hubspot); }

