.product-page .dropdown-toggle::after {
    content: '';
    font-size: 0.7rem;
    opacity: 0.6;
    transition: transform 0.2s;
}

.product-page .dropdown.open .dropdown-toggle::after {
    transform: rotate(180deg);
}

.product-page .hero {
    padding: 3rem 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-page .hero-orb-l {
    position: absolute;
    top: -80px;
    left: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123,24,24,0.08) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.product-page .hero-orb-r {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(160,32,240,0.1) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.product-page .hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(123,24,24,0.07);
    border: 1px solid rgba(123,24,24,0.2);
    color: var(--maroon);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.4rem 1.1rem;
    border-radius: 100px;
    margin-bottom: 1.2rem;
}

.product-page h1 {
    font-family: 'Lexend', sans-serif;
    /* font-size: clamp(1.9rem, 3.2vw, 2.6rem); */
    font-size: clamp(2.15rem, 3.6vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--dark);
    max-width: 700px;
    margin: 0 auto 1rem;
}

.product-page h1 .accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-page .hero-sub {
    font-size: 0.95rem;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto 1.8rem;
    line-height: 1.7;
    font-weight: 300;
}

.product-page .hero-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.product-page .btn-main {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 100px;
    font-size: 0.95rem;
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 20px rgba(160,32,240,0.3);
    transition: transform 0.18s, box-shadow 0.18s;
}

.product-page .btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(160,32,240,0.4);
}

.product-page .btn-outline {
    background: transparent;
    color: var(--maroon);
    border: 1.5px solid rgba(123,24,24,0.25);
    padding: 0.8rem 1.8rem;
    border-radius: 100px;
    font-size: 0.95rem;
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.product-page .btn-outline:hover {
    border-color: var(--purple);
    color: var(--purple);
}

.product-page .divider {
    overflow: hidden;
    padding: 1.1rem 0;
    background: var(--gradient);
}

.product-page .divider-inner {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: scroll 22s linear infinite;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
}

.product-page .divider-dot {
    opacity: 0.4;
}

.product-page .product-section {
    padding: 6rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.product-page .product-section.reverse {
    direction: rtl;
}

.product-page .product-section.reverse > * {
    direction: ltr;
}

.product-page .product-section + .product-section {
    border-top: 1px solid var(--border);
}

.product-page .section-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--maroon);
    margin-bottom: 0.75rem;
    text-align: center;
}

.product-page .section-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--maroon);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.product-page .section-num {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.72rem;
    font-weight: 700;
}

.product-page .section-divider {
    width: 1px;
    height: 10px;
    background: rgba(123,24,24,0.25);
}

.product-page h2 {
    font-family: 'Lexend', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.product-page .section-intro {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 2rem;
}

.product-page .feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.product-page .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.55;
    font-weight: 400;
}

.product-page .feature-dot {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    flex-shrink: 0;
    margin-top: 1px;
    background: var(--gradient-soft);
    border: 1px solid rgba(123,24,24,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-page .feature-dot::after {
    content: '✓';
    font-size: 10px;
    color: var(--maroon);
    font-weight: 600;
}

.product-page .feature-item strong {
    color: var(--dark);
    font-weight: 600;
}

.product-page .mock-ui {
    background: var(--dark);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 24px 80px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    min-height: 340px;
}

.product-page .mock-ui::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(160,32,240,0.18) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.product-page .mock-ui::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(123,24,24,0.15) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.product-page .mock-topbar {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
}

.product-page .mock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.product-page .mock-dot.r {
    background: #ff5f57;
}

.product-page .mock-dot.y {
    background: #ffbd2e;
}

.product-page .mock-dot.g {
    background: #28ca41;
}

.product-page .mock-title {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-left: auto;
}

.product-page .mock-content {
    position: relative;
    z-index: 1;
}

.product-page .seq-step {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 0.7rem 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-page .seq-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.product-page .seq-icon.wa {
    background: rgba(37,211,102,0.2);
    color: #25d366;
}

.product-page .seq-icon.sms {
    background: rgba(160,32,240,0.2);
    color: var(--purple-light);
}

.product-page .seq-icon.delay {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.4);
}

.product-page .seq-icon.branch {
    background: rgba(123,24,24,0.3);
    color: #e06060;
}

.product-page .seq-text {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.65);
    font-weight: 400;
}

.product-page .seq-label {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.3);
    margin-top: 0.1rem;
}

.product-page .seq-connector {
    width: 1px;
    height: 12px;
    background: rgba(255,255,255,0.1);
    margin: 0 auto 0.5rem;
}

.product-page .send-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 0.6rem 0.9rem;
    margin-bottom: 0.4rem;
}

.product-page .send-name {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.product-page .send-meta {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.3);
}

.product-page .badge-pill {
    font-size: 0.6rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-page .badge-live {
    background: rgba(37,211,102,0.15);
    color: #25d366;
}

.product-page .badge-sched {
    background: rgba(160,32,240,0.15);
    color: var(--purple-light);
}

.product-page .badge-draft {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.4);
}

.product-page .cost-bar {
    margin-top: 1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-page .cost-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
}

.product-page .cost-val {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.product-page .segment-filter {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 0.55rem 0.9rem;
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.6);
}

.product-page .filter-tag {
    background: rgba(160,32,240,0.15);
    color: var(--purple-light);
    border-radius: 4px;
    padding: 0.15rem 0.4rem;
    font-size: 0.65rem;
    font-weight: 500;
}

.product-page .filter-op {
    color: rgba(255,255,255,0.3);
    font-size: 0.65rem;
}

.product-page .segment-result {
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(123,24,24,0.15);
    border: 1px solid rgba(123,24,24,0.2);
    border-radius: 10px;
    text-align: center;
}

.product-page .segment-count {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

.product-page .segment-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.15rem;
}

.product-page .inbox-thread {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.4rem;
}

.product-page .inbox-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.3rem;
}

.product-page .inbox-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.product-page .inbox-time {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.3);
}

.product-page .inbox-preview {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
}

.product-page .inbox-tags {
    display: flex;
    gap: 0.4rem;
    margin-top: 0.4rem;
}

.product-page .tag {
    font-size: 0.6rem;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    font-weight: 500;
}

.product-page .tag-agent {
    background: rgba(160,32,240,0.15);
    color: var(--purple-light);
}

.product-page .tag-sla {
    background: rgba(255,180,0,0.12);
    color: #f0b429;
}

.product-page .tag-window {
    background: rgba(37,211,102,0.12);
    color: #25d366;
}

.product-page .timer-bar {
    margin-top: 0.9rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(37,211,102,0.2);
    border-radius: 10px;
    padding: 0.7rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-page .timer-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
}

.product-page .timer-val {
    font-size: 0.85rem;
    font-weight: 600;
    color: #25d366;
}

.product-page .workspace-row {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 0.7rem 1rem;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.product-page .ws-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.product-page .ws-avatar-primary {
    background: linear-gradient(135deg, var(--maroon), #c23a3a);
}

.product-page .ws-avatar-secondary {
    background: linear-gradient(135deg, var(--purple), #d070ff);
}

.product-page .ws-avatar-tertiary {
    background: linear-gradient(135deg, #3a3a6a, #6a6ac2);
}

.product-page .ws-name {
    font-size: 0.78rem;
    font-weight: 500;
    color: white;
}

.product-page .ws-meta {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.35);
}

.product-page .ws-badge {
    margin-left: auto;
}

.product-page .cta-wrap {
    padding: 0 4rem 6rem;
}

.product-page .cta-block {
    background: var(--dark);
    border-radius: 24px;
    padding: 5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.product-page .cta-glow-l {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(160,32,240,0.2) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.product-page .cta-glow-r {
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(123,24,24,0.25) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.product-page .cta-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.product-page .cta-block h2 {
    color: white;
    /* margin-bottom: 0.75rem; */
    position: relative;
    z-index: 1;
    text-align: center;
}

.product-page .cta-block p {
    color: rgba(255,255,255,0.5);
    max-width: 420px;
    /* margin: 12px auto 2rem; */
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.product-page .btn-cta {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 0.9rem 2.2rem;
    border-radius: 100px;
    font-size: 0.95rem;
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(160,32,240,0.4);
    position: relative;
    z-index: 1;
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-page .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(160,32,240,0.5);
}

.product-page .cta-note {
    color: rgba(255,255,255,0.3);
    font-size: 0.78rem;
    /* margin-top: 1rem; */
    position: relative;
    z-index: 1;
}

@media (max-width: 960px) {
    .product-page .product-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 4rem 2rem;
    }

    .product-page .product-section.reverse {
        direction: ltr;
    }

    .product-page .hero,
    .product-page .cta-wrap {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (max-width: 600px) {
    .product-page .hero {
        padding: 2.5rem 2rem 2rem;
    }

    .product-page .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .product-page .cta-block {
        padding: 3rem 2rem;
    }
}
