/* ============================================================
   Msgie Public Website - style.css
   21 sections, CSS custom properties, mobile-first
   ============================================================ */

/* ============================================================
   01. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    --color-primary: #5e17eb;
    --color-primary-hover: #4c0fbd;
    --color-primary-light: #e0d4fc;
    --color-dark-bg: #0f0e1a;
    --gradient-hero: linear-gradient(
        135deg,
        #ffffff 0%,
        #f5f0ff 50%,
        #ede5ff 100%
    );
    /*--gradient-brand:  linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    --gradient-brand: linear-gradient(
        -225deg,
        #ac32e4 0%,
        #7918f2 48%,
        #4801ff 100%
    );
    --color-bg: #f9fafb;
    --color-surface: #ffffff;
    --color-text-primary: #1f2937;
    --color-text-muted: #6b7280;
    --color-border: #e5e7eb;
    --color-success: #10b981;
    --color-error: #ef4444;
    --color-warning: #f59e0b;
    --color-info: #3b82f6;
    --radius-btn: 10px;
    --radius-card: 16px;
    --radius-card-lg: 20px;
    --section-py: 96px;
    --section-py-sm: 64px;
    --container-max: 1200px;
    --font-base: "Inter", system-ui, -apple-system, sans-serif;
    --nav-height: 72px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.15);
    --shadow-purple: 0 8px 32px rgba(94, 23, 235, 0.25);
}

/* ============================================================
   02. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-base);
    color: var(--color-text-primary);
    background: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    list-style: none;
}
button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
}
input,
select,
textarea {
    font: inherit;
}

/* Ensure [hidden] attribute is always respected (prevents display:flex overrides) */
[hidden] {
    display: none !important;
}

/* ============================================================
   03. TYPOGRAPHY SCALE
   ============================================================ */
h1,
h2,
h3,
h4 {
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}
h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}
h3 {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 700;
}

.gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================================
   04. LAYOUT UTILITIES
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }
}
@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-title {
    color: var(--color-text-primary);
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
   05. BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
}
.btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-purple);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

.btn-outline-dark {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid rgba(94, 23, 235, 0.4);
}
.btn-outline-dark:hover {
    background: rgba(94, 23, 235, 0.06);
    border-color: var(--color-primary);
}

.btn-outline-primary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
.btn-outline-primary:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-purple);
}

.btn-white {
    background: #fff;
    color: var(--color-primary);
    font-weight: 700;
}
.btn-white:hover {
    background: #f3f4f6;
    transform: translateY(-1px);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-block {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 28px;
}

.w-full {
    width: 100%;
    justify-content: center;
}

/* ============================================================
   06. NAVIGATION
   ============================================================ */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.site-nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
        0 1px 0 rgba(0, 0, 0, 0.08),
        var(--shadow-sm);
}

/* Non-scrolled state: dark text on light hero */
.site-nav:not(.scrolled) .nav-link {
    color: #374151;
}
.site-nav:not(.scrolled) .nav-link:hover {
    color: var(--color-primary);
    background: rgba(94, 23, 235, 0.06);
}
.site-nav:not(.scrolled) .btn-ghost {
    border-color: rgba(0, 0, 0, 0.2);
    color: #374151;
}
.site-nav:not(.scrolled) .btn-ghost:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.35);
}
/* Scrolled state: also dark text on light frosted glass */
.site-nav.scrolled .nav-link {
    color: #374151;
}
.site-nav.scrolled .nav-link:hover {
    color: var(--color-primary);
    background: rgba(94, 23, 235, 0.06);
}
.site-nav.scrolled .btn-ghost {
    border-color: rgba(0, 0, 0, 0.2);
    color: #374151;
}
.site-nav.scrolled .btn-ghost:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.35);
}

/* Active state - feature sub-pages highlight the Features nav item */
.nav-link.active,
.nav-dropdown-toggle.active {
    color: var(--color-primary) !important;
    background: rgba(94, 23, 235, 0.06);
    border-radius: 8px;
}
.nav-dropdown-item.active {
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-weight: 600;
}
.nav-dropdown-item.active .nav-dropdown-icon {
    background: var(--color-primary);
    color: #fff;
}
.mobile-nav-link.active {
    color: var(--color-primary) !important;
    background: rgba(94, 23, 235, 0.06);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}

@media (min-width: 768px) {
    .nav-container {
        padding: 0 32px;
    }
}
@media (min-width: 1024px) {
    .nav-container {
        padding: 0 40px;
    }
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 28px;
    font-weight: 700;
    color: #7315f4;
    /* letter-spacing: -0.03em; */
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    font-family: Outfit;
}
.nav-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition:
        color 0.15s,
        background 0.15s;
}
.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-actions {
    display: none;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    .nav-actions {
        display: flex;
    }
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: auto;
    cursor: pointer;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #374151;
    border-radius: 2px;
    transition: all 0.25s;
}
.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
}

/* Mobile Drawer */
.mobile-drawer {
    display: none;
    flex-direction: column;
    gap: 24px;
    background: rgba(15, 14, 26, 0.98);
    backdrop-filter: blur(12px);
    padding: 24px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
}
.mobile-drawer.open {
    display: flex;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mobile-nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.0625rem;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 10px;
    display: block;
    transition: background 0.15s;
}
.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Desktop Dropdowns */
.nav-dropdown-wrap {
    position: relative;
}
.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.nav-dropdown-chevron {
    font-size: 0.65em;
    transition: transform 0.2s ease;
}
.nav-dropdown-wrap:hover .nav-dropdown-chevron,
.nav-dropdown-wrap.dropdown-open .nav-dropdown-chevron {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 10px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s;
    z-index: 200;
    pointer-events: none;
    border: 1px solid var(--color-border);
}
/* Invisible bridge that fills the gap between the nav button and dropdown panel,
   keeping :hover active as the mouse travels through the 10px gap. */
.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
    background: transparent;
}
.nav-dropdown-2col {
    min-width: 460px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}
.nav-dropdown-wrap:hover .nav-dropdown-menu,
.nav-dropdown-wrap.dropdown-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}
.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 10px;
    color: var(--color-text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    transition:
        background 0.15s,
        color 0.15s;
    white-space: nowrap;
}
.nav-dropdown-item:hover {
    background: var(--color-primary-light);
    color: var(--color-primary);
}
.nav-dropdown-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-primary);
    font-size: 0.8rem;
}

/* Mobile dropdown accordion */
.mobile-dropdown-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-dropdown-chevron {
    font-size: 0.65em;
    transition: transform 0.2s;
}
.mobile-dropdown-wrap.open .mobile-dropdown-chevron {
    transform: rotate(180deg);
}
.mobile-dropdown-items {
    display: none;
    padding-left: 12px;
}
.mobile-dropdown-wrap.open .mobile-dropdown-items {
    display: block;
}
.mobile-nav-sub {
    font-size: 0.9375rem;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.65);
}
.mobile-nav-sub i {
    width: 16px;
    text-align: center;
    opacity: 0.8;
}

/* Industries dropdown - wider panel + full-width "All" header item */
.nav-dropdown-industries {
    min-width: 520px;
}
.nav-dropdown-item-all {
    grid-column: 1 / -1;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 2px;
    font-weight: 600;
}

/* ============================================================
   07. HERO SECTION
   ============================================================ */
.hero {
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-height) + 60px) 0 80px;
    position: relative;
    overflow: hidden;
}

/* Soft purple blob */
.hero::before {
    content: "";
    position: absolute;
    top: -10%;
    left: 30%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(
        ellipse at center,
        rgba(196, 181, 253, 0.45) 0%,
        transparent 65%
    );
    pointer-events: none;
}

/* Soft pink/blue blob */
.hero::after {
    content: "";
    position: absolute;
    bottom: -5%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        ellipse at center,
        rgba(186, 230, 253, 0.4) 0%,
        transparent 65%
    );
    pointer-events: none;
}

/* Particle orbs */
.hero-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.25;
    animation: floatOrb 12s ease-in-out infinite;
}
.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #c4b5fd, transparent);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}
.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #fbcfe8, transparent);
    bottom: 10%;
    left: -80px;
    animation-delay: 4s;
}
.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #bae6fd, transparent);
    top: 40%;
    right: 20%;
    animation-delay: 8s;
}

@keyframes floatOrb {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(20px, -30px) scale(1.05);
    }
    66% {
        transform: translate(-15px, 15px) scale(0.95);
    }
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero-container {
        flex-direction: row;
        align-items: center;
        gap: 80px;
    }
    .hero-content {
        flex: 0 0 52%;
    }
    .hero-mockup {
        flex: 0 0 44%;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(94, 23, 235, 0.2);
    border: 1px solid rgba(94, 23, 235, 0.4);
    color: #c4b5fd;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero-badge i {
    color: #25d366;
    font-size: 1rem;
}

.hero-headline {
    color: var(--color-text-primary);
    margin-bottom: 24px;
}

.hero-subtext {
    color: var(--color-text-muted);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
}
.proof-avatars {
    display: flex;
}
.proof-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    margin-left: -8px;
    flex-shrink: 0;
}
.proof-avatars .proof-avatar:first-child {
    margin-left: 0;
}

.proof-text {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}
.proof-stars {
    color: #f59e0b;
    font-size: 0.875rem;
    margin-bottom: 2px;
}
.proof-text strong {
    color: var(--color-text-primary);
}

/* ---- Browser Mockup ---- */
.mock-browser {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 24px 64px rgba(94, 23, 235, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.06);
    max-width: 520px;
    margin: 0 auto;
}

.mock-browser-bar {
    background: #f3f4f6;
    border-bottom: 1px solid #e5e7eb;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.mock-dot-red {
    background: #ff5f57;
}
.mock-dot-yellow {
    background: #febc2e;
}
.mock-dot-green {
    background: #28c840;
}
.mock-url {
    margin-left: 12px;
    font-size: 0.75rem;
    color: #9ca3af;
    font-family: monospace;
}

.mock-content {
    display: flex;
    min-height: 340px;
}

.mock-sidebar {
    width: 54px;
    background: #f9fafb;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 0;
    gap: 16px;
    border-right: 1px solid #e5e7eb;
}

.mock-logo-sm {
    font-size: 0.5rem;
    font-weight: 900;
    color: var(--color-primary);
    letter-spacing: -0.02em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.mock-nav-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mock-nav-item {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 0.8rem;
    transition: all 0.15s;
}
.mock-nav-active {
    background: var(--color-primary);
    color: #fff;
}

.mock-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mock-topbar {
    padding: 12px 14px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.mock-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #1f2937;
}
.mock-badge {
    background: var(--color-primary);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 100px;
}

.mock-chat-list {
    flex: 1;
    overflow: hidden;
}

.mock-chat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    transition: background 0.15s;
}
.mock-chat:hover {
    background: #f9fafb;
}
.mock-chat-unread {
    background: #f3effe;
}

.mock-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.mock-avatar-a {
    background: linear-gradient(135deg, #5e17eb, #764ba2);
}
.mock-avatar-s {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}
.mock-avatar-m {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.mock-chat-info {
    flex: 1;
    min-width: 0;
}
.mock-chat-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mock-chat-preview {
    font-size: 0.6875rem;
    color: #9ca3af;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mock-chat-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}
.mock-time {
    font-size: 0.625rem;
    color: #d1d5db;
}
.mock-unread-dot {
    background: var(--color-primary);
    color: #fff;
    font-size: 0.5625rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-stats-row {
    display: flex;
    border-top: 1px solid #f0f0f0;
    padding: 10px 14px;
    gap: 12px;
}
.mock-stat-mini {
    flex: 1;
    text-align: center;
}
.mock-stat-val {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
}
.mock-stat-label {
    font-size: 0.5625rem;
    color: #9ca3af;
}

/* Hero inbox animation */
@keyframes chatSlideIn {
    from {
        opacity: 0;
        transform: translateX(-8px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.mock-chat-new {
    animation: chatSlideIn 0.4s ease forwards;
}

@keyframes badgePulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}
.mock-badge-pulse {
    animation: badgePulse 0.35s ease;
}

/* ============================================================
   08. BENEFITS SECTION
   ============================================================ */
.benefits {
    padding: var(--section-py) 0;
    background: var(--color-surface);
}

.benefits-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-card {
    padding: 32px 28px;
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: var(--color-bg);
    text-align: center;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}
.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
    background: #fff;
}
.benefit-card .benefit-icon {
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.benefit-card:hover .benefit-icon {
    transform: translateY(-4px) scale(1.1);
}
.benefit-card .benefit-title {
    transition: color 0.2s ease;
}
.benefit-card:hover .benefit-title {
    color: var(--color-primary);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    margin: 0 auto 20px;
}
.benefit-icon-purple {
    background: var(--color-primary-light);
    color: var(--color-primary);
}
.benefit-icon-green {
    background: #dcfce7;
    color: #16a34a;
}
.benefit-icon-blue {
    background: #dbeafe;
    color: #2563eb;
}
.benefit-icon-amber {
    background: #fef3c7;
    color: #d97706;
}

.benefit-title {
    font-size: 1.0625rem;
    margin-bottom: 10px;
}
.benefit-desc {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
}

/* ============================================================
   09. FEATURES SECTION
   ============================================================ */
.features {
    padding: var(--section-py) 0;
    background: var(--color-bg);
}

.features-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card-lg);
    padding: 32px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(94, 23, 235, 0.15);
    border-color: var(--color-primary-light);
}
.feature-card .feature-icon {
    transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon {
    transform: scale(1.12) rotate(-4deg);
}
.feature-card .feature-title {
    transition: color 0.2s ease;
}
.feature-card:hover .feature-title {
    color: var(--color-primary);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 20px;
    background: var(--icon-bg, var(--color-primary-light));
    color: var(--icon-color, var(--color-primary));
}

.feature-title {
    font-size: 1.0625rem;
    margin-bottom: 10px;
}
.feature-desc {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}
.feature-list li i {
    color: var(--color-success);
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Full-width analytics card */
.feature-card-wide {
    grid-column: 1 / -1;
    margin-top: 0;
}
.feature-wide-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (min-width: 640px) {
    .feature-wide-content {
        flex-direction: row;
        align-items: flex-start;
    }
    .feature-wide-content .feature-icon {
        flex-shrink: 0;
    }
}
.feature-wide-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}
.feature-tag {
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
}

/* Read-more link — feature cards + use-case cards */
.feature-read-more {
    display: block;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition:
        gap 0.2s,
        color 0.2s;
}
.feature-read-more i {
    font-size: 0.75rem;
    transition: transform 0.2s;
}
.feature-read-more:hover {
    color: var(--color-primary-hover);
}
.feature-read-more:hover i {
    transform: translateX(3px);
}

/* "View All Industries" CTA below use-cases grid */
.home-industries-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* ============================================================
   10. HOW IT WORKS SECTION
   ============================================================ */
.how-it-works {
    padding: var(--section-py) 0;
    background: var(--color-surface);
}

.steps-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-card {
    position: relative;
    padding: 32px 24px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    text-align: center;
    transition:
        transform 0.25s,
        box-shadow 0.25s;
}
.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* Arrow connector between cards */
.step-card:not(:last-child)::after {
    display: none;
    content: "→";
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: 700;
    z-index: 2;
}
@media (min-width: 768px) {
    .step-card:not(:last-child)::after {
        display: block;
    }
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    margin: 0 auto 16px;
}

.step-title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.step-desc {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

/* ============================================================
   11. USE CASES SECTION
   ============================================================ */
.use-cases {
    padding: var(--section-py) 0;
    background: var(--color-bg);
}

.use-cases-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .use-cases-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 1024px) {
    .use-cases-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.use-case-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 28px;
    transition:
        transform 0.25s,
        box-shadow 0.25s;
}
.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.use-case-card .use-case-icon {
    transition: transform 0.3s ease;
}
.use-case-card:hover .use-case-icon {
    transform: scale(1.08);
}

.use-case-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 18px;
}

.use-case-title {
    margin-bottom: 8px;
}
.use-case-desc {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.use-case-stat {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    background: var(--color-primary-light);
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-block;
}
.use-case-stat strong {
    font-size: 1rem;
}

/* ============================================================
   12. SCREENSHOTS / TABS SECTION
   ============================================================ */
.screenshots {
    padding: var(--section-py) 0;
    background: var(--color-surface);
}

.tabs-wrapper {
}

.tab-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 22px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    border: 1.5px solid var(--color-border);
    background: var(--color-surface);
    transition: all 0.2s;
    cursor: pointer;
}
.tab-btn:hover {
    color: var(--color-primary);
    border-color: var(--color-primary-light);
}
.tab-btn-active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.tab-panels {
}

.tab-panel {
    display: none;
}
.tab-panel-active {
    display: block;
}

/* Mock panel shared styles */
.mock-panel {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 360px;
    border: 1px solid var(--color-border);
}

/* Inbox panel */
.mock-panel-inbox {
    display: flex;
}

.mock-panel-sidebar {
    width: 200px;
    background: #f9fafb;
    border-right: 1px solid #e5e7eb;
    flex-shrink: 0;
}
.mock-panel-header {
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mock-panel-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #1f2937;
}
.mock-badge-sm {
    background: var(--color-primary);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 100px;
}

.mock-convo-list {
    padding: 8px 0;
}
.mock-convo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.15s;
}
.mock-convo:hover {
    background: #f3f4f6;
}
.mock-convo-active {
    background: #f3effe;
}

.mock-convo-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.mock-convo-body {
    flex: 1;
    min-width: 0;
}
.mock-convo-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mock-convo-msg {
    font-size: 0.6875rem;
    color: #9ca3af;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mock-panel-chat {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mock-chat-header {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.mock-chat-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.mock-chat-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1f2937;
}
.mock-online {
    font-size: 0.625rem;
    color: #25d366;
}
.mock-chat-actions {
    margin-left: auto;
    display: flex;
    gap: 6px;
}
.mock-action-btn {
    font-size: 0.625rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    cursor: pointer;
}
.mock-action-resolve {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
    color: #34d399;
}

.mock-messages {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
    background: #f9fafb;
}

.mock-msg {
    display: flex;
    flex-direction: column;
    max-width: 75%;
}
.mock-msg-in {
    align-self: flex-start;
}
.mock-msg-out {
    align-self: flex-end;
    align-items: flex-end;
}

.mock-bubble {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.8125rem;
    line-height: 1.5;
}
.mock-msg-in .mock-bubble {
    background: #f3f4f6;
    color: #1f2937;
    border-bottom-left-radius: 4px;
}
.mock-msg-out .mock-bubble {
    background: var(--color-primary);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.mock-msg-time {
    font-size: 0.5625rem;
    color: #9ca3af;
    margin-top: 3px;
}

.mock-input-bar {
    padding: 12px 14px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
}
.mock-input-field {
    flex: 1;
    padding: 8px 12px;
    background: #f3f4f6;
    border-radius: 8px;
    font-size: 0.75rem;
    color: #9ca3af;
}
.mock-send-btn {
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Campaigns panel */
.mock-panel-campaigns {
    padding: 20px;
}
.mock-campaigns-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.mock-create-btn {
    margin-left: auto;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--color-primary);
    background: var(--color-primary-light);
    padding: 4px 12px;
    border-radius: 6px;
    cursor: pointer;
    filter: brightness(0.85);
}

.mock-campaigns-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mock-campaign {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.mock-campaign-info {
    flex: 1;
    min-width: 0;
}
.mock-campaign-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 3px;
}
.mock-campaign-meta {
    font-size: 0.6875rem;
    color: #9ca3af;
}
.mock-campaign-stats {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.mock-stat-pill {
    font-size: 0.625rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
}

/* Contacts panel */
.mock-panel-contacts {
    padding: 20px;
}
.mock-contacts-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.mock-contacts-filters {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.mock-filter-tag {
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    cursor: pointer;
}
.mock-filter-active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.mock-contacts-table {
    overflow-x: auto;
}
.mock-table-row {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 1fr;
    gap: 8px;
    padding: 10px 12px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.75rem;
    color: #4b5563;
    align-items: center;
}
.mock-table-header {
    color: #9ca3af;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.mock-tag {
    font-size: 0.5625rem;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 4px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    margin-right: 3px;
    filter: brightness(0.85);
}

/* Analytics panel */
.mock-panel-analytics {
    padding: 20px;
}
.mock-analytics-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.mock-date-range {
    margin-left: auto;
    font-size: 0.6875rem;
    color: #6b7280;
    background: #f3f4f6;
    padding: 4px 12px;
    border-radius: 6px;
}

.mock-kpi-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}
@media (max-width: 640px) {
    .mock-kpi-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mock-kpi {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px;
}
.mock-kpi-val {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2px;
}
.mock-kpi-label {
    font-size: 0.625rem;
    color: #9ca3af;
    margin-bottom: 4px;
}
.mock-kpi-delta {
    font-size: 0.625rem;
    font-weight: 600;
}
.mock-delta-up {
    color: #34d399;
}
.mock-delta-down {
    color: #f87171;
}

.mock-chart {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px;
}
.mock-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 80px;
    margin-bottom: 8px;
}
.mock-bar {
    flex: 1;
    background: #ddd6fe;
    border-radius: 3px 3px 0 0;
    transition: background 0.15s;
}
.mock-bar:hover,
.mock-bar-highlight {
    background: var(--color-primary);
}
.mock-chart-label {
    font-size: 0.625rem;
    color: #9ca3af;
    text-align: center;
}

/* ============================================================
   13. TESTIMONIALS SECTION
   ============================================================ */
.testimonials {
    padding: var(--section-py) 0;
    background: var(--color-bg);
}

.testimonials-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 32px;
    transition:
        transform 0.25s,
        box-shadow 0.25s;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 18px;
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-primary);
    font-style: italic;
    margin-bottom: 24px;
    quotes: "\201C" "\201D";
}
.testimonial-quote::before {
    content: open-quote;
}
.testimonial-quote::after {
    content: close-quote;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 0.9375rem;
    font-weight: 700;
    font-style: normal;
    display: block;
}
.testimonial-role {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

/* ============================================================
   14. PRICING SECTION
   ============================================================ */
.pricing {
    padding: var(--section-py) 0;
    background: var(--color-surface);
}

.pricing-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 48px;
}
.pricing-toggle-label {
    font-weight: 600;
    color: var(--color-text-muted);
}

.pricing-toggle {
    position: relative;
    width: 48px;
    height: 26px;
    background: var(--color-border);
    border-radius: 100px;
    transition: background 0.2s;
    cursor: pointer;
}
.pricing-toggle[aria-pressed="true"] {
    background: var(--color-primary);
}

.pricing-toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s;
}
.pricing-toggle[aria-pressed="true"] .pricing-toggle-knob {
    transform: translateX(22px);
}

.pricing-save-badge {
    background: var(--color-success);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
    margin-left: 6px;
    font-style: normal;
}

/* 4-column grid: desktop ≥1100px, 2-col tablet, 1-col mobile */
.pricing-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
    align-items: start;
}
@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pricing-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card-lg);
    padding: 32px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.25s,
        box-shadow 0.25s;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pricing-card .btn-block {
    margin-top: 24px;
}

.pricing-card-popular {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.02);
}
.pricing-card-popular:hover {
    transform: scale(1.02) translateY(-4px);
}

.pricing-popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-plan-name {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}
.pricing-card-popular .pricing-plan-name {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 10px;
}
.pricing-currency {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-primary);
}
.pricing-card-popular .pricing-currency {
    color: #fff;
}
.pricing-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-text-primary);
    line-height: 1;
}
.pricing-card-popular .pricing-amount {
    color: #fff;
}
.pricing-period {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-left: 4px;
}
.pricing-card-popular .pricing-period {
    color: rgba(255, 255, 255, 0.65);
}

.pricing-price-custom {
    margin-bottom: 10px;
}
.pricing-amount-custom {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-text-primary);
}

.pricing-tagline {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}
.pricing-card-popular .pricing-tagline {
    color: rgba(255, 255, 255, 0.75);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    flex: 1;
}
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}
.pricing-features li i {
    font-size: 0.75rem;
    flex-shrink: 0;
}
.pricing-features li i.fa-check {
    color: var(--color-success);
}
.pricing-features li i.fa-times {
    color: #e91e63;
}
.pricing-feature-off {
    color: var(--color-text-muted);
}

.pricing-card-popular .pricing-features li {
    color: rgba(255, 255, 255, 0.9);
}
.pricing-card-popular .pricing-features li i.fa-check {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-notes {
    margin-top: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.pricing-notes p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.pricing-compare-link {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9375rem;
}
.pricing-compare-link a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}
.pricing-compare-link a:hover {
    text-decoration: underline;
}

/* ============================================================
   15. DEMO FORM SECTION
   ============================================================ */
.demo-section {
    padding: var(--section-py) 0;
    background: var(--color-bg);
}

.demo-wrapper {
    background: var(--color-surface);
    border-radius: var(--radius-card-lg);
    border: 1px solid var(--color-border);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}
@media (min-width: 1024px) {
    .demo-wrapper {
        flex-direction: row;
        align-items: flex-start;
        gap: 64px;
    }
    .demo-content {
        flex: 0 0 38%;
    }
    .demo-form-wrap {
        flex: 1;
    }
}

.demo-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 16px;
}
.demo-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.demo-perks {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.demo-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
}
.demo-perks li i {
    color: var(--color-success);
    flex-shrink: 0;
}

/* Form styles */
.demo-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    gap: 16px;
}
@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

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

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-primary);
}
.form-label span {
    color: var(--color-error);
}

.form-input {
    padding: 12px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: 10px;
    background: var(--color-bg);
    color: var(--color-text-primary);
    font-size: 0.9375rem;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
    width: 100%;
}
.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(94, 23, 235, 0.1);
}
.form-input.input-error {
    border-color: var(--color-error);
}
.form-input::placeholder {
    color: var(--color-text-muted);
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 96px;
}

.form-error {
    font-size: 0.8125rem;
    color: var(--color-error);
    font-weight: 500;
}

.form-success {
    margin-top: 16px;
    padding: 16px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 10px;
    color: #065f46;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
}
.form-success i {
    color: var(--color-success);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.form-error-global {
    margin-top: 16px;
    padding: 16px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    color: #7f1d1d;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
}
.form-error-global i {
    color: var(--color-error);
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ============================================================
   16. FAQ SECTION
   ============================================================ */
.faq {
    padding: var(--section-py) 0;
    background: var(--color-surface);
}

.faq-container {
    max-width: 780px;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.15s;
}
.faq-question:hover {
    color: var(--color-primary);
}

.faq-chevron {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    flex-shrink: 0;
    transition: transform 0.25s;
}
.faq-question[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
    color: var(--color-primary);
}
.faq-question[aria-expanded="true"] {
    color: var(--color-primary);
}

.faq-answer {
    display: none;
    padding: 0 0 22px;
}
.faq-answer p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ============================================================
   17. FOOTER
   ============================================================ */
.site-footer {
    background: var(--color-dark-bg);
    padding: 72px 0 40px;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}
@media (min-width: 768px) {
    .footer-container {
        padding: 0 32px;
    }
}
@media (min-width: 1024px) {
    .footer-container {
        padding: 0 40px;
    }
}

.footer-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr;
    margin-bottom: 48px;
}
@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    display: inline-block;
    margin-bottom: 14px;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    max-width: 280px;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}
.social-link {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    transition:
        background 0.2s,
        color 0.2s;
}
.social-link:hover {
    background: var(--color-primary);
    color: #fff;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.15s;
}
.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.footer-copy {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}
.footer-meta {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
}

/* ============================================================
   18. FLOATING WIDGETS
   ============================================================ */

/* Floating WhatsApp button */
.floating-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.625rem;
    z-index: 900;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    text-decoration: none;
}
.floating-wa:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

/* Pulse ring (triggered via JS) */
.wa-pulse-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #25d366;
    opacity: 0;
}
.floating-wa.pulse .wa-pulse-ring {
    animation: waPulse 0.6s ease-out 3;
}
@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: 96px;
    right: 28px;
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.875rem;
    z-index: 900;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition:
        opacity 0.25s,
        transform 0.25s;
    cursor: pointer;
}
.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.scroll-top:hover {
    background: var(--color-primary-hover);
}

/* ============================================================
   19. BOTTOM CTA SECTION
   ============================================================ */
.bottom-cta {
    background: var(--gradient-hero);
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
}
.bottom-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: none;
    pointer-events: none;
}

.bottom-cta-container {
    text-align: center;
    position: relative;
    z-index: 1;
}

.bottom-cta-title {
    color: var(--color-text-primary);
    max-width: 700px;
    margin: 0 auto 20px;
}
.bottom-cta-subtitle {
    color: var(--color-text-muted);
    font-size: 1.125rem;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.bottom-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.bottom-cta-note {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ============================================================
   20. SCROLL ANIMATIONS
   ============================================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}
.delay-2 {
    transition-delay: 0.2s;
}
.delay-3 {
    transition-delay: 0.3s;
}
.delay-4 {
    transition-delay: 0.4s;
}

/* ============================================================
   21. ACCESSIBILITY & PRINT
   ============================================================ */
:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
    border-radius: 4px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

@media print {
    .site-nav,
    .floating-wa,
    .scroll-top {
        display: none;
    }
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
}

/* ============================================================
   22. AUTH PAGES (Register & Login)
   ============================================================ */
.auth-page {
    min-height: calc(100vh - var(--nav-height));
    margin-top: var(--nav-height);
    display: flex;
    align-items: stretch;
}

/* Left brand panel */
.auth-panel-brand {
    flex: 1 1 45%;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 48px;
    color: #fff;
}
.auth-brand-inner {
    max-width: 420px;
    width: 100%;
}
.auth-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 36px;
    text-decoration: none;
}
.auth-brand-logo img {
    border-radius: 10px;
}
.auth-brand-headline {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}
.auth-brand-sub {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 32px;
}
.auth-brand-perks {
    list-style: none;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.auth-brand-perks li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    font-weight: 500;
}
.auth-brand-perks i {
    color: #a3f7bf;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.auth-brand-avatars {
    display: flex;
    align-items: center;
    gap: 8px;
}
.auth-brand-proof-text {
    font-size: 0.875rem;
    opacity: 0.85;
    margin-left: 4px;
}

/* Right form panel */
.auth-panel-form {
    flex: 1 1 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 48px;
    background: var(--color-bg);
}
.auth-form-inner {
    max-width: 460px;
    width: 100%;
}
.auth-form-header {
    margin-bottom: 32px;
}
.auth-form-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}
.auth-form-sub {
    color: var(--color-text-muted);
    font-size: 1rem;
}
.auth-error-box {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius-btn);
    padding: 14px 16px;
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--color-error);
    font-size: 0.9rem;
}
.auth-error-box ul {
    list-style: disc;
    padding-left: 16px;
}
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.form-label-opt {
    color: var(--color-text-muted);
    font-size: 0.8125rem;
    font-weight: 400;
}
.is-invalid {
    border-color: var(--color-error) !important;
}
.auth-form-note {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 4px;
}
.auth-form-note i {
    color: var(--color-success);
}
.auth-form-footer {
    margin-top: 24px;
    text-align: center;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}
.auth-form-footer a {
    color: var(--color-primary);
    font-weight: 600;
}
.auth-form-footer a:hover {
    text-decoration: underline;
}

/* Login page - centered card variant */
.auth-page-login {
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f0ff 0%, #ede5ff 100%);
}
.auth-login-card {
    background: #fff;
    border-radius: var(--radius-card-lg);
    box-shadow: var(--shadow-lg);
    padding: 48px 40px;
    width: 100%;
    max-width: 460px;
}
.auth-login-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 28px;
    text-decoration: none;
    font-family: Outfit;
}
.auth-login-logo img {
    border-radius: 8px;
}
.auth-password-wrap {
    position: relative;
}
.auth-login-card .auth-form-title {
    margin-bottom: 6px;
}
.auth-login-card .auth-form-sub {
    margin-bottom: 24px;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
    .auth-panel-brand {
        display: none;
    }
    .auth-panel-form {
        padding: 40px 24px;
        flex: 1 1 100%;
    }
    .auth-login-card {
        padding: 32px 24px;
        border-radius: var(--radius-card);
        box-shadow: none;
    }
    .auth-page-login {
        background: #fff;
    }
}

/* ============================================================
   23. COMING SOON MODAL (Login page)
   ============================================================ */
.coming-soon-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(4px);
}
.coming-soon-modal {
    background: #fff;
    border-radius: 20px;
    padding: 48px 40px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: modalIn 0.25s ease;
}
@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
.coming-soon-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}
.coming-soon-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 12px;
}
.coming-soon-body {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}
.coming-soon-close {
    display: block;
    width: 100%;
    margin-top: 14px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.coming-soon-close:hover {
    color: var(--color-text-primary);
}

/* ============================================================
   24. THANK YOU PAGE
   ============================================================ */
.thank-you-page {
    min-height: calc(100vh - var(--nav-height));
    margin-top: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    background: linear-gradient(135deg, #f5f0ff 0%, #ede5ff 100%);
}
.thank-you-card {
    background: #fff;
    border-radius: var(--radius-card-lg);
    box-shadow: var(--shadow-lg);
    padding: 60px 48px;
    text-align: center;
    max-width: 560px;
    width: 100%;
}
.thank-you-icon {
    font-size: 4rem;
    color: var(--color-success);
    margin-bottom: 16px;
}
.thank-you-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 12px;
}
.thank-you-sub {
    color: var(--color-text-muted);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 36px;
}
.thank-you-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.thank-you-note {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}
.thank-you-note a {
    color: var(--color-primary);
    font-weight: 600;
}
.thank-you-note a:hover {
    text-decoration: underline;
}
@media (max-width: 480px) {
    .thank-you-card {
        padding: 40px 24px;
    }
    .thank-you-actions {
        flex-direction: column;
    }
}

/* ============================================================
   25. BOOK DEMO PAGE
   ============================================================ */
.book-demo-hero {
    padding: calc(var(--nav-height) + 60px) 0 40px;
    background: var(--gradient-hero);
    text-align: center;
}
.book-demo-hero-inner {
    max-width: 640px;
    margin: 0 auto;
}
.book-demo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
}
.book-demo-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--color-text-primary);
}
.book-demo-sub {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}
.demo-section-page {
    padding-top: 48px;
}
.demo-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}
.demo-trust strong {
    color: var(--color-text-primary);
}

/* ============================================================
   26. FEATURE PAGES (shared across all /features/* pages)
   ============================================================ */

/* ----- Hero ----- */
.feat-hero {
    padding: 120px 0 80px;
    background: var(--gradient-hero);
    text-align: center;
}
.feat-hero-inner {
    max-width: 760px;
    margin: 0 auto;
}
.feat-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 999px;
    margin-bottom: 24px;
}
.feat-hero-headline {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--color-text-primary);
    margin-bottom: 20px;
}
.feat-hero-sub {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}
.feat-hero-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.feat-hero-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}
.feat-hero-proof strong {
    color: var(--color-text-primary);
}

/* ----- Problem ----- */
.feat-problem {
    padding: 80px 0;
    background: #f3f4f6;
}
.feat-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.feat-problem-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid var(--color-border, #e5e7eb);
}
.feat-problem-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 16px 0 10px;
}
.feat-problem-card p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin: 0;
}
.feat-problem-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fef3c7;
    color: #d97706;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* ----- Solution ----- */
.feat-solution {
    padding: 80px 0;
    background: #fff;
}
.feat-solution-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.feat-solution-content p {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
}
.feat-solution-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.feat-solution-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--color-text-primary);
}
.feat-solution-list li i {
    color: #10b981;
    margin-top: 2px;
    flex-shrink: 0;
}
.feat-solution-visual {
    display: flex;
    justify-content: center;
}
.feat-solution-mockup {
    background: #fff;
    border-radius: 20px;
    box-shadow:
        0 8px 40px rgba(94, 23, 235, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    width: 100%;
    max-width: 420px;
    border: 1px solid #e5e7eb;
}
.feat-mockup-header {
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.feat-mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}
.feat-mockup-title {
    margin-left: 10px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text-muted);
}
.feat-mockup-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.feat-mockup-stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    text-align: center;
}
.feat-mockup-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.feat-mockup-stat-number {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--color-text-primary);
    line-height: 1;
}
.feat-mockup-stat-label {
    font-size: 0.6875rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.feat-mockup-progress-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
.feat-mockup-progress-label {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    white-space: nowrap;
    font-weight: 600;
    min-width: 68px;
}
.feat-mockup-progress-bar {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
}
.feat-mockup-progress-fill {
    height: 100%;
    background: var(--gradient-brand);
    border-radius: 999px;
}
.feat-mockup-progress-pct {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
}
.feat-mockup-msg {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.875rem;
    color: var(--color-text-primary);
    line-height: 1.55;
}
.feat-mockup-msg i {
    font-size: 1.125rem;
    margin-top: 1px;
    flex-shrink: 0;
}
.feat-mockup-msg p {
    margin: 0;
}

/* ----- Key Capabilities ----- */
.feat-caps {
    padding: 80px 0;
    background: var(--color-bg, #f9fafb);
}
.feat-caps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.feat-cap-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.2s;
}
.feat-cap-card:hover {
    box-shadow: 0 8px 32px rgba(94, 23, 235, 0.1);
}
.feat-cap-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    margin-bottom: 20px;
}
.feat-cap-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 10px;
}
.feat-cap-card p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin: 0;
}
.feat-cap-card code {
    background: #f3f4f6;
    padding: 1px 5px;
    border-radius: 4px;
    font-size: 0.85em;
    color: var(--color-primary);
}

/* ----- Benefits ----- */
.feat-benefits {
    padding: 80px 0;
    background: #fff;
}
.feat-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.feat-benefit-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: 20px;
    background: var(--gradient-hero);
    border: 1px solid #e5e7eb;
}
.feat-benefit-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 8px;
}
.feat-benefit-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 12px;
}
.feat-benefit-card p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ----- Use Cases ----- */
.feat-usecases {
    padding: 80px 0;
    background: #f3f4f6;
}
.feat-usecase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.feat-usecase-tile {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid #e5e7eb;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
}
.feat-usecase-tile:hover {
    box-shadow: 0 6px 24px rgba(94, 23, 235, 0.1);
    transform: translateY(-2px);
}
.feat-usecase-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    margin-bottom: 16px;
}
.feat-usecase-tile h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}
.feat-usecase-tile p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ----- How It Works ----- */
.feat-hiw {
    padding: 80px 0;
    background: #fff;
}
.feat-hiw-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 56px;
}
.feat-hiw-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
}
.feat-hiw-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(94, 23, 235, 0.25);
}
.feat-hiw-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 10px;
}
.feat-hiw-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin: 0;
}
.feat-hiw-connector {
    flex-shrink: 0;
    width: 48px;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--color-primary-light),
        var(--color-primary)
    );
    margin-top: 26px;
    border-radius: 2px;
    opacity: 0.5;
}

/* ----- FAQ ----- */
.feat-faq {
    padding: 80px 0;
    background: #f3f4f6;
}
.feat-faq-list {
    max-width: 760px;
    margin: 48px auto 0;
}

/* ----- CTA Banner ----- */
.feat-cta-banner {
    padding: 80px 0;
    background: var(--gradient-brand);
    text-align: center;
}
.feat-cta-inner {
    max-width: 640px;
    margin: 0 auto;
}
.feat-cta-headline {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}
.feat-cta-sub {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    line-height: 1.6;
}
.feat-cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-white {
    background: #fff;
    color: var(--color-primary);
    border: none;
}
.btn-white:hover {
    background: #f0ebff;
    color: var(--color-primary-hover);
}
.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}

/* ----- Responsive - 768 px breakpoint ----- */
@media (max-width: 768px) {
    .feat-hero {
        padding: 96px 0 64px;
    }
    .feat-problem-grid,
    .feat-caps-grid,
    .feat-benefits-grid,
    .feat-usecase-grid {
        grid-template-columns: 1fr;
    }
    .feat-solution-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .feat-solution-visual {
        order: -1;
    }
    .feat-hiw-steps {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }
    .feat-hiw-step {
        flex-direction: row;
        text-align: left;
        gap: 20px;
        padding: 0;
    }
    .feat-hiw-num {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .feat-hiw-connector {
        display: none;
    }
    .feat-mockup-stat-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* Section heading alignment - center headers in all feat- content sections
   (solution section is excluded: its headers live inside a 2-col layout) */
.feat-problem .section-label,
.feat-problem .section-title,
.feat-problem .section-subtitle,
.feat-caps .section-label,
.feat-caps .section-title,
.feat-caps .section-subtitle,
.feat-benefits .section-label,
.feat-benefits .section-title,
.feat-benefits .section-subtitle,
.feat-usecases .section-label,
.feat-usecases .section-title,
.feat-usecases .section-subtitle,
.feat-hiw .section-label,
.feat-hiw .section-title,
.feat-hiw .section-subtitle,
.feat-faq .section-label,
.feat-faq .section-title {
    text-align: center;
}

/* ─── Contact Management mockup elements ─── */
.feat-mockup-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid #f3f4f6;
}
.feat-mockup-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}
.feat-mockup-contact-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.2;
}
.feat-mockup-contact-num {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 2px;
}
.feat-mockup-tags {
    display: flex;
    gap: 6px;
    padding: 10px 16px;
    border-bottom: 1px solid #f3f4f6;
    flex-wrap: wrap;
}
.feat-mockup-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
}
.feat-mockup-fields {
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
}
.feat-mockup-field-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}
.feat-mockup-field-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.feat-mockup-field-item {
    font-size: 12px;
    color: var(--color-text);
}
.feat-mockup-field-item span {
    color: var(--color-text-muted);
    margin-right: 3px;
}

/* ─── Template Manager: solution mockup - template list ─── */
.feat-mockup-tpl-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-bottom: 1px solid #f3f4f6;
}
.feat-mockup-tpl-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}
.feat-mockup-tpl-name {
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 12px;
    color: var(--color-text-primary);
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.feat-mockup-tpl-status {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    white-space: nowrap;
}
.feat-mockup-status-approved {
    background: #d1fae5;
    color: #059669;
}
.feat-mockup-status-pending {
    background: #fef3c7;
    color: #d97706;
}
.feat-mockup-status-rejected {
    background: #fee2e2;
    color: #dc2626;
}
.feat-mockup-tpl-footer {
    padding: 12px 16px;
    font-size: 12px;
    color: var(--color-primary);
    font-weight: 600;
    cursor: default;
}
.feat-mockup-tpl-footer i {
    margin-right: 5px;
}

/* ─── Template Gallery section ─── */
.feat-tpl-gallery {
    padding: var(--section-py) 0;
    background: #f9fafb;
}
.feat-tpl-gallery .section-label,
.feat-tpl-gallery .section-title,
.feat-tpl-gallery .section-subtitle {
    text-align: center;
}

/* 6-col ghost grid: 3 on top row centred, 2 on bottom row centred */
.tpl-example-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.tpl-example-card:nth-child(1) {
    grid-column: 1 / 3;
}
.tpl-example-card:nth-child(2) {
    grid-column: 3 / 5;
}
.tpl-example-card:nth-child(3) {
    grid-column: 5 / 7;
}
.tpl-example-card:nth-child(4) {
    grid-column: 2 / 4;
}
.tpl-example-card:nth-child(5) {
    grid-column: 4 / 6;
}

/* Template card chrome */
.tpl-example-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 8px;
}
.tpl-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}
.tpl-badge-auth {
    background: #ede5ff;
    color: var(--color-primary);
}
.tpl-badge-util {
    background: #dbeafe;
    color: #2563eb;
}
.tpl-badge-mkt {
    background: #fef3c7;
    color: #d97706;
}
.tpl-badge-svc {
    background: #d1fae5;
    color: #059669;
}
.tpl-badge-promo {
    background: #fce7f3;
    color: #db2777;
}
.tpl-name {
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 11px;
    color: var(--color-text-muted);
    background: #f3f4f6;
    padding: 3px 7px;
    border-radius: 4px;
    white-space: nowrap;
}

/* ─── WhatsApp Chat Mockup ─── */
.wa-chat {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}
.wa-chat-hd {
    background: #075e54;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 9px;
}
.wa-chat-hd-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}
.wa-chat-hd-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}
.wa-chat-hd-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 1px;
}
.wa-chat-bd {
    background: #e5ddd5;
    padding: 10px 10px 8px;
}
.wa-bubble {
    background: #fff;
    border-radius: 0 12px 12px 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.wa-bubble-img {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    gap: 6px;
}
.wa-bubble-txt {
    padding: 9px 11px 4px;
    font-size: 12.5px;
    color: #303030;
    line-height: 1.48;
}
.wa-otp-code {
    display: inline-block;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 5px;
    color: var(--color-primary);
    margin: 4px 0;
}
.wa-bubble-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    padding: 2px 10px 7px;
}
.wa-time {
    font-size: 10px;
    color: #999;
}
.wa-ticks {
    font-size: 11px;
    color: #53bdeb;
}
.wa-btns {
    border-top: 1px solid #f0f0f0;
}
.wa-btn {
    display: block;
    width: 100%;
    padding: 8px 12px;
    font-size: 12.5px;
    color: #009de2;
    text-align: center;
    font-weight: 500;
    border-top: 1px solid #f0f0f0;
    background: none;
    cursor: default;
    border-radius: 0;
}
.wa-btn:first-child {
    border-top: none;
}
.wa-btn i {
    margin-right: 5px;
    font-size: 11px;
}
.wa-btn-row {
    display: flex;
}
.wa-btn-row .wa-btn {
    flex: 1;
    border-left: 1px solid #f0f0f0;
}
.wa-btn-row .wa-btn:first-child {
    border-left: none;
}

/* ─── Template gallery responsive ─── */
@media (max-width: 1100px) {
    .tpl-example-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .tpl-example-card:nth-child(1) {
        grid-column: 1 / 3;
    }
    .tpl-example-card:nth-child(2) {
        grid-column: 3 / 5;
    }
    .tpl-example-card:nth-child(3) {
        grid-column: 1 / 3;
    }
    .tpl-example-card:nth-child(4) {
        grid-column: 3 / 5;
    }
    .tpl-example-card:nth-child(5) {
        grid-column: 2 / 4;
    }
}
@media (max-width: 640px) {
    .tpl-example-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .tpl-example-card:nth-child(n) {
        grid-column: auto;
    }
}

/* ================================================================
   CHATBOT ANIMATION - /features/bots-chatbots
   Pure CSS, 12-second infinite loop. All animated elements share
   animation-duration: 12s so they stay perfectly in sync.
   ================================================================ */

/* ─── Chat demo wrapper ─── */
.chatbot-demo {
    max-width: 380px;
    position: relative;
    margin: 0 auto;
}

/* ─── Extended chat body for animation space ─── */
.chatbot-demo-bd {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow: hidden;
}

/* ─── Message row ─── */
.cb-msg {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    opacity: 0;
}
.cb-user {
    justify-content: flex-end;
}
.cb-bot {
    justify-content: flex-start;
}

/* ─── Bubbles ─── */
.cb-bubble {
    font-size: 12.5px;
    line-height: 1.45;
    max-width: 80%;
    border-radius: 12px;
    overflow: hidden;
}
.cb-bubble-user {
    background: #d9fdd3;
    border-radius: 12px 0 12px 12px;
    padding: 8px 11px;
}
.cb-bubble-bot {
    background: #fff;
    border-radius: 0 12px 12px 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}
.cb-bubble-bot .wa-bubble-txt {
    padding: 8px 11px;
}

/* ─── Timestamp ─── */
.cb-time {
    font-size: 10px;
    color: #999;
    align-self: flex-end;
    margin-bottom: 3px;
    white-space: nowrap;
}

/* ─── Typing dots ─── */
.cb-typing-dots {
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.cb-typing-dots span {
    width: 6px;
    height: 6px;
    background: #aaa;
    border-radius: 50%;
    display: inline-block;
    animation: cbDot 0.9s ease-in-out infinite;
}
.cb-typing-dots span:nth-child(2) {
    animation-delay: 0.18s;
}
.cb-typing-dots span:nth-child(3) {
    animation-delay: 0.36s;
}

@keyframes cbDot {
    0%,
    60%,
    100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-4px);
    }
}

/* ─── System message ─── */
.cb-system-row {
    display: flex;
    justify-content: center;
    padding: 4px 0;
    opacity: 0;
}
.cb-system-msg {
    background: rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    font-size: 11px;
    color: #555;
    padding: 4px 12px;
}
.cb-system-msg i {
    margin-right: 4px;
    color: #059669;
}

/* ─── Green status dot in header ─── */
.cb-status-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    margin-right: 4px;
    vertical-align: middle;
    animation: cbPulse 2s ease-in-out infinite;
}
@keyframes cbPulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

/* ─── Keyframe animations (12s loop, all in sync) ─── */

/* 1 - User: "Pricing" - slides from right */
@keyframes cbMsg1 {
    0%,
    4.1% {
        opacity: 0;
        transform: translateX(8px);
    }
    7.5% {
        opacity: 1;
        transform: translateX(0);
    }
    76.6% {
        opacity: 1;
        transform: translateX(0);
    }
    87.5%,
    100% {
        opacity: 0;
        transform: translateX(0);
    }
}

/* 2 - Bot typing indicator 1 - slides from left */
@keyframes cbTyping1 {
    0%,
    10.7% {
        opacity: 0;
        transform: translateX(-8px);
    }
    14.1% {
        opacity: 1;
        transform: translateX(0);
    }
    17.4% {
        opacity: 1;
        transform: translateX(0);
    }
    20.8%,
    100% {
        opacity: 0;
        transform: translateX(0);
    }
}

/* 3 - Bot reply (plans) - slides from left */
@keyframes cbMsg2 {
    0%,
    17.4% {
        opacity: 0;
        transform: translateX(-8px);
    }
    20.8% {
        opacity: 1;
        transform: translateX(0);
    }
    76.6% {
        opacity: 1;
        transform: translateX(0);
    }
    87.5%,
    100% {
        opacity: 0;
        transform: translateX(0);
    }
}

/* 4 - User: "I need urgent help" - slides from right */
@keyframes cbMsg3 {
    0%,
    34.9% {
        opacity: 0;
        transform: translateX(8px);
    }
    38.3% {
        opacity: 1;
        transform: translateX(0);
    }
    76.6% {
        opacity: 1;
        transform: translateX(0);
    }
    87.5%,
    100% {
        opacity: 0;
        transform: translateX(0);
    }
}

/* 5 - Bot typing indicator 2 - slides from left */
@keyframes cbTyping2 {
    0%,
    41.6% {
        opacity: 0;
        transform: translateX(-8px);
    }
    45.0% {
        opacity: 1;
        transform: translateX(0);
    }
    48.3% {
        opacity: 1;
        transform: translateX(0);
    }
    51.6%,
    100% {
        opacity: 0;
        transform: translateX(0);
    }
}

/* 6 - Bot reply (escalate) - slides from left */
@keyframes cbMsg4 {
    0%,
    48.3% {
        opacity: 0;
        transform: translateX(-8px);
    }
    51.6% {
        opacity: 1;
        transform: translateX(0);
    }
    76.6% {
        opacity: 1;
        transform: translateX(0);
    }
    87.5%,
    100% {
        opacity: 0;
        transform: translateX(0);
    }
}

/* 7 - System "Priya joined" - fades up */
@keyframes cbMsg5 {
    0%,
    59.9% {
        opacity: 0;
        transform: translateY(4px);
    }
    63.3% {
        opacity: 1;
        transform: translateY(0);
    }
    76.6% {
        opacity: 1;
        transform: translateY(0);
    }
    87.5%,
    100% {
        opacity: 0;
        transform: translateY(0);
    }
}

/* ─── Apply animations ─── */
.cb-anim-1 {
    animation: cbMsg1 12s linear infinite;
}
.cb-anim-typing-1 {
    animation: cbTyping1 12s linear infinite;
}
.cb-anim-2 {
    animation: cbMsg2 12s linear infinite;
}
.cb-anim-3 {
    animation: cbMsg3 12s linear infinite;
}
.cb-anim-typing-2 {
    animation: cbTyping2 12s linear infinite;
}
.cb-anim-4 {
    animation: cbMsg4 12s linear infinite;
}
.cb-anim-5 {
    animation: cbMsg5 12s linear infinite;
}

/* ─── Respect reduced-motion preference ─── */
@media (prefers-reduced-motion: reduce) {
    .cb-anim-1,
    .cb-anim-typing-1,
    .cb-anim-2,
    .cb-anim-3,
    .cb-anim-typing-2,
    .cb-anim-4,
    .cb-anim-5 {
        animation: none;
        opacity: 1;
        transform: none;
    }
    .cb-typing-dots span {
        animation: none;
    }
    .cb-status-dot {
        animation: none;
    }
}

/* ─── Mobile: scale down the chat demo ─── */
@media (max-width: 768px) {
    .chatbot-demo {
        max-width: 100%;
    }
    .chatbot-demo-bd {
        min-height: 220px;
    }
}

/* =============================================================
   WHATSAPP FLOWS DEMO ANIMATION
   18-second infinite loop - pure CSS
   ============================================================= */

/* ─── Demo container ─── */
.wf-demo {
    max-width: 340px;
    margin: 0 auto;
}

/* ─── Chat body extension ─── */
.wf-demo-bd {
    min-height: 380px;
    position: relative;
}

/* ─── Flow screen: slides up from bottom ─── */
.wf-screen {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f0f2f5;
    border-radius: 16px 16px 0 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
}

/* ─── Flow screen header ─── */
.wf-screen-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    border-radius: 16px 16px 0 0;
}

.wf-screen-title {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.wf-screen-close {
    font-size: 13px;
    color: #6b7280;
    cursor: pointer;
    line-height: 1;
}

/* ─── Flow screen body ─── */
.wf-screen-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ─── Individual field cards ─── */
.wf-field {
    background: #fff;
    border-radius: 10px;
    padding: 10px 12px;
    opacity: 0;
}

.wf-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6b7280;
    margin-bottom: 4px;
}

.wf-input-row,
.wf-select-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wf-val {
    font-size: 13px;
    color: #1f2937;
    font-weight: 500;
}

.wf-edit-icon {
    font-size: 11px;
    color: var(--color-primary);
}

.wf-chevron {
    font-size: 12px;
    color: var(--color-primary);
}

.wf-radio-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wf-radio-opt {
    font-size: 12px;
    color: #6b7280;
}

.wf-radio-active {
    color: var(--color-primary);
    font-weight: 600;
}

/* ─── Submit button ─── */
.wf-submit-wrap {
    opacity: 0;
    padding: 0 0 4px;
}

.wf-submit-btn {
    width: 100%;
    padding: 10px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

/* ─── Success overlay ─── */
.wf-success {
    position: absolute;
    inset: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    opacity: 0;
    border-radius: 16px 16px 0 0;
}

.wf-success-icon {
    font-size: 32px;
    line-height: 1;
}

.wf-success-title {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
}

.wf-success-sub {
    font-size: 12px;
    color: #6b7280;
}

/* ─── Keyframe definitions (18-second cycle) ─── */

/* Bot CTA: slides from left */
@keyframes wfCta {
    0%,
    2.7% {
        opacity: 0;
        transform: translateX(-8px);
    }
    11.1% {
        opacity: 1;
        transform: translateX(0);
    }
    94.3% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(0);
    }
}

/* Flow screen: translateY slide */
@keyframes wfScreen {
    0%,
    16.6% {
        transform: translateY(100%);
    }
    27.7% {
        transform: translateY(0);
    }
    75.0% {
        transform: translateY(0);
    }
    83.3%,
    100% {
        transform: translateY(100%);
    }
}

/* Field 1 */
@keyframes wfField1 {
    0%,
    30.5% {
        opacity: 0;
        transform: translateY(6px);
    }
    38.8% {
        opacity: 1;
        transform: translateY(0);
    }
    63.8% {
        opacity: 1;
        transform: translateY(0);
    }
    69.4%,
    100% {
        opacity: 0;
        transform: translateY(0);
    }
}

/* Field 2 */
@keyframes wfField2 {
    0%,
    38.8% {
        opacity: 0;
        transform: translateY(6px);
    }
    47.2% {
        opacity: 1;
        transform: translateY(0);
    }
    63.8% {
        opacity: 1;
        transform: translateY(0);
    }
    69.4%,
    100% {
        opacity: 0;
        transform: translateY(0);
    }
}

/* Field 3 */
@keyframes wfField3 {
    0%,
    47.1% {
        opacity: 0;
        transform: translateY(6px);
    }
    55.5% {
        opacity: 1;
        transform: translateY(0);
    }
    63.8% {
        opacity: 1;
        transform: translateY(0);
    }
    69.4%,
    100% {
        opacity: 0;
        transform: translateY(0);
    }
}

/* Submit button - pulse effect at ~63% */
@keyframes wfSubmit {
    0%,
    55.5% {
        opacity: 0;
        transform: scale(1);
    }
    61.1% {
        opacity: 1;
        transform: scale(1);
    }
    63.0% {
        transform: scale(0.96);
    }
    63.8% {
        opacity: 0;
        transform: scale(1);
    }
    100% {
        opacity: 0;
    }
}

/* Success state */
@keyframes wfSuccess {
    0%,
    63.8% {
        opacity: 0;
    }
    69.4% {
        opacity: 1;
    }
    75.0% {
        opacity: 1;
    }
    77.7%,
    100% {
        opacity: 0;
    }
}

/* Confirmation: slides from left */
@keyframes wfConfirm {
    0%,
    86.0% {
        opacity: 0;
        transform: translateX(-8px);
    }
    91.6% {
        opacity: 1;
        transform: translateX(0);
    }
    94.3% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(0);
    }
}

/* ─── Apply animations ─── */
.wf-anim-cta {
    animation: wfCta 18s linear infinite;
    opacity: 0;
}
.wf-anim-screen {
    animation: wfScreen 18s linear infinite;
    transform: translateY(100%);
}
.wf-anim-field-1 {
    animation: wfField1 18s linear infinite;
}
.wf-anim-field-2 {
    animation: wfField2 18s linear infinite;
}
.wf-anim-field-3 {
    animation: wfField3 18s linear infinite;
}
.wf-anim-submit {
    animation: wfSubmit 18s linear infinite;
}
.wf-anim-success {
    animation: wfSuccess 18s linear infinite;
}
.wf-anim-confirm {
    animation: wfConfirm 18s linear infinite;
    opacity: 0;
    margin-top: 8px;
}

/* ─── Respect reduced-motion preference ─── */
@media (prefers-reduced-motion: reduce) {
    .wf-anim-cta,
    .wf-anim-field-1,
    .wf-anim-field-2,
    .wf-anim-field-3,
    .wf-anim-submit,
    .wf-anim-confirm {
        animation: none;
        opacity: 1;
        transform: none;
    }
    .wf-anim-screen {
        animation: none;
        transform: translateY(0);
    }
    .wf-anim-success {
        animation: none;
        opacity: 0;
    }
    .wf-field {
        opacity: 1;
    }
    .wf-submit-wrap {
        opacity: 1;
    }
}

/* ─── Mobile ─── */
@media (max-width: 768px) {
    .wf-demo {
        max-width: 100%;
    }
    .wf-demo-bd {
        min-height: 320px;
    }
}

/* ─── Automated Bookings Demo ─── */

/* Container + sizing */
.bk-demo {
    max-width: 340px;
    margin: 0 auto;
}
.bk-demo-bd {
    min-height: 340px;
    position: relative;
    overflow: hidden;
}

/* Quick-reply chips (service selection) */
.bk-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}
.bk-chip {
    background: #ede5ff;
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Confirmed booking card inside a bubble */
.bk-confirm-card {
    background: #f0fdf4;
    border-radius: 10px;
    padding: 10px 12px;
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.6;
}
.bk-confirm-card strong {
    color: #059669;
}

/* Animation classes (opacity: 0 default so nothing shows before anim starts) */
.bk-anim-1 {
    animation: bkMsg1 20s linear infinite;
    opacity: 0;
}
.bk-anim-2 {
    animation: bkMsg2 20s linear infinite;
    opacity: 0;
    margin-top: 8px;
}
.bk-anim-3 {
    animation: bkMsg3 20s linear infinite;
    opacity: 0;
    margin-top: 8px;
}
.bk-anim-4 {
    animation: bkMsg4 20s linear infinite;
    opacity: 0;
    margin-top: 8px;
}
.bk-anim-5 {
    animation: bkMsg5 20s linear infinite;
    opacity: 0;
    margin-top: 8px;
}

@keyframes bkMsg1 {
    0%,
    2.5% {
        opacity: 0;
        transform: translateY(8px);
    }
    7.5%,
    80% {
        opacity: 1;
        transform: translateY(0);
    }
    90%,
    100% {
        opacity: 0;
        transform: translateY(0);
    }
}
@keyframes bkMsg2 {
    0%,
    12.5% {
        opacity: 0;
        transform: translateY(8px);
    }
    17.5%,
    80% {
        opacity: 1;
        transform: translateY(0);
    }
    90%,
    100% {
        opacity: 0;
        transform: translateY(0);
    }
}
@keyframes bkMsg3 {
    0%,
    22.5% {
        opacity: 0;
        transform: translateY(8px);
    }
    27.5%,
    80% {
        opacity: 1;
        transform: translateY(0);
    }
    90%,
    100% {
        opacity: 0;
        transform: translateY(0);
    }
}
@keyframes bkMsg4 {
    0%,
    35% {
        opacity: 0;
        transform: translateY(8px);
    }
    40%,
    80% {
        opacity: 1;
        transform: translateY(0);
    }
    90%,
    100% {
        opacity: 0;
        transform: translateY(0);
    }
}
@keyframes bkMsg5 {
    0%,
    47.5% {
        opacity: 0;
        transform: translateY(8px);
    }
    52.5%,
    80% {
        opacity: 1;
        transform: translateY(0);
    }
    90%,
    100% {
        opacity: 0;
        transform: translateY(0);
    }
}

/* Reduced-motion override */
@media (prefers-reduced-motion: reduce) {
    .bk-anim-1,
    .bk-anim-2,
    .bk-anim-3,
    .bk-anim-4,
    .bk-anim-5 {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .bk-demo {
        max-width: 100%;
    }
    .bk-demo-bd {
        min-height: 300px;
    }
}

/* ─── Multi-Agent Messaging Demo ─── */

/* Container */
.ma-demo {
    max-width: 340px;
    margin: 0 auto;
}
.ma-demo-bd {
    min-height: 360px;
    position: relative;
    overflow: hidden;
}

/* Internal note bubble - amber tinted, full-width inside chat */
.ma-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 11.5px;
    color: #92400e;
    line-height: 1.5;
    margin: 8px 0;
}
.ma-note-icon {
    font-size: 13px;
    color: #d97706;
    margin-top: 1px;
    flex-shrink: 0;
}
.ma-note-label {
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #b45309;
    display: block;
    margin-bottom: 2px;
}

/* Assignment badge - centered pill */
.ma-assign {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 8px auto;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 11.5px;
    font-weight: 600;
    color: #15803d;
    width: fit-content;
}
.ma-assign i {
    font-size: 11px;
}

/* Agent avatar chip (used inside confirmation bubble) */
.ma-agent-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #ede9fe;
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
    margin-top: 4px;
}
.ma-agent-chip-avatar {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animation classes - 22s loop, opacity:0 default */
.ma-anim-1 {
    animation: maMsg1 22s linear infinite;
    opacity: 0;
}
.ma-anim-2 {
    animation: maMsg2 22s linear infinite;
    opacity: 0;
}
.ma-anim-3 {
    animation: maMsg3 22s linear infinite;
    opacity: 0;
}
.ma-anim-4 {
    animation: maMsg4 22s linear infinite;
    opacity: 0;
}

/* Timeline (22s = 100%)
   msg1 appears  @  0.5s → 2.3%
   msg2 appears  @  3.5s → 15.9%
   msg3 appears  @  6.0s → 27.3%
   msg4 appears  @  9.0s → 40.9%
   all visible until 16s → 72.7%
   fade-out 16s–18s → 81.8%
   gap 18s–22s  → 100%
*/
@keyframes maMsg1 {
    0%,
    2.3% {
        opacity: 0;
        transform: translateY(8px);
    }
    7.0%,
    72.7% {
        opacity: 1;
        transform: translateY(0);
    }
    81.8%,
    100% {
        opacity: 0;
        transform: translateY(0);
    }
}
@keyframes maMsg2 {
    0%,
    15.9% {
        opacity: 0;
        transform: translateY(8px);
    }
    20.5%,
    72.7% {
        opacity: 1;
        transform: translateY(0);
    }
    81.8%,
    100% {
        opacity: 0;
        transform: translateY(0);
    }
}
@keyframes maMsg3 {
    0%,
    27.3% {
        opacity: 0;
        transform: translateY(8px);
    }
    31.8%,
    72.7% {
        opacity: 1;
        transform: translateY(0);
    }
    81.8%,
    100% {
        opacity: 0;
        transform: translateY(0);
    }
}
@keyframes maMsg4 {
    0%,
    40.9% {
        opacity: 0;
        transform: translateY(8px);
    }
    45.5%,
    72.7% {
        opacity: 1;
        transform: translateY(0);
    }
    81.8%,
    100% {
        opacity: 0;
        transform: translateY(0);
    }
}

/* Reduced-motion override */
@media (prefers-reduced-motion: reduce) {
    .ma-anim-1,
    .ma-anim-2,
    .ma-anim-3,
    .ma-anim-4 {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .ma-demo {
        max-width: 100%;
    }
    .ma-demo-bd {
        min-height: 300px;
    }
}

/* ============================================================
   SECTION 27 - INTEGRATIONS & API PAGE (.ia-*)
   ============================================================ */

/* ── Solution visual wrapper ─────────────────────────────── */
.ia-demo {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 480px;
    width: 100%;
}

/* ── Flow diagram card ───────────────────────────────────── */
.ia-flow {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 24px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    position: relative;
}

/* ── Nodes ───────────────────────────────────────────────── */
.ia-node {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    opacity: 0.6;
    transition: opacity 0.3s;
}
.ia-node-app {
    background: #ede5ff;
    color: #5e17eb;
    animation: iaNodeGlow 16s ease-in-out infinite;
}
.ia-node-msgid {
    background: linear-gradient(135deg, #5e17eb, #4c0fbd);
    color: #fff;
    width: 72px;
    height: 72px;
    font-size: 1.6rem;
    box-shadow: 0 0 0 4px rgba(94, 23, 235, 0.15);
    animation: iaNodePulse 16s ease-in-out infinite;
    opacity: 1;
}
.ia-node-wa {
    background: #d1fae5;
    color: #059669;
    animation: iaNodeGlow 16s ease-in-out infinite 0.5s;
}

/* ── Track (wire between nodes) ─────────────────────────── */
.ia-flow-track {
    flex: 1;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* ── Animated dot packet ─────────────────────────────────── */
.ia-dot {
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transform: translateY(-50%) translateX(-100%);
}
.ia-dot-1,
.ia-dot-2,
.ia-dot-3 {
    background: #5e17eb;
    left: 0;
    animation: iaDotLeft 16s ease-in-out infinite;
}
.ia-dot-2 {
    animation-delay: 0.4s;
}
.ia-dot-3 {
    animation-delay: 0.8s;
}
.ia-dot-4,
.ia-dot-5,
.ia-dot-6 {
    background: #059669;
    left: 0;
    animation: iaDotRight 16s ease-in-out infinite;
}
.ia-dot-5 {
    animation-delay: 0.35s;
}
.ia-dot-6 {
    animation-delay: 0.7s;
}

/* ── Node labels ─────────────────────────────────────────── */
.ia-node-label {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.68rem;
    font-weight: 600;
    color: #6b7280;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

/* ── API Console mock ────────────────────────────────────── */
.ia-console {
    background: #0f0e1a;
    border-radius: 12px;
    overflow: hidden;
    font-family: "Courier New", monospace;
    font-size: 0.78rem;
    line-height: 1.6;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.ia-console-hd {
    background: #1c1b2e;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.ia-console-hd::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5f57;
    box-shadow:
        16px 0 0 #febc2e,
        32px 0 0 #28c840;
}
.ia-console-hd-title {
    margin-left: 44px;
    color: #6b7280;
    font-size: 0.72rem;
}
.ia-console-body {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* ── Request / response lines ────────────────────────────── */
.ia-req {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: iaReq 16s ease-in-out infinite;
}
.ia-method {
    background: #5e17eb;
    color: #fff;
    padding: 1px 7px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.72rem;
}
.ia-endpoint {
    color: #a5b4fc;
}

.ia-req-body {
    margin: 6px 0 0 0;
    padding: 8px 10px;
    background: #1c1b2e;
    border-radius: 6px;
    opacity: 0;
    animation: iaBody 16s ease-in-out infinite;
}
.ia-json-key {
    color: #7dd3fc;
}
.ia-json-str {
    color: #86efac;
}
.ia-json-num {
    color: #fde68a;
}

.ia-resp {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    opacity: 0;
    animation: iaResp 16s ease-in-out infinite;
}
.ia-status {
    background: #1c1b2e;
    color: #6b7280;
    padding: 1px 7px;
    border-radius: 4px;
    font-size: 0.72rem;
}
.ia-status-ok {
    background: #052e16;
    color: #4ade80;
    font-weight: 700;
}
.ia-resp-txt {
    color: #d1d5db;
}

/* ── Partners section ────────────────────────────────────── */
.feat-partners {
    background: #fff;
    padding: 80px 0;
}
.ia-partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 40px;
}
.ia-partner-tile {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
    position: relative;
}
.ia-partner-tile:hover {
    box-shadow: 0 4px 16px rgba(94, 23, 235, 0.1);
    transform: translateY(-2px);
}
.ia-partner-icon {
    font-size: 2rem;
    line-height: 1;
}
.ia-partner-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: #1f2937;
}
.ia-partner-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #e0d4fc;
    color: #5e17eb;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.ia-partners-footer {
    margin-top: 28px;
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
}
.ia-partners-footer a {
    color: #5e17eb;
    font-weight: 600;
    text-decoration: none;
}
.ia-partners-footer a:hover {
    text-decoration: underline;
}

/* ── Keyframe Animations (16 s loop) ─────────────────────── */
@keyframes iaNodeGlow {
    0%,
    24.9% {
        opacity: 0.6;
    }
    25%,
    81% {
        opacity: 1;
    }
    81.3%,
    100% {
        opacity: 0.6;
    }
}
@keyframes iaNodePulse {
    0%,
    30.9% {
        box-shadow: 0 0 0 4px rgba(94, 23, 235, 0.15);
    }
    31%,
    80.9% {
        box-shadow:
            0 0 0 8px rgba(94, 23, 235, 0.25),
            0 0 0 14px rgba(94, 23, 235, 0.08);
    }
    81%,
    100% {
        box-shadow: 0 0 0 4px rgba(94, 23, 235, 0.15);
    }
}
@keyframes iaDotLeft {
    0%,
    5.9% {
        transform: translateY(-50%) translateX(-100%);
        opacity: 0;
    }
    6% {
        opacity: 1;
        transform: translateY(-50%) translateX(-100%);
    }
    31% {
        transform: translateY(-50%)
            translateX(calc(var(--track-w, 120px) + 100%));
        opacity: 1;
    }
    31.1%,
    100% {
        opacity: 0;
        transform: translateY(-50%)
            translateX(calc(var(--track-w, 120px) + 100%));
    }
}
@keyframes iaDotRight {
    0%,
    17.9% {
        transform: translateY(-50%) translateX(-100%);
        opacity: 0;
    }
    18% {
        opacity: 1;
        transform: translateY(-50%) translateX(-100%);
    }
    43% {
        transform: translateY(-50%)
            translateX(calc(var(--track-w, 120px) + 100%));
        opacity: 1;
    }
    43.1%,
    100% {
        opacity: 0;
        transform: translateY(-50%)
            translateX(calc(var(--track-w, 120px) + 100%));
    }
}
@keyframes iaReq {
    0%,
    36.9% {
        opacity: 0;
    }
    37%,
    89.9% {
        opacity: 1;
    }
    90%,
    100% {
        opacity: 0;
    }
}
@keyframes iaBody {
    0%,
    49.9% {
        opacity: 0;
    }
    50%,
    89.9% {
        opacity: 1;
    }
    90%,
    100% {
        opacity: 0;
    }
}
@keyframes iaResp {
    0%,
    67.9% {
        opacity: 0;
    }
    68%,
    89.9% {
        opacity: 1;
    }
    90%,
    100% {
        opacity: 0;
    }
}

/* ── Reduced-motion override ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .ia-node-app,
    .ia-node-wa {
        animation: none;
        opacity: 1;
    }
    .ia-node-msgid {
        animation: none;
    }
    .ia-dot {
        animation: none;
        display: none;
    }
    .ia-req,
    .ia-req-body,
    .ia-resp {
        animation: none;
        opacity: 1;
    }
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 768px) {
    .ia-demo {
        max-width: 100%;
    }
    .ia-flow {
        padding: 20px 14px 28px;
    }
    .ia-node {
        width: 52px;
        height: 52px;
        font-size: 1.1rem;
    }
    .ia-node-msgid {
        width: 58px;
        height: 58px;
        font-size: 1.2rem;
    }
    .ia-partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ia-console {
        font-size: 0.7rem;
    }
}

/* ============================================================
   SECTION 28 - GOOGLE SHEETS INTEGRATION PAGE (.gs- prefix)
   ============================================================ */

/* ── Sheet Demo Wrapper ──────────────────────────────────── */
.gs-demo {
    max-width: 480px;
    width: 100%;
    position: relative;
}

/* ── Sheet Card ──────────────────────────────────────────── */
.gs-sheet {
    background: #fff;
    border-radius: 14px;
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #e0e0e0;
    position: relative;
}

/* ── Sheet Header (Google Sheets green chrome) ───────────── */
.gs-sheet-hd {
    background: #1a73e8;
    padding: 10px 14px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.gs-sheet-hd-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}
.gs-sheet-hd-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    gap: 6px;
}
.gs-sheet-hd-title i {
    font-size: 0.85rem;
    color: #34a853;
    background: #fff;
    border-radius: 3px;
    padding: 2px 3px;
}
.gs-sheet-hd-share {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 3px 10px;
    cursor: default;
}

/* ── Sheet Tab Bar ───────────────────────────────────────── */
.gs-sheet-tabs {
    display: flex;
    gap: 2px;
    align-items: flex-end;
}
.gs-sheet-tab {
    font-size: 0.7rem;
    padding: 4px 14px;
    border-radius: 6px 6px 0 0;
    cursor: default;
    color: rgba(255, 255, 255, 0.75);
    background: transparent;
    border: 1px solid transparent;
    border-bottom: none;
}
.gs-sheet-tab.active {
    background: #fff;
    color: #333;
    font-weight: 600;
    border-color: #e0e0e0;
}

/* ── Table ───────────────────────────────────────────────── */
.gs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.72rem;
}
.gs-thead {
    background: #f3f4f6;
}
.gs-th {
    padding: 6px 10px;
    text-align: left;
    font-weight: 600;
    color: #6b7280;
    border-bottom: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    white-space: nowrap;
}
.gs-th:last-child {
    border-right: none;
}
.gs-tbody {
}
.gs-row {
    border-bottom: 1px solid #f0f0f0;
}
.gs-row:last-child {
    border-bottom: none;
}
.gs-td {
    padding: 7px 10px;
    color: #374151;
    border-right: 1px solid #f0f0f0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 110px;
}
.gs-td:last-child {
    border-right: none;
}

/* ── Status Badge ────────────────────────────────────────── */
.gs-status {
    display: inline-block;
    padding: 2px 9px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.gs-status-sent {
    background: #d1fae5;
    color: #065f46;
}
.gs-status-new {
    background: #fef3c7;
    color: #92400e;
}

/* ── Animated New Row ────────────────────────────────────── */
.gs-row-new {
    animation: gsRowIn 14s ease-in-out infinite;
    background: #f0fdf4;
}
.gs-row-new .gs-td {
    color: #1a7a3c;
    font-weight: 500;
}

.gs-cell-1 {
    animation: gsCell1 14s ease-in-out infinite;
}
.gs-cell-2 {
    animation: gsCell2 14s ease-in-out infinite;
}
.gs-cell-3 {
    animation: gsCell3 14s ease-in-out infinite;
}
.gs-cell-status-new {
    animation: gsStatusNew 14s ease-in-out infinite;
}
.gs-cell-status-sent {
    animation: gsStatusSent 14s ease-in-out infinite;
}

/* ── WhatsApp tick on new row ─────────────────────────────── */
.gs-tick {
    color: #25d366;
    font-size: 0.85rem;
    margin-left: 4px;
    animation: gsTick 14s ease-in-out infinite;
    opacity: 0;
    display: inline-block;
}

/* ── WhatsApp notification toast ────────────────────────── */
.gs-notif {
    position: absolute;
    top: 12px;
    right: -12px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: gsNotif 14s ease-in-out infinite;
    opacity: 0;
    z-index: 2;
    min-width: 190px;
    border: 1px solid #e5e7eb;
}
.gs-notif-icon {
    width: 28px;
    height: 28px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 0.85rem;
}
.gs-notif-txt {
    display: flex;
    flex-direction: column;
}
.gs-notif-name {
    font-size: 0.68rem;
    font-weight: 700;
    color: #1f2937;
}
.gs-notif-msg {
    font-size: 0.65rem;
    color: #6b7280;
}

/* ── Keyframe Animations (14s loop) ─────────────────────── */

/* WA notification toast: 5–22% */
@keyframes gsNotif {
    0%,
    4.9% {
        opacity: 0;
        transform: translateX(20px);
    }
    5% {
        opacity: 0;
        transform: translateX(20px);
    }
    7% {
        opacity: 1;
        transform: translateX(0);
    }
    20% {
        opacity: 1;
        transform: translateX(0);
    }
    22%,
    100% {
        opacity: 0;
        transform: translateX(20px);
    }
}

/* New row slides in from left: 14–100% */
@keyframes gsRowIn {
    0%,
    13.9% {
        opacity: 0;
        transform: translateX(-20px);
    }
    14% {
        opacity: 0;
        transform: translateX(-20px);
    }
    18%,
    89% {
        opacity: 1;
        transform: translateX(0);
    }
    92%,
    100% {
        opacity: 0;
        transform: translateX(-20px);
    }
}

/* Cell stagger fades */
@keyframes gsCell1 {
    0%,
    13.9% {
        opacity: 0;
    }
    14%,
    89% {
        opacity: 1;
    }
    92%,
    100% {
        opacity: 0;
    }
}
@keyframes gsCell2 {
    0%,
    20.9% {
        opacity: 0;
    }
    21%,
    89% {
        opacity: 1;
    }
    92%,
    100% {
        opacity: 0;
    }
}
@keyframes gsCell3 {
    0%,
    27.9% {
        opacity: 0;
    }
    28%,
    89% {
        opacity: 1;
    }
    92%,
    100% {
        opacity: 0;
    }
}

/* Status: amber "New" at 35–55%, green "Messaged" at 55–90% */
@keyframes gsStatusNew {
    0%,
    34.9% {
        opacity: 0;
    }
    35%,
    54% {
        opacity: 1;
    }
    55%,
    100% {
        opacity: 0;
    }
}
@keyframes gsStatusSent {
    0%,
    54.9% {
        opacity: 0;
    }
    55%,
    89% {
        opacity: 1;
    }
    92%,
    100% {
        opacity: 0;
    }
}

/* WhatsApp tick: 62–90% */
@keyframes gsTick {
    0%,
    61.9% {
        opacity: 0;
    }
    62%,
    89% {
        opacity: 1;
    }
    92%,
    100% {
        opacity: 0;
    }
}

/* ── Reduced-motion override ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .gs-row-new {
        animation: none;
        opacity: 1;
        transform: none;
    }
    .gs-cell-1,
    .gs-cell-2,
    .gs-cell-3 {
        animation: none;
        opacity: 1;
    }
    .gs-cell-status-new {
        animation: none;
        opacity: 0;
    }
    .gs-cell-status-sent {
        animation: none;
        opacity: 1;
    }
    .gs-tick {
        animation: none;
        opacity: 1;
    }
    .gs-notif {
        animation: none;
        opacity: 0;
    }
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 768px) {
    .gs-demo {
        max-width: 100%;
    }
    .gs-notif {
        right: 0;
        min-width: 160px;
        top: 8px;
    }
    .gs-table {
        font-size: 0.68rem;
    }
    .gs-td,
    .gs-th {
        padding: 5px 7px;
        max-width: 80px;
    }
}

/* =============================================================
   SECTION 29 - ANALYTICS & REPORTS PAGE  (.ar-  prefix)
   ============================================================= */

/* ── Demo wrapper ─────────────────────────────────────────── */
.ar-demo {
    max-width: 460px;
    width: 100%;
    position: relative;
    margin: 0 auto;
}

/* ── Dashboard card ───────────────────────────────────────── */
.ar-dash {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    animation: arDash 16s ease-in-out infinite;
    opacity: 0;
}

/* ── Dashboard header ─────────────────────────────────────── */
.ar-dash-hd {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px 10px;
    border-bottom: 1px solid #f0f0f0;
}

.ar-dash-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1f2937;
    flex: 1;
}

.ar-dash-live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.62rem;
    font-weight: 600;
    color: #059669;
    background: #d1fae5;
    border-radius: 20px;
    padding: 2px 8px;
}

.ar-dash-live::before {
    content: "●";
    font-size: 0.5rem;
    animation: arLivePulse 1.4s ease-in-out infinite;
}

@keyframes arLivePulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
}

.ar-dash-period {
    font-size: 0.62rem;
    color: #6b7280;
    background: #f3f4f6;
    border-radius: 20px;
    padding: 2px 8px;
    white-space: nowrap;
}

/* ── Chart area ───────────────────────────────────────────── */
.ar-chart-wrap {
    padding: 14px 18px 8px;
    position: relative;
}

.ar-chart-bars {
    display: flex;
    align-items: stretch;
    gap: 12px;
    height: 140px;
}

.ar-bar-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ar-bar-val {
    font-size: 0.62rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
    opacity: 0;
    animation: arValsIn 16s ease-in-out infinite;
    white-space: nowrap;
}

.ar-bar {
    width: 100%;
    flex: 1;
    background: #f3f4f6;
    border-radius: 6px 6px 0 0;
    position: relative;
    overflow: hidden;
}

.ar-bar-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 6px 6px 0 0;
    height: 0;
}

.ar-bar-1 .ar-bar-fill {
    background: linear-gradient(180deg, #7c3aed 0%, #5e17eb 100%);
    animation: arBar1 16s ease-in-out infinite;
}

.ar-bar-2 .ar-bar-fill {
    background: linear-gradient(180deg, #818cf8 0%, #6366f1 100%);
    animation: arBar2 16s ease-in-out infinite;
}

.ar-bar-3 .ar-bar-fill {
    background: linear-gradient(180deg, #34d399 0%, #10b981 100%);
    animation: arBar3 16s ease-in-out infinite;
}

.ar-bar-4 .ar-bar-fill {
    background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%);
    animation: arBar4 16s ease-in-out infinite;
}

.ar-bar-label {
    font-size: 0.6rem;
    color: #6b7280;
    margin-top: 5px;
    text-align: center;
    white-space: nowrap;
}

/* ── Trend badge ──────────────────────────────────────────── */
.ar-trend-badge {
    position: absolute;
    top: 8px;
    right: 0;
    background: #d1fae5;
    color: #059669;
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: 20px;
    padding: 3px 9px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    animation: arTrend 16s ease-in-out infinite;
}

/* ── Metric pills row ─────────────────────────────────────── */
.ar-metrics-row {
    display: flex;
    gap: 6px;
    padding: 8px 18px 10px;
    flex-wrap: wrap;
}

.ar-metric-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.58rem;
    color: #6b7280;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 3px 8px;
    white-space: nowrap;
    opacity: 0;
    animation: arValsIn 16s ease-in-out infinite;
}

.ar-metric-pill i {
    font-size: 0.5rem;
    color: var(--color-primary);
}

/* ── Export row ───────────────────────────────────────────── */
.ar-export-row {
    display: flex;
    justify-content: flex-end;
    padding: 4px 18px 14px;
}

.ar-export-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
    background: transparent;
    border-radius: 8px;
    padding: 5px 12px;
    animation: arExport 16s ease-in-out infinite;
    cursor: default;
}

/* ── Keyframes ────────────────────────────────────────────── */

/* Dashboard: slide up + fade in → hold → fade out → loop */
@keyframes arDash {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }
    8% {
        opacity: 1;
        transform: translateY(0);
    }
    88% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(0);
    }
}

/* Bar 1 - Sent: grows 10–25%, holds 25–88%, resets */
@keyframes arBar1 {
    0%,
    9.9% {
        height: 0;
    }
    25% {
        height: 88%;
    }
    88% {
        height: 88%;
    }
    100% {
        height: 0;
    }
}

/* Bar 2 - Delivered: grows 18–33% */
@keyframes arBar2 {
    0%,
    17.9% {
        height: 0;
    }
    33% {
        height: 82%;
    }
    88% {
        height: 82%;
    }
    100% {
        height: 0;
    }
}

/* Bar 3 - Read: grows 26–42% */
@keyframes arBar3 {
    0%,
    25.9% {
        height: 0;
    }
    42% {
        height: 66%;
    }
    88% {
        height: 66%;
    }
    100% {
        height: 0;
    }
}

/* Bar 4 - Replied: grows 34–50% */
@keyframes arBar4 {
    0%,
    33.9% {
        height: 0;
    }
    50% {
        height: 24%;
    }
    88% {
        height: 24%;
    }
    100% {
        height: 0;
    }
}

/* Bar values + metric pills: fade in 42–90% */
@keyframes arValsIn {
    0%,
    41.9% {
        opacity: 0;
    }
    55% {
        opacity: 1;
    }
    88% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Trend badge: slide in from right 55–88% */
@keyframes arTrend {
    0%,
    54.9% {
        opacity: 0;
        transform: translateX(10px);
    }
    65% {
        opacity: 1;
        transform: translateX(0);
    }
    88% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(0);
    }
}

/* Export button: box-shadow pulse 68–84% */
@keyframes arExport {
    0%,
    67.9% {
        box-shadow: none;
    }
    72% {
        box-shadow: 0 0 0 4px rgba(94, 23, 235, 0.18);
    }
    78% {
        box-shadow: 0 0 0 2px rgba(94, 23, 235, 0.06);
    }
    82% {
        box-shadow: 0 0 0 4px rgba(94, 23, 235, 0.18);
    }
    88% {
        box-shadow: none;
    }
    100% {
        box-shadow: none;
    }
}

/* ── Reduced-motion override ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .ar-dash {
        animation: none;
        opacity: 1;
        transform: none;
    }
    .ar-dash-live::before {
        animation: none;
    }
    .ar-bar-1 .ar-bar-fill {
        animation: none;
        height: 88%;
    }
    .ar-bar-2 .ar-bar-fill {
        animation: none;
        height: 82%;
    }
    .ar-bar-3 .ar-bar-fill {
        animation: none;
        height: 66%;
    }
    .ar-bar-4 .ar-bar-fill {
        animation: none;
        height: 24%;
    }
    .ar-bar-val {
        animation: none;
        opacity: 1;
    }
    .ar-metric-pill {
        animation: none;
        opacity: 1;
    }
    .ar-trend-badge {
        animation: none;
        opacity: 1;
        transform: none;
    }
    .ar-export-btn {
        animation: none;
    }
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 768px) {
    .ar-demo {
        max-width: 100%;
    }
    .ar-chart-bars {
        gap: 8px;
        height: 120px;
    }
    .ar-bar-label {
        font-size: 0.52rem;
    }
    .ar-bar-val {
        font-size: 0.56rem;
    }
    .ar-metrics-row {
        gap: 4px;
    }
    .ar-metric-pill {
        font-size: 0.54rem;
        padding: 2px 6px;
    }
}

/* ============================================================
   SECTION 30 - DIRECT CHAT LINK & QR GENERATOR PAGE  (.dc- prefix)
   ============================================================ */

/* ── Comparison table ────────────────────────────────────── */
.dc-comparison-table {
    margin-top: 28px;
    overflow-x: auto;
}
.dc-comparison-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}
.dc-comparison-table th,
.dc-comparison-table td {
    padding: 9px 14px;
    border: 1px solid #e5e7eb;
    text-align: center;
    vertical-align: middle;
}
.dc-comparison-table th:first-child,
.dc-comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #374151;
}
.dc-comparison-table thead th {
    background: #f3f4f6;
    font-weight: 700;
    color: #1f2937;
}
.dc-col-highlight {
    background: #f0fdf4;
    color: #166534;
    font-weight: 600;
}
.dc-col-highlight thead th {
    background: #dcfce7;
}
.dc-check {
    color: #25d366;
    margin-right: 4px;
}
.dc-cross {
    color: #ef4444;
    margin-right: 4px;
}

/* ── Demo container ──────────────────────────────────────── */
.dc-demo {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    user-select: none;
    position: relative;
}

/* ── Generator panel ─────────────────────────────────────── */
.dc-panel {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    animation: dcPanel 16s ease-in-out infinite;
}
.dc-panel-hd {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}
.dc-panel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}
.dc-dot-r {
    background: #ef4444;
}
.dc-dot-y {
    background: #f59e0b;
}
.dc-dot-g {
    background: #22c55e;
}
.dc-panel-title {
    margin-left: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #374151;
}
.dc-panel-bd {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ── Fields ──────────────────────────────────────────────── */
.dc-field {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.dc-field-label {
    font-size: 0.66rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.dc-field-val {
    font-size: 0.8rem;
    color: #1f2937;
    background: #f3f4f6;
    padding: 7px 10px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}
.dc-msg-val {
    font-style: italic;
    color: #374151;
}

/* ── Generated output (animated in) ─────────────────────── */
.dc-output {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    animation: dcOutput 16s ease-in-out infinite;
}
.dc-output-label {
    font-size: 0.64rem;
    font-weight: 700;
    color: #166534;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.dc-link-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.dc-link-text {
    flex: 1;
    font-size: 0.72rem;
    color: #15803d;
    font-family: monospace;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.dc-copy-btn {
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    flex-shrink: 0;
    animation: dcCopy 16s ease-in-out infinite;
}

/* ── QR code (animated in) ───────────────────────────────── */
.dc-qr-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: dcQr 16s ease-in-out infinite;
}
.dc-qr {
    width: 110px;
    height: 110px;
    background: #fff;
    border: 2px solid #1f2937;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    padding: 8px;
}
/* QR finder corners */
.dc-qr-corner {
    position: absolute;
    width: 26px;
    height: 26px;
    border: 3px solid #1f2937;
    border-radius: 3px;
}
.dc-qr-corner::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    background: #1f2937;
    border-radius: 1px;
}
.dc-qr-tl {
    top: 6px;
    left: 6px;
}
.dc-qr-tr {
    top: 6px;
    right: 6px;
}
.dc-qr-bl {
    bottom: 6px;
    left: 6px;
}
/* Data dot pattern */
.dc-qr-dots {
    position: absolute;
    top: 10px;
    left: 38px;
    right: 38px;
    bottom: 38px;
    background-image:
        repeating-linear-gradient(
            0deg,
            #1f2937 0,
            #1f2937 3px,
            transparent 3px,
            transparent 7px
        ),
        repeating-linear-gradient(
            90deg,
            #1f2937 0,
            #1f2937 3px,
            transparent 3px,
            transparent 7px
        );
    opacity: 0.55;
}
/* Scan line */
.dc-scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #25d366, transparent);
    top: 0;
    animation: dcScan 16s ease-in-out infinite;
    box-shadow: 0 0 6px 1px rgba(37, 211, 102, 0.5);
}
.dc-qr-label {
    font-size: 0.7rem;
    color: #6b7280;
    font-weight: 500;
}

/* ── WhatsApp chat window ────────────────────────────────── */
.dc-chat {
    background: #e5ddd5;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    animation: dcChat 16s ease-in-out infinite;
}
.dc-chat-hd {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #075e54;
    color: #fff;
}
.dc-chat-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: #fff;
    flex-shrink: 0;
}
.dc-chat-name {
    flex: 1;
    font-size: 0.8rem;
    font-weight: 600;
}
.dc-online {
    font-size: 0.65rem;
    color: #a7f3d0;
}
.dc-chat-bd {
    padding: 12px 14px;
    min-height: 60px;
    display: flex;
    align-items: flex-start;
}
.dc-bubble {
    background: #fff;
    border-radius: 0 12px 12px 12px;
    padding: 8px 12px;
    font-size: 0.78rem;
    color: #1f2937;
    max-width: 85%;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    animation: dcBubble 16s ease-in-out infinite;
}
.dc-bubble-tick {
    display: block;
    text-align: right;
    font-size: 0.6rem;
    color: #53bdeb;
    margin-top: 4px;
}
.dc-chat-badge {
    margin: 0 14px 12px;
    background: #25d366;
    color: #fff;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.74rem;
    font-weight: 600;
    text-align: center;
    animation: dcBadge 16s ease-in-out infinite;
}

/* ── @keyframes ──────────────────────────────────────────── */

/* Panel: slides in 0–1s, stays, fades out 14–16s */
@keyframes dcPanel {
    0% {
        opacity: 0;
        transform: translateY(-12px);
    }
    6.25% {
        opacity: 1;
        transform: translateY(0);
    }
    87.5% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-12px);
    }
}

/* Output box: fades in at 3s (18.75%), fades out at 14s (87.5%) */
@keyframes dcOutput {
    0%,
    18.75% {
        opacity: 0;
    }
    31.25% {
        opacity: 1;
    }
    87.5% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Copy button: pulses at 5–6s (31.25–37.5%) */
@keyframes dcCopy {
    0%,
    31.25% {
        background: #25d366;
        transform: scale(1);
    }
    34.375% {
        background: #1aad55;
        transform: scale(1.12);
    }
    37.5% {
        background: #25d366;
        transform: scale(1);
    }
    100% {
        background: #25d366;
        transform: scale(1);
    }
}

/* QR wrap: fades in at 6s (37.5%), fades out at 14s (87.5%) */
@keyframes dcQr {
    0%,
    37.5% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    87.5% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Scan line: sweeps 8–10s (50–62.5%) from translateY(0) to translateY(94px) */
@keyframes dcScan {
    0%,
    50% {
        transform: translateY(0);
        opacity: 0;
    }
    53% {
        opacity: 1;
    }
    62.5% {
        transform: translateY(94px);
        opacity: 1;
    }
    65% {
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 0;
    }
}

/* Chat window: slides up 10–12s (62.5–75%), fades out 14–16s */
@keyframes dcChat {
    0%,
    62.5% {
        opacity: 0;
        transform: translateY(20px);
    }
    75% {
        opacity: 1;
        transform: translateY(0);
    }
    87.5% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* Bubble: fades in at 12s (75%), fades out at 14s (87.5%) */
@keyframes dcBubble {
    0%,
    75% {
        opacity: 0;
        transform: translateX(12px);
    }
    81.25% {
        opacity: 1;
        transform: translateX(0);
    }
    87.5% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Badge: bounces in at 13s (81.25%), fades out at 14s (87.5%) */
@keyframes dcBadge {
    0%,
    81.25% {
        opacity: 0;
        transform: scale(0.6);
    }
    87.5% {
        opacity: 1;
        transform: scale(1);
    }
    93.75% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.6);
    }
}

/* ── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .dc-panel,
    .dc-output,
    .dc-copy-btn,
    .dc-qr-wrap,
    .dc-scan-line,
    .dc-chat,
    .dc-bubble,
    .dc-chat-badge {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 768px) {
    .dc-demo {
        max-width: 100%;
    }
    .dc-panel,
    .dc-chat {
        width: 100%;
    }
}

.text-center {
    text-align: center;
}

/* ============================================================
   32. INDUSTRIES - ALL INDUSTRIES PAGE (.ind-)
   ============================================================ */

/* ── Hero floating icons ─────────────────────────────────── */
.ind-float-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.ind-float-icon {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    opacity: 0.18;
    animation: indFloat 3s ease-in-out infinite alternate;
}

.ind-float-icon:nth-child(1) {
    top: 12%;
    left: 4%;
    background: var(--color-primary-light);
    color: var(--color-primary);
    animation-duration: 3.2s;
    animation-delay: 0s;
}
.ind-float-icon:nth-child(2) {
    top: 18%;
    right: 7%;
    background: #d1fae5;
    color: #059669;
    animation-duration: 4.1s;
    animation-delay: 0.5s;
}
.ind-float-icon:nth-child(3) {
    bottom: 28%;
    left: 3%;
    background: #fef3c7;
    color: #d97706;
    animation-duration: 3.7s;
    animation-delay: 1s;
}
.ind-float-icon:nth-child(4) {
    bottom: 20%;
    right: 5%;
    background: #dbeafe;
    color: #2563eb;
    animation-duration: 4.5s;
    animation-delay: 0.3s;
}
.ind-float-icon:nth-child(5) {
    top: 50%;
    left: 2%;
    background: #fce7f3;
    color: #db2777;
    animation-duration: 3.9s;
    animation-delay: 0.8s;
}
.ind-float-icon:nth-child(6) {
    top: 42%;
    right: 3%;
    background: var(--color-primary-light);
    color: var(--color-primary);
    animation-duration: 4.3s;
    animation-delay: 0.2s;
}

/* ── Industry cards grid ─────────────────────────────────── */
.ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.ind-card {
    background: #fff;
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.ind-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-purple);
}

.ind-card:hover .ind-card-icon {
    background: var(--color-primary);
    color: #fff;
}

.ind-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: var(--color-primary-light);
    color: var(--color-primary);
    transition:
        background 0.2s ease,
        color 0.2s ease;
    flex-shrink: 0;
}

.ind-card-name {
    font-size: 1rem;
    font-weight: 700;
    margin: 14px 0 8px;
    color: var(--color-text-primary);
}

.ind-card-desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
    flex: 1;
}

.ind-card-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    margin-top: auto;
}

.ind-card-link:hover {
    text-decoration: underline;
}

/* ── Trust / stats grid ──────────────────────────────────── */
.ind-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.ind-trust-block {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 32px;
    text-align: center;
}

.ind-trust-stat {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    display: block;
}

.ind-trust-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 10px 0 6px;
}

.ind-trust-desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ── Keyframes ───────────────────────────────────────────── */
@keyframes indFloat {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-10px);
    }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
    .ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ind-grid {
        grid-template-columns: 1fr;
    }
    .ind-trust-grid {
        grid-template-columns: 1fr;
    }
    .ind-trust-stat {
        font-size: 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ind-float-icon {
        animation: none;
    }
}

/* =============================================================================
   SECTION 33: INDUSTRIES — AGENCIES & SMB (.agn-)
   ============================================================================= */

/* ── Animated Demo (Section 3 — Solution) ─────────────────── */

.agn-demo {
    max-width: 380px;
    margin: 0 auto;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    background: #fff;
}

.agn-chat {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    overflow: hidden;
}

/* Chat header — WhatsApp green */
.agn-chat-hd {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #075e54;
    padding: 14px 16px;
}

.agn-chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

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

.agn-chat-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
}

.agn-chat-status {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
}

/* Chat body — warm beige like WhatsApp */
.agn-chat-bd {
    background: #ece5dd;
    padding: 16px 12px 20px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Bot indicator pill */
.agn-bot-chip {
    align-self: center;
    background: rgba(7, 94, 84, 0.12);
    color: #075e54;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 2px;
    opacity: 0;
}

/* Inbound message bubble (left — client) */
.agn-msg-in {
    align-self: flex-start;
    background: #fff;
    color: #1f2937;
    padding: 9px 13px;
    border-radius: 0 14px 14px 14px;
    font-size: 0.82rem;
    line-height: 1.5;
    max-width: 85%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    opacity: 0;
}

/* Outbound message bubble (right — bot / agent) */
.agn-msg-out {
    align-self: flex-end;
    background: #dcf8c6;
    color: #1f2937;
    padding: 9px 13px;
    border-radius: 14px 0 14px 14px;
    font-size: 0.82rem;
    line-height: 1.5;
    max-width: 88%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    opacity: 0;
}

/* Agent join notification card */
.agn-agent-join {
    align-self: center;
    background: rgba(94, 23, 235, 0.08);
    color: var(--color-primary);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
}

/* Agent's human message — slightly different shade */
.agn-agent-msg {
    background: #c8e6c9;
}

/* ── Animations (14-second loop) ──────────────────────────── */

@keyframes agnM1 {
    0%,
    7% {
        opacity: 0;
        transform: translateY(10px);
    }
    8%,
    85% {
        opacity: 1;
        transform: translateY(0);
    }
    93%,
    100% {
        opacity: 0;
    }
}

@keyframes agnM2 {
    0%,
    14% {
        opacity: 0;
        transform: translateY(10px);
    }
    16%,
    85% {
        opacity: 1;
        transform: translateY(0);
    }
    93%,
    100% {
        opacity: 0;
    }
}

@keyframes agnM3 {
    0%,
    24% {
        opacity: 0;
        transform: translateY(10px);
    }
    26%,
    85% {
        opacity: 1;
        transform: translateY(0);
    }
    93%,
    100% {
        opacity: 0;
    }
}

@keyframes agnM4 {
    0%,
    34% {
        opacity: 0;
        transform: translateY(10px);
    }
    36%,
    85% {
        opacity: 1;
        transform: translateY(0);
    }
    93%,
    100% {
        opacity: 0;
    }
}

@keyframes agnChip {
    0%,
    44% {
        opacity: 0;
        transform: scaleX(0.8);
    }
    46%,
    85% {
        opacity: 1;
        transform: scaleX(1);
    }
    93%,
    100% {
        opacity: 0;
    }
}

@keyframes agnM5 {
    0%,
    54% {
        opacity: 0;
        transform: translateY(10px);
    }
    56%,
    85% {
        opacity: 1;
        transform: translateY(0);
    }
    93%,
    100% {
        opacity: 0;
    }
}

/* Assign animations to elements */
.agn-bot-chip {
    animation: agnChip 14s ease infinite;
}
.agn-m1 {
    animation: agnM1 14s ease infinite;
}
.agn-m2 {
    animation: agnM2 14s ease infinite;
}
.agn-m3 {
    animation: agnM3 14s ease infinite;
}
.agn-m4 {
    animation: agnM4 14s ease infinite;
}
.agn-chip {
    animation: agnChip 14s ease infinite;
}
.agn-m5 {
    animation: agnM5 14s ease infinite;
}

/* ── Feature Cards Grid (Section 4) ──────────────────────── */

.agn-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.agn-feature-card {
    background: #fff;
    border: 1.5px solid #cccccc;
    border-radius: var(--radius-card);
    padding: 24px 20px;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.agn-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(94, 23, 235, 0.12);
    border-color: var(--color-primary);
}

.agn-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 14px;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

/* Color variants — resting state */
.agn-icon-purple {
    background: #ede5ff;
    color: #5e17eb;
}
.agn-icon-green {
    background: #d1fae5;
    color: #059669;
}
.agn-icon-yellow {
    background: #fef3c7;
    color: #d97706;
}
.agn-icon-blue {
    background: #dbeafe;
    color: #2563eb;
}
.agn-icon-pink {
    background: #fce7f3;
    color: #db2777;
}

/* Color variants — hover state (invert: dark bg, light icon) */
.agn-feature-card:hover .agn-icon-purple {
    background: #5e17eb;
    color: #fff;
}
.agn-feature-card:hover .agn-icon-green {
    background: #059669;
    color: #fff;
}
.agn-feature-card:hover .agn-icon-yellow {
    background: #d97706;
    color: #fff;
}
.agn-feature-card:hover .agn-icon-blue {
    background: #2563eb;
    color: #fff;
}
.agn-feature-card:hover .agn-icon-pink {
    background: #db2777;
    color: #fff;
}

.agn-feature-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 8px;
}

.agn-feature-card p {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ── Problem card hover (Section 2) ──────────────────────── */

.feat-problem-card {
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.feat-problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(94, 23, 235, 0.12);
}

/* ── Use case tile hover (Section 5) ─────────────────────── */

.feat-usecase-tile {
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.feat-usecase-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(94, 23, 235, 0.1);
}

/* ── Why WhatsApp section (Section 7) ────────────────────── */

.agn-why {
    background: var(--gradient-hero);
    padding: 80px 0;
}

.agn-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.agn-why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 28px 24px;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.agn-why-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(94, 23, 235, 0.11);
    border-color: var(--color-primary);
}

.agn-why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-primary);
    flex-shrink: 0;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.agn-why-item:hover .agn-why-icon {
    background: var(--color-primary);
    color: #fff;
}

.agn-why-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 8px;
}

.agn-why-text p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ── prefers-reduced-motion override ─────────────────────── */

@media (prefers-reduced-motion: reduce) {
    .agn-bot-chip,
    .agn-m1,
    .agn-m2,
    .agn-m3,
    .agn-m4,
    .agn-chip,
    .agn-m5 {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1024px) {
    .agn-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .agn-demo {
        max-width: 100%;
    }

    .agn-why-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .agn-why {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .agn-feature-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================================================
   SECTION 34: INDUSTRIES — AUTOMOTIVE (.aut-)
   ============================================================================= */

/* ── Animated Demo (Section 3 — Solution) ─────────────────── */

.aut-demo {
    max-width: 380px;
    margin: 0 auto;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    background: #fff;
}

.aut-chat {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    overflow: hidden;
}

/* Chat header — WhatsApp green */
.aut-chat-hd {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #075e54;
    padding: 14px 16px;
}

.aut-chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

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

.aut-chat-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
}

.aut-chat-status {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
}

/* Chat body — warm beige like WhatsApp */
.aut-chat-bd {
    background: #ece5dd;
    padding: 16px 12px 20px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Bot indicator pill */
.aut-bot-chip {
    align-self: center;
    background: rgba(7, 94, 84, 0.12);
    color: #075e54;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 2px;
    opacity: 0;
}

/* Inbound message bubble (left — customer) */
.aut-msg-in {
    align-self: flex-start;
    background: #fff;
    color: #1f2937;
    padding: 9px 13px;
    border-radius: 0 14px 14px 14px;
    font-size: 0.82rem;
    line-height: 1.5;
    max-width: 85%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    opacity: 0;
}

/* Outbound message bubble (right — bot / agent) */
.aut-msg-out {
    align-self: flex-end;
    background: #dcf8c6;
    color: #1f2937;
    padding: 9px 13px;
    border-radius: 14px 0 14px 14px;
    font-size: 0.82rem;
    line-height: 1.5;
    max-width: 88%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    opacity: 0;
}

/* Booking confirmed chip */
.aut-confirm-chip {
    align-self: center;
    background: rgba(94, 23, 235, 0.08);
    color: var(--color-primary);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
}

/* Agent's human message — slightly different shade */
.aut-agent-msg {
    background: #c8e6c9;
}

/* ── Animations (14-second loop) ──────────────────────────── */

@keyframes autM1 {
    0%,
    7% {
        opacity: 0;
        transform: translateY(10px);
    }
    8%,
    85% {
        opacity: 1;
        transform: translateY(0);
    }
    93%,
    100% {
        opacity: 0;
    }
}

@keyframes autM2 {
    0%,
    14% {
        opacity: 0;
        transform: translateY(10px);
    }
    16%,
    85% {
        opacity: 1;
        transform: translateY(0);
    }
    93%,
    100% {
        opacity: 0;
    }
}

@keyframes autM3 {
    0%,
    24% {
        opacity: 0;
        transform: translateY(10px);
    }
    26%,
    85% {
        opacity: 1;
        transform: translateY(0);
    }
    93%,
    100% {
        opacity: 0;
    }
}

@keyframes autM4 {
    0%,
    34% {
        opacity: 0;
        transform: translateY(10px);
    }
    36%,
    85% {
        opacity: 1;
        transform: translateY(0);
    }
    93%,
    100% {
        opacity: 0;
    }
}

@keyframes autChip {
    0%,
    44% {
        opacity: 0;
        transform: scaleX(0.8);
    }
    46%,
    85% {
        opacity: 1;
        transform: scaleX(1);
    }
    93%,
    100% {
        opacity: 0;
    }
}

@keyframes autM5 {
    0%,
    54% {
        opacity: 0;
        transform: translateY(10px);
    }
    56%,
    85% {
        opacity: 1;
        transform: translateY(0);
    }
    93%,
    100% {
        opacity: 0;
    }
}

/* Assign animations to elements */
.aut-bot-chip {
    animation: autChip 14s ease infinite;
}
.aut-m1 {
    animation: autM1 14s ease infinite;
}
.aut-m2 {
    animation: autM2 14s ease infinite;
}
.aut-m3 {
    animation: autM3 14s ease infinite;
}
.aut-m4 {
    animation: autM4 14s ease infinite;
}
.aut-chip {
    animation: autChip 14s ease infinite;
}
.aut-m5 {
    animation: autM5 14s ease infinite;
}

/* ── Why WhatsApp section (Section 7) ────────────────────── */

.aut-why {
    background: var(--gradient-hero);
    padding: 80px 0;
}

.aut-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.aut-why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 28px 24px;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.aut-why-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(94, 23, 235, 0.11);
    border-color: var(--color-primary);
}

.aut-why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-primary);
    flex-shrink: 0;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.aut-why-item:hover .aut-why-icon {
    background: var(--color-primary);
    color: #fff;
}

.aut-why-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 8px;
}

.aut-why-text p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ── prefers-reduced-motion override ─────────────────────── */

@media (prefers-reduced-motion: reduce) {
    .aut-bot-chip,
    .aut-m1,
    .aut-m2,
    .aut-m3,
    .aut-m4,
    .aut-chip,
    .aut-m5 {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1024px) {
    .aut-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .aut-demo {
        max-width: 100%;
    }

    .aut-why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .aut-why {
        padding: 60px 0;
    }
}

/* ============================================================
   SECTION 35: INDUSTRIES — B2B & MANUFACTURING (.b2b-)
   ============================================================ */

/* ── Demo container ─────────────────────────────────────────── */

.b2b-demo {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ── Chat shell ─────────────────────────────────────────────── */

.b2b-chat {
    background: #f0f0f0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.875rem;
}

/* ── Chat header ─────────────────────────────────────────────── */

.b2b-chat-hd {
    background: #075e54;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.b2b-chat-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

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

.b2b-chat-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
}

.b2b-chat-status {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
}

/* ── Chat body ─────────────────────────────────────────────── */

.b2b-chat-bd {
    padding: 16px 12px;
    background: #ece5dd;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

/* ── Bot chip (centre label) ─────────────────────────────────── */

.b2b-bot-chip {
    align-self: center;
    background: #fff;
    border-radius: 12px;
    padding: 5px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #5e17eb;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    opacity: 0;
}

/* ── Inbound message (left bubble) ─────────────────────────── */

.b2b-msg-in {
    align-self: flex-start;
    background: #fff;
    border-radius: 0 12px 12px 12px;
    padding: 9px 14px;
    max-width: 80%;
    color: #111;
    font-size: 0.82rem;
    line-height: 1.5;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    opacity: 0;
}

/* ── Outbound message (right bubble) ────────────────────────── */

.b2b-msg-out {
    align-self: flex-end;
    background: #dcf8c6;
    border-radius: 12px 0 12px 12px;
    padding: 9px 14px;
    max-width: 80%;
    color: #111;
    font-size: 0.82rem;
    line-height: 1.5;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    opacity: 0;
}

/* ── Enquiry chip (centre system note) ─────────────────────── */

.b2b-enquiry-chip {
    align-self: center;
    background: #fff3cd;
    border: 1px solid #f5c842;
    border-radius: 12px;
    padding: 5px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #856404;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    opacity: 0;
}

/* ── Agent message accent ───────────────────────────────────── */

.b2b-agent-msg {
    border-left: 3px solid #5e17eb;
    background: #ede5ff;
}

/* ── Keyframe animations (14s loop) ─────────────────────────── */

@keyframes b2bM1 {
    0%,
    7% {
        opacity: 0;
        transform: translateY(10px);
    }
    8%,
    85% {
        opacity: 1;
        transform: translateY(0);
    }
    93%,
    100% {
        opacity: 0;
    }
}

@keyframes b2bM2 {
    0%,
    14% {
        opacity: 0;
        transform: translateY(10px);
    }
    16%,
    85% {
        opacity: 1;
        transform: translateY(0);
    }
    93%,
    100% {
        opacity: 0;
    }
}

@keyframes b2bM3 {
    0%,
    24% {
        opacity: 0;
        transform: translateY(10px);
    }
    26%,
    85% {
        opacity: 1;
        transform: translateY(0);
    }
    93%,
    100% {
        opacity: 0;
    }
}

@keyframes b2bM4 {
    0%,
    34% {
        opacity: 0;
        transform: translateY(10px);
    }
    36%,
    85% {
        opacity: 1;
        transform: translateY(0);
    }
    93%,
    100% {
        opacity: 0;
    }
}

@keyframes b2bChip {
    0%,
    44% {
        opacity: 0;
        transform: scaleX(0.8);
    }
    46%,
    85% {
        opacity: 1;
        transform: scaleX(1);
    }
    93%,
    100% {
        opacity: 0;
    }
}

@keyframes b2bM5 {
    0%,
    54% {
        opacity: 0;
        transform: translateY(10px);
    }
    56%,
    85% {
        opacity: 1;
        transform: translateY(0);
    }
    93%,
    100% {
        opacity: 0;
    }
}

/* ── Apply animations ─────────────────────────────────────── */

.b2b-bot-chip {
    animation: b2bChip 14s ease infinite;
}
.b2b-m1 {
    animation: b2bM1 14s ease infinite;
}
.b2b-m2 {
    animation: b2bM2 14s ease infinite;
}
.b2b-m3 {
    animation: b2bM3 14s ease infinite;
}
.b2b-m4 {
    animation: b2bM4 14s ease infinite;
}
.b2b-chip {
    animation: b2bChip 14s ease infinite;
}
.b2b-m5 {
    animation: b2bM5 14s ease infinite;
}

/* ── Why WhatsApp section ─────────────────────────────────── */

.b2b-why {
    background: var(--gradient-hero);
    padding: 100px 0;
}

.b2b-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.b2b-why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: 16px;
    padding: 24px;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
    cursor: default;
}

.b2b-why-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(94, 23, 235, 0.11);
    border-color: var(--color-primary);
}

.b2b-why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.b2b-why-item:hover .b2b-why-icon {
    background: var(--color-primary);
    color: #fff;
}

.b2b-why-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 8px;
}

.b2b-why-text p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ── prefers-reduced-motion override ─────────────────────── */

@media (prefers-reduced-motion: reduce) {
    .b2b-bot-chip,
    .b2b-m1,
    .b2b-m2,
    .b2b-m3,
    .b2b-m4,
    .b2b-chip,
    .b2b-m5 {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1024px) {
    .b2b-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .b2b-demo {
        max-width: 100%;
    }

    .b2b-why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .b2b-why {
        padding: 60px 0;
    }
}

/* ============================================================
   SECTION 36: INDUSTRIES — BANKING & FINANCIAL SERVICES (.bnk-)
   ============================================================ */

/* ── Demo container ─────────────────────────────────────────── */

.bnk-demo {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

/* ── Chat shell ─────────────────────────────────────────────── */

.bnk-chat {
    background: #f0f0f0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.875rem;
}

/* ── Chat header — WhatsApp green ───────────────────────────── */

.bnk-chat-hd {
    background: #075e54;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bnk-chat-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

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

.bnk-chat-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    letter-spacing: 0.01em;
}

.bnk-chat-status {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
}

/* ── Chat body ─────────────────────────────────────────────── */

.bnk-chat-bd {
    padding: 16px 12px;
    background: #ece5dd;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

/* ── Bot chip ───────────────────────────────────────────────── */

.bnk-bot-chip {
    align-self: center;
    background: #fff;
    border-radius: 12px;
    padding: 5px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #075e54;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    opacity: 0;
}

/* ── Inbound bubble (left — customer) ───────────────────────── */

.bnk-msg-in {
    align-self: flex-start;
    background: #fff;
    border-radius: 0 12px 12px 12px;
    padding: 9px 14px;
    max-width: 82%;
    color: #111;
    font-size: 0.82rem;
    line-height: 1.5;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    opacity: 0;
}

/* ── Outbound bubble (right — bot / agent) ──────────────────── */

.bnk-msg-out {
    align-self: flex-end;
    background: #dcf8c6;
    border-radius: 12px 0 12px 12px;
    padding: 9px 14px;
    max-width: 82%;
    color: #111;
    font-size: 0.82rem;
    line-height: 1.5;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    opacity: 0;
}

/* ── Lead forwarded chip (centre system note) ───────────────── */

.bnk-lead-chip {
    align-self: center;
    background: #dbeafe;
    border: 1px solid #93c5fd;
    border-radius: 12px;
    padding: 5px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #1d4ed8;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
    opacity: 0;
}

/* ── Agent message accent ───────────────────────────────────── */

.bnk-agent-msg {
    border-left: 3px solid var(--color-primary);
    background: #dce9f9;
}

/* ── Keyframe animations (14s loop) ─────────────────────────── */

@keyframes bnkM1 {
    0%,
    7% {
        opacity: 0;
        transform: translateY(10px);
    }
    8%,
    85% {
        opacity: 1;
        transform: translateY(0);
    }
    93%,
    100% {
        opacity: 0;
    }
}

@keyframes bnkM2 {
    0%,
    14% {
        opacity: 0;
        transform: translateY(10px);
    }
    16%,
    85% {
        opacity: 1;
        transform: translateY(0);
    }
    93%,
    100% {
        opacity: 0;
    }
}

@keyframes bnkM3 {
    0%,
    24% {
        opacity: 0;
        transform: translateY(10px);
    }
    26%,
    85% {
        opacity: 1;
        transform: translateY(0);
    }
    93%,
    100% {
        opacity: 0;
    }
}

@keyframes bnkM4 {
    0%,
    34% {
        opacity: 0;
        transform: translateY(10px);
    }
    36%,
    85% {
        opacity: 1;
        transform: translateY(0);
    }
    93%,
    100% {
        opacity: 0;
    }
}

@keyframes bnkChip {
    0%,
    44% {
        opacity: 0;
        transform: scaleX(0.8);
    }
    46%,
    85% {
        opacity: 1;
        transform: scaleX(1);
    }
    93%,
    100% {
        opacity: 0;
    }
}

@keyframes bnkM5 {
    0%,
    54% {
        opacity: 0;
        transform: translateY(10px);
    }
    56%,
    85% {
        opacity: 1;
        transform: translateY(0);
    }
    93%,
    100% {
        opacity: 0;
    }
}

/* ── Apply animations ─────────────────────────────────────── */

.bnk-bot-chip {
    animation: bnkChip 14s ease infinite;
}
.bnk-m1 {
    animation: bnkM1 14s ease infinite;
}
.bnk-m2 {
    animation: bnkM2 14s ease infinite;
}
.bnk-m3 {
    animation: bnkM3 14s ease infinite;
}
.bnk-m4 {
    animation: bnkM4 14s ease infinite;
}
.bnk-chip {
    animation: bnkChip 14s ease infinite;
}
.bnk-m5 {
    animation: bnkM5 14s ease infinite;
}

/* ── Why WhatsApp section ─────────────────────────────────────── */

.bnk-why {
    background: var(--gradient-hero);
    padding: 100px 0;
}

.bnk-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

/* ── Why item card ─────────────────────────────────────────── */

.bnk-why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: 16px;
    padding: 28px 24px;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
    cursor: default;
}

.bnk-why-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(94, 23, 235, 0.11);
    border-color: var(--color-primary);
}

/* ── Why icon ──────────────────────────────────────────────── */

.bnk-why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.bnk-why-item:hover .bnk-why-icon {
    background: var(--color-primary);
    color: #fff;
}

/* ── Why text ──────────────────────────────────────────────── */

.bnk-why-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 8px;
}

.bnk-why-text p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ── Benefit card hover ────────────────────────────────────── */

.feat-benefit-card {
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.feat-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(94, 23, 235, 0.12);
}

/* ── prefers-reduced-motion override ─────────────────────── */

@media (prefers-reduced-motion: reduce) {
    .bnk-bot-chip,
    .bnk-m1,
    .bnk-m2,
    .bnk-m3,
    .bnk-m4,
    .bnk-chip,
    .bnk-m5 {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1024px) {
    .bnk-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bnk-demo {
        max-width: 100%;
    }

    .bnk-why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bnk-why {
        padding: 60px 0;
    }
}

/* ============================================================
   SECTION 37: INDUSTRIES — ECOMMERCE & ONLINE STORES (.ecom-)
   ============================================================ */

/* ── Demo container ─────────────────────────────────────────── */

.ecom-demo {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

/* ── Chat shell ─────────────────────────────────────────────── */

.ecom-chat {
    background: #f0f0f0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.875rem;
}

/* ── Chat header — WhatsApp green ───────────────────────────── */

.ecom-chat-hd {
    background: #075e54;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ecom-chat-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

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

.ecom-chat-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    letter-spacing: 0.01em;
}

.ecom-chat-status {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ── Chat body ─────────────────────────────────────────────── */

.ecom-chat-bd {
    padding: 16px 12px;
    background: #ece5dd;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

/* ── Bot chip ───────────────────────────────────────────────── */

.ecom-bot-chip {
    align-self: center;
    background: #fff;
    border-radius: 12px;
    padding: 5px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #075e54;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    opacity: 0;
}

/* ── Inbound bubble (left — customer) ───────────────────────── */

.ecom-msg-in {
    align-self: flex-start;
    background: #fff;
    border-radius: 0 12px 12px 12px;
    padding: 9px 14px;
    max-width: 82%;
    color: #111;
    font-size: 0.82rem;
    line-height: 1.5;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    opacity: 0;
}

/* ── Outbound bubble (right — bot) ─────────────────────────── */

.ecom-msg-out {
    align-self: flex-end;
    background: #dcf8c6;
    border-radius: 12px 0 12px 12px;
    padding: 9px 14px;
    max-width: 82%;
    color: #111;
    font-size: 0.82rem;
    line-height: 1.5;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    opacity: 0;
}

/* ── Order confirmed chip (centre system note) ──────────────── */

.ecom-confirm-chip {
    align-self: center;
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    border-radius: 12px;
    padding: 5px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #065f46;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
    opacity: 0;
}

/* ── Keyframe animations (16s loop) ─────────────────────────── */

@keyframes ecomChip {
    0%,
    5% {
        opacity: 0;
        transform: scaleX(0.8);
    }
    6%,
    82% {
        opacity: 1;
        transform: scaleX(1);
    }
    90%,
    100% {
        opacity: 0;
    }
}

@keyframes ecomM1 {
    0%,
    9% {
        opacity: 0;
        transform: translateY(10px);
    }
    10%,
    82% {
        opacity: 1;
        transform: translateY(0);
    }
    90%,
    100% {
        opacity: 0;
    }
}

@keyframes ecomM2 {
    0%,
    21% {
        opacity: 0;
        transform: translateY(10px);
    }
    22%,
    82% {
        opacity: 1;
        transform: translateY(0);
    }
    90%,
    100% {
        opacity: 0;
    }
}

@keyframes ecomM3 {
    0%,
    33% {
        opacity: 0;
        transform: translateY(10px);
    }
    34%,
    82% {
        opacity: 1;
        transform: translateY(0);
    }
    90%,
    100% {
        opacity: 0;
    }
}

@keyframes ecomConfirm {
    0%,
    47% {
        opacity: 0;
        transform: scaleX(0.8);
    }
    48%,
    82% {
        opacity: 1;
        transform: scaleX(1);
    }
    90%,
    100% {
        opacity: 0;
    }
}

@keyframes ecomM5 {
    0%,
    55% {
        opacity: 0;
        transform: translateY(10px);
    }
    56%,
    82% {
        opacity: 1;
        transform: translateY(0);
    }
    90%,
    100% {
        opacity: 0;
    }
}

/* ── Apply animations ─────────────────────────────────────── */

.ecom-bot-chip {
    animation: ecomChip 16s ease infinite;
}
.ecom-m1 {
    animation: ecomM1 16s ease infinite;
}
.ecom-m2 {
    animation: ecomM2 16s ease infinite;
}
.ecom-m3 {
    animation: ecomM3 16s ease infinite;
}
.ecom-chip {
    animation: ecomConfirm 16s ease infinite;
}
.ecom-m5 {
    animation: ecomM5 16s ease infinite;
}

/* ── Why WhatsApp section ─────────────────────────────────────── */

.ecom-why {
    padding: 90px 0;
    background: var(--gradient-hero);
}

.ecom-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.ecom-why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: 16px;
    padding: 24px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.ecom-why-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 32px rgba(94, 23, 235, 0.11);
    transform: translateY(-4px);
}

.ecom-why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.ecom-why-item:hover .ecom-why-icon {
    background: var(--color-primary);
    color: #fff;
}

/* ── Why text ──────────────────────────────────────────────── */

.ecom-why-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 8px;
}

.ecom-why-text p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ── prefers-reduced-motion override ─────────────────────── */

@media (prefers-reduced-motion: reduce) {
    .ecom-bot-chip,
    .ecom-m1,
    .ecom-m2,
    .ecom-m3,
    .ecom-chip,
    .ecom-m5 {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1024px) {
    .ecom-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ecom-demo {
        max-width: 100%;
    }

    .ecom-why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ecom-why {
        padding: 60px 0;
    }
}

/* =============================================================================
   29. EDUCATION & COACHING INDUSTRY PAGE (.edu-)
   ============================================================================= */

/* ── Demo wrapper ────────────────────────────────────────────── */

.edu-demo {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

/* ── Chat shell ─────────────────────────────────────────────── */

.edu-chat {
    background: #f0f0f0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.875rem;
}

/* ── Chat header — WhatsApp green ───────────────────────────── */

.edu-chat-hd {
    background: #075e54;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.edu-chat-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

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

.edu-chat-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    letter-spacing: 0.01em;
}

.edu-chat-status {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ── Chat body ─────────────────────────────────────────────── */

.edu-chat-bd {
    padding: 16px 12px;
    background: #ece5dd;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

/* ── Bot chip ───────────────────────────────────────────────── */

.edu-bot-chip {
    align-self: center;
    background: #fff;
    border-radius: 12px;
    padding: 5px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #075e54;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    opacity: 0;
}

/* ── Inbound bubble (left — student) ───────────────────────── */

.edu-msg-in {
    align-self: flex-start;
    background: #fff;
    border-radius: 0 12px 12px 12px;
    padding: 9px 14px;
    max-width: 82%;
    color: #111;
    font-size: 0.82rem;
    line-height: 1.5;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    opacity: 0;
}

/* ── Outbound bubble (right — bot/agent) ────────────────────── */

.edu-msg-out {
    align-self: flex-end;
    background: #dcf8c6;
    border-radius: 12px 0 12px 12px;
    padding: 9px 14px;
    max-width: 82%;
    color: #111;
    font-size: 0.82rem;
    line-height: 1.5;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    opacity: 0;
}

/* ── Agent join chip (centre system note) ───────────────────── */

.edu-agent-join {
    align-self: center;
    background: rgba(94, 23, 235, 0.08);
    color: var(--color-primary);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
}

/* ── Agent message — slightly different shade ───────────────── */

.edu-agent-msg {
    background: #c8e6c9;
    border-left: 3px solid var(--color-primary);
}

/* ── Keyframe animations (16s loop) ─────────────────────────── */

@keyframes eduBotChip {
    0%,
    5% {
        opacity: 0;
        transform: scaleX(0.8);
    }
    6%,
    83% {
        opacity: 1;
        transform: scaleX(1);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes eduM1 {
    0%,
    10% {
        opacity: 0;
        transform: translateY(10px);
    }
    11%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes eduM2 {
    0%,
    22% {
        opacity: 0;
        transform: translateY(10px);
    }
    23%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes eduM3 {
    0%,
    34% {
        opacity: 0;
        transform: translateY(10px);
    }
    35%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes eduM4 {
    0%,
    45% {
        opacity: 0;
        transform: translateY(10px);
    }
    46%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes eduChip {
    0%,
    54% {
        opacity: 0;
        transform: scaleX(0.8);
    }
    55%,
    83% {
        opacity: 1;
        transform: scaleX(1);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes eduM5 {
    0%,
    62% {
        opacity: 0;
        transform: translateY(10px);
    }
    63%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
    }
}

/* ── Apply animations ─────────────────────────────────────── */

.edu-bot-chip {
    animation: eduBotChip 16s ease infinite;
}
.edu-m1 {
    animation: eduM1 16s ease infinite;
}
.edu-m2 {
    animation: eduM2 16s ease infinite;
}
.edu-m3 {
    animation: eduM3 16s ease infinite;
}
.edu-m4 {
    animation: eduM4 16s ease infinite;
}
.edu-chip {
    animation: eduChip 16s ease infinite;
}
.edu-m5 {
    animation: eduM5 16s ease infinite;
}

/* ── Why WhatsApp section ─────────────────────────────────────── */

.edu-why {
    padding: 90px 0;
    background: var(--gradient-hero);
}

.edu-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.edu-why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: 16px;
    padding: 24px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.edu-why-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 32px rgba(94, 23, 235, 0.11);
    transform: translateY(-4px);
}

.edu-why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.edu-why-item:hover .edu-why-icon {
    background: var(--color-primary);
    color: #fff;
}

/* ── Why text ──────────────────────────────────────────────── */

.edu-why-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 8px;
}

.edu-why-text p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ── prefers-reduced-motion override ─────────────────────── */

@media (prefers-reduced-motion: reduce) {
    .edu-bot-chip,
    .edu-m1,
    .edu-m2,
    .edu-m3,
    .edu-m4,
    .edu-chip,
    .edu-m5 {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1024px) {
    .edu-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .edu-demo {
        max-width: 100%;
    }

    .edu-why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .edu-why {
        padding: 60px 0;
    }
}

/* =============================================================================
   38. EVENTS & EXHIBITIONS INDUSTRY PAGE (.evt-)
   ============================================================================= */

/* ── Demo wrapper ────────────────────────────────────────────── */

.evt-demo {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

/* ── Chat shell ─────────────────────────────────────────────── */

.evt-chat {
    background: #f0f0f0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.875rem;
}

/* ── Chat header — WhatsApp green ───────────────────────────── */

.evt-chat-hd {
    background: #075e54;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.evt-chat-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

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

.evt-chat-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    letter-spacing: 0.01em;
}

.evt-chat-status {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ── Chat body ─────────────────────────────────────────────── */

.evt-chat-bd {
    padding: 16px 12px;
    background: #ece5dd;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

/* ── Bot chip ───────────────────────────────────────────────── */

.evt-bot-chip {
    align-self: center;
    background: #fff;
    border-radius: 12px;
    padding: 5px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #075e54;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    opacity: 0;
}

/* ── Inbound bubble (left — attendee) ───────────────────────── */

.evt-msg-in {
    align-self: flex-start;
    background: #fff;
    border-radius: 0 12px 12px 12px;
    padding: 9px 14px;
    max-width: 82%;
    color: #111;
    font-size: 0.82rem;
    line-height: 1.5;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    opacity: 0;
}

/* ── Outbound bubble (right — bot/agent) ────────────────────── */

.evt-msg-out {
    align-self: flex-end;
    background: #dcf8c6;
    border-radius: 12px 0 12px 12px;
    padding: 9px 14px;
    max-width: 82%;
    color: #111;
    font-size: 0.82rem;
    line-height: 1.5;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    opacity: 0;
}

/* ── Confirmation chip (centre system note) ─────────────────── */

.evt-chip {
    align-self: center;
    background: rgba(94, 23, 235, 0.08);
    color: var(--color-primary);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
}

/* ── Agent message — slightly different shade ───────────────── */

.evt-agent-msg {
    background: #c8e6c9;
    border-left: 3px solid var(--color-primary);
}

/* ── Keyframe animations (16s loop) ─────────────────────────── */

@keyframes evtBotChip {
    0%,
    4% {
        opacity: 0;
        transform: scaleX(0.8);
    }
    6%,
    83% {
        opacity: 1;
        transform: scaleX(1);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes evtM1 {
    0%,
    10% {
        opacity: 0;
        transform: translateY(10px);
    }
    12%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes evtM2 {
    0%,
    22% {
        opacity: 0;
        transform: translateY(10px);
    }
    24%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes evtM3 {
    0%,
    34% {
        opacity: 0;
        transform: translateY(10px);
    }
    36%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes evtM4 {
    0%,
    45% {
        opacity: 0;
        transform: translateY(10px);
    }
    47%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes evtChip {
    0%,
    54% {
        opacity: 0;
        transform: scaleX(0.8);
    }
    56%,
    83% {
        opacity: 1;
        transform: scaleX(1);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes evtM5 {
    0%,
    63% {
        opacity: 0;
        transform: translateY(10px);
    }
    65%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
    }
}

/* ── Apply animations ─────────────────────────────────────── */

.evt-bot-chip {
    animation: evtBotChip 16s ease infinite;
}
.evt-m1 {
    animation: evtM1 16s ease infinite;
}
.evt-m2 {
    animation: evtM2 16s ease infinite;
}
.evt-m3 {
    animation: evtM3 16s ease infinite;
}
.evt-m4 {
    animation: evtM4 16s ease infinite;
}
.evt-confirm {
    animation: evtChip 16s ease infinite;
}
.evt-m5 {
    animation: evtM5 16s ease infinite;
}

/* ── Why WhatsApp section ─────────────────────────────────────── */

.evt-why {
    padding: 90px 0;
    background: var(--gradient-hero);
}

.evt-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.evt-why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: 16px;
    padding: 24px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.evt-why-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 32px rgba(94, 23, 235, 0.11);
    transform: translateY(-4px);
}

.evt-why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.evt-why-item:hover .evt-why-icon {
    background: var(--color-primary);
    color: #fff;
}

/* ── Why text ──────────────────────────────────────────────── */

.evt-why-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 8px;
}

.evt-why-text p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ── prefers-reduced-motion override ─────────────────────── */

@media (prefers-reduced-motion: reduce) {
    .evt-bot-chip,
    .evt-m1,
    .evt-m2,
    .evt-m3,
    .evt-m4,
    .evt-confirm,
    .evt-m5 {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1024px) {
    .evt-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .evt-demo {
        max-width: 100%;
    }

    .evt-why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .evt-why {
        padding: 60px 0;
    }
}

/* =============================================================================
   39. HEALTHCARE & CLINICS INDUSTRY PAGE (.hc-)
   ============================================================================= */

/* ── Demo wrapper ────────────────────────────────────────────── */

.hc-demo {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

/* ── Chat shell ─────────────────────────────────────────────── */

.hc-chat {
    background: #f0f0f0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.875rem;
}

/* ── Chat header — WhatsApp green ───────────────────────────── */

.hc-chat-hd {
    background: #075e54;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hc-chat-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

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

.hc-chat-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    letter-spacing: 0.01em;
}

.hc-chat-status {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ── Chat body ─────────────────────────────────────────────── */

.hc-chat-bd {
    padding: 16px 12px;
    background: #ece5dd;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

/* ── Bot chip ───────────────────────────────────────────────── */

.hc-bot-chip {
    align-self: center;
    background: #fff;
    border-radius: 12px;
    padding: 5px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #075e54;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    opacity: 0;
}

/* ── Inbound bubble (left — patient) ────────────────────────── */

.hc-msg-in {
    align-self: flex-start;
    background: #fff;
    border-radius: 0 12px 12px 12px;
    padding: 9px 14px;
    max-width: 82%;
    color: #111;
    font-size: 0.82rem;
    line-height: 1.5;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    opacity: 0;
}

/* ── Outbound bubble (right — bot/agent) ────────────────────── */

.hc-msg-out {
    align-self: flex-end;
    background: #dcf8c6;
    border-radius: 12px 0 12px 12px;
    padding: 9px 14px;
    max-width: 82%;
    color: #111;
    font-size: 0.82rem;
    line-height: 1.5;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    opacity: 0;
}

/* ── Confirmation chip (centre system note) ─────────────────── */

.hc-chip {
    align-self: center;
    background: rgba(94, 23, 235, 0.08);
    color: var(--color-primary);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
}

/* ── Agent message — slightly different shade ───────────────── */

.hc-agent-msg {
    background: #c8e6c9;
    border-left: 3px solid var(--color-primary);
}

/* ── Keyframe animations (16s loop) ─────────────────────────── */

@keyframes hcBotChip {
    0%,
    4% {
        opacity: 0;
        transform: scaleX(0.8);
    }
    6%,
    83% {
        opacity: 1;
        transform: scaleX(1);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes hcM1 {
    0%,
    10% {
        opacity: 0;
        transform: translateY(10px);
    }
    12%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes hcM2 {
    0%,
    22% {
        opacity: 0;
        transform: translateY(10px);
    }
    24%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes hcM3 {
    0%,
    34% {
        opacity: 0;
        transform: translateY(10px);
    }
    36%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes hcM4 {
    0%,
    45% {
        opacity: 0;
        transform: translateY(10px);
    }
    47%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes hcChip {
    0%,
    54% {
        opacity: 0;
        transform: scaleX(0.8);
    }
    56%,
    83% {
        opacity: 1;
        transform: scaleX(1);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes hcM5 {
    0%,
    63% {
        opacity: 0;
        transform: translateY(10px);
    }
    65%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
    }
}

/* ── Apply animations ─────────────────────────────────────── */

.hc-bot-chip {
    animation: hcBotChip 16s ease infinite;
}
.hc-m1 {
    animation: hcM1 16s ease infinite;
}
.hc-m2 {
    animation: hcM2 16s ease infinite;
}
.hc-m3 {
    animation: hcM3 16s ease infinite;
}
.hc-m4 {
    animation: hcM4 16s ease infinite;
}
.hc-confirm {
    animation: hcChip 16s ease infinite;
}
.hc-m5 {
    animation: hcM5 16s ease infinite;
}

/* ── Why WhatsApp section ─────────────────────────────────────── */

.hc-why {
    padding: 90px 0;
    background: var(--gradient-hero);
}

.hc-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.hc-why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: 16px;
    padding: 24px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.hc-why-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 32px rgba(94, 23, 235, 0.11);
    transform: translateY(-4px);
}

.hc-why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.hc-why-item:hover .hc-why-icon {
    background: var(--color-primary);
    color: #fff;
}

/* ── Why text ──────────────────────────────────────────────── */

.hc-why-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 8px;
}

.hc-why-text p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ── prefers-reduced-motion override ─────────────────────── */

@media (prefers-reduced-motion: reduce) {
    .hc-bot-chip,
    .hc-m1,
    .hc-m2,
    .hc-m3,
    .hc-m4,
    .hc-confirm,
    .hc-m5 {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1024px) {
    .hc-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hc-demo {
        max-width: 100%;
    }

    .hc-why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hc-why {
        padding: 60px 0;
    }
}

/* =============================================================================
   40. INSURANCE INDUSTRY PAGE (.ins-)
   ============================================================================= */

/* ── Demo wrapper ────────────────────────────────────────────── */

.ins-demo {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

/* ── Chat shell ─────────────────────────────────────────────── */

.ins-chat {
    background: #f0f0f0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.875rem;
}

/* ── Chat header — WhatsApp green ───────────────────────────── */

.ins-chat-hd {
    background: #075e54;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ins-chat-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

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

.ins-chat-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    letter-spacing: 0.01em;
}

.ins-chat-status {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ── Chat body ─────────────────────────────────────────────── */

.ins-chat-bd {
    padding: 16px 12px;
    background: #ece5dd;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

/* ── Bot chip ───────────────────────────────────────────────── */

.ins-bot-chip {
    align-self: center;
    background: #fff;
    border-radius: 12px;
    padding: 5px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #075e54;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    opacity: 0;
}

/* ── Inbound bubble (left — client) ─────────────────────────── */

.ins-msg-in {
    align-self: flex-start;
    background: #fff;
    border-radius: 0 12px 12px 12px;
    padding: 9px 14px;
    max-width: 82%;
    color: #111;
    font-size: 0.82rem;
    line-height: 1.5;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    opacity: 0;
}

/* ── Outbound bubble (right — bot/agent) ────────────────────── */

.ins-msg-out {
    align-self: flex-end;
    background: #dcf8c6;
    border-radius: 12px 0 12px 12px;
    padding: 9px 14px;
    max-width: 82%;
    color: #111;
    font-size: 0.82rem;
    line-height: 1.5;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    opacity: 0;
}

/* ── Confirmation chip (centre system note) ─────────────────── */

.ins-chip {
    align-self: center;
    background: rgba(94, 23, 235, 0.08);
    color: var(--color-primary);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
}

/* ── Agent message — slightly different shade ───────────────── */

.ins-agent-msg {
    background: #c8e6c9;
    border-left: 3px solid var(--color-primary);
}

/* ── Keyframe animations (16s loop) ─────────────────────────── */

@keyframes insBotChip {
    0%,
    4% {
        opacity: 0;
        transform: scaleX(0.8);
    }
    6%,
    83% {
        opacity: 1;
        transform: scaleX(1);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes insM1 {
    0%,
    10% {
        opacity: 0;
        transform: translateY(10px);
    }
    12%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes insM2 {
    0%,
    22% {
        opacity: 0;
        transform: translateY(10px);
    }
    24%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes insM3 {
    0%,
    34% {
        opacity: 0;
        transform: translateY(10px);
    }
    36%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes insM4 {
    0%,
    45% {
        opacity: 0;
        transform: translateY(10px);
    }
    47%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes insChip {
    0%,
    54% {
        opacity: 0;
        transform: scaleX(0.8);
    }
    56%,
    83% {
        opacity: 1;
        transform: scaleX(1);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes insM5 {
    0%,
    63% {
        opacity: 0;
        transform: translateY(10px);
    }
    65%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
    }
}

/* ── Apply animations ─────────────────────────────────────── */

.ins-bot-chip {
    animation: insBotChip 16s ease infinite;
}
.ins-m1 {
    animation: insM1 16s ease infinite;
}
.ins-m2 {
    animation: insM2 16s ease infinite;
}
.ins-m3 {
    animation: insM3 16s ease infinite;
}
.ins-m4 {
    animation: insM4 16s ease infinite;
}
.ins-confirm {
    animation: insChip 16s ease infinite;
}
.ins-m5 {
    animation: insM5 16s ease infinite;
}

/* ── Why WhatsApp section ─────────────────────────────────────── */

.ins-why {
    padding: 90px 0;
    background: var(--gradient-hero);
}

.ins-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.ins-why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: 16px;
    padding: 24px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.ins-why-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 32px rgba(94, 23, 235, 0.11);
    transform: translateY(-4px);
}

.ins-why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.ins-why-item:hover .ins-why-icon {
    background: var(--color-primary);
    color: #fff;
}

/* ── Why text ──────────────────────────────────────────────── */

.ins-why-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 8px;
}

.ins-why-text p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ── prefers-reduced-motion override ─────────────────────── */

@media (prefers-reduced-motion: reduce) {
    .ins-bot-chip,
    .ins-m1,
    .ins-m2,
    .ins-m3,
    .ins-m4,
    .ins-confirm,
    .ins-m5 {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1024px) {
    .ins-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ins-demo {
        max-width: 100%;
    }

    .ins-why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ins-why {
        padding: 60px 0;
    }
}

/* =============================================================================
   41. LEGAL & GOVERNMENT INDUSTRY PAGE (.lg-)
   ============================================================================= */

/* ── Demo wrapper ────────────────────────────────────────────── */

.lg-demo {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

/* ── Chat shell ─────────────────────────────────────────────── */

.lg-chat {
    background: #f0f0f0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.875rem;
}

/* ── Chat header — WhatsApp green ───────────────────────────── */

.lg-chat-hd {
    background: #075e54;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.lg-chat-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

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

.lg-chat-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    letter-spacing: 0.01em;
}

.lg-chat-status {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ── Chat body ─────────────────────────────────────────────── */

.lg-chat-bd {
    padding: 16px 12px;
    background: #ece5dd;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

/* ── Bot chip ───────────────────────────────────────────────── */

.lg-bot-chip {
    align-self: center;
    background: #fff;
    border-radius: 12px;
    padding: 5px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #075e54;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    opacity: 0;
}

/* ── Inbound bubble (left — client/citizen) ─────────────────── */

.lg-msg-in {
    align-self: flex-start;
    background: #fff;
    border-radius: 0 12px 12px 12px;
    padding: 9px 14px;
    max-width: 82%;
    color: #111;
    font-size: 0.82rem;
    line-height: 1.5;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    opacity: 0;
}

/* ── Outbound bubble (right — bot/agent) ────────────────────── */

.lg-msg-out {
    align-self: flex-end;
    background: #dcf8c6;
    border-radius: 12px 0 12px 12px;
    padding: 9px 14px;
    max-width: 82%;
    color: #111;
    font-size: 0.82rem;
    line-height: 1.5;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    opacity: 0;
}

/* ── Confirmation chip (centre system note) ─────────────────── */

.lg-chip {
    align-self: center;
    background: rgba(94, 23, 235, 0.08);
    color: var(--color-primary);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
}

/* ── Agent message — slightly different shade ───────────────── */

.lg-agent-msg {
    background: #c8e6c9;
    border-left: 3px solid var(--color-primary);
}

/* ── Keyframe animations (16s loop) ─────────────────────────── */

@keyframes lgBotChip {
    0%,
    4% {
        opacity: 0;
        transform: scaleX(0.8);
    }
    6%,
    83% {
        opacity: 1;
        transform: scaleX(1);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes lgM1 {
    0%,
    10% {
        opacity: 0;
        transform: translateY(10px);
    }
    12%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes lgM2 {
    0%,
    22% {
        opacity: 0;
        transform: translateY(10px);
    }
    24%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes lgM3 {
    0%,
    34% {
        opacity: 0;
        transform: translateY(10px);
    }
    36%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes lgM4 {
    0%,
    45% {
        opacity: 0;
        transform: translateY(10px);
    }
    47%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes lgChip {
    0%,
    54% {
        opacity: 0;
        transform: scaleX(0.8);
    }
    56%,
    83% {
        opacity: 1;
        transform: scaleX(1);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes lgM5 {
    0%,
    63% {
        opacity: 0;
        transform: translateY(10px);
    }
    65%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
    }
}

/* ── Apply animations ─────────────────────────────────────── */

.lg-bot-chip {
    animation: lgBotChip 16s ease infinite;
}
.lg-m1 {
    animation: lgM1 16s ease infinite;
}
.lg-m2 {
    animation: lgM2 16s ease infinite;
}
.lg-m3 {
    animation: lgM3 16s ease infinite;
}
.lg-m4 {
    animation: lgM4 16s ease infinite;
}
.lg-confirm {
    animation: lgChip 16s ease infinite;
}
.lg-m5 {
    animation: lgM5 16s ease infinite;
}

/* ── Why WhatsApp section ─────────────────────────────────────── */

.lg-why {
    padding: 90px 0;
    background: var(--gradient-hero);
}

.lg-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.lg-why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: 16px;
    padding: 24px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.lg-why-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 32px rgba(94, 23, 235, 0.11);
    transform: translateY(-4px);
}

.lg-why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.lg-why-item:hover .lg-why-icon {
    background: var(--color-primary);
    color: #fff;
}

/* ── Why text ──────────────────────────────────────────────── */

.lg-why-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 8px;
}

.lg-why-text p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ── prefers-reduced-motion override ─────────────────────── */

@media (prefers-reduced-motion: reduce) {
    .lg-bot-chip,
    .lg-m1,
    .lg-m2,
    .lg-m3,
    .lg-m4,
    .lg-confirm,
    .lg-m5 {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1024px) {
    .lg-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .lg-demo {
        max-width: 100%;
    }

    .lg-why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .lg-why {
        padding: 60px 0;
    }
}

/* =============================================================================
   42. REAL ESTATE INDUSTRY PAGE (.re-)
   ============================================================================= */

/* ── Demo wrapper ────────────────────────────────────────────── */

.re-demo {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

/* ── Chat shell ─────────────────────────────────────────────── */

.re-chat {
    background: #f0f0f0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.875rem;
}

/* ── Chat header — WhatsApp green ───────────────────────────── */

.re-chat-hd {
    background: #075e54;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.re-chat-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

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

.re-chat-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    letter-spacing: 0.01em;
}

.re-chat-status {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ── Chat body ─────────────────────────────────────────────── */

.re-chat-bd {
    padding: 16px 12px;
    background: #ece5dd;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

/* ── Bot chip ───────────────────────────────────────────────── */

.re-bot-chip {
    align-self: center;
    background: #fff;
    border-radius: 12px;
    padding: 5px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #075e54;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    opacity: 0;
}

/* ── Inbound bubble (left — buyer) ──────────────────────────── */

.re-msg-in {
    align-self: flex-start;
    background: #fff;
    border-radius: 0 12px 12px 12px;
    padding: 9px 14px;
    max-width: 82%;
    color: #111;
    font-size: 0.82rem;
    line-height: 1.5;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    opacity: 0;
}

/* ── Outbound bubble (right — bot/agent) ────────────────────── */

.re-msg-out {
    align-self: flex-end;
    background: #dcf8c6;
    border-radius: 12px 0 12px 12px;
    padding: 9px 14px;
    max-width: 82%;
    color: #111;
    font-size: 0.82rem;
    line-height: 1.5;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    opacity: 0;
}

/* ── Confirmation chip (centre system note) ─────────────────── */

.re-chip {
    align-self: center;
    background: rgba(94, 23, 235, 0.08);
    color: var(--color-primary);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
}

/* ── Agent message — slightly different shade ───────────────── */

.re-agent-msg {
    background: #c8e6c9;
    border-left: 3px solid var(--color-primary);
}

/* ── Keyframe animations (16s loop) ─────────────────────────── */

@keyframes reBotChip {
    0%,
    4% {
        opacity: 0;
        transform: scaleX(0.8);
    }
    6%,
    83% {
        opacity: 1;
        transform: scaleX(1);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes reM1 {
    0%,
    10% {
        opacity: 0;
        transform: translateY(10px);
    }
    12%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes reM2 {
    0%,
    22% {
        opacity: 0;
        transform: translateY(10px);
    }
    24%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes reM3 {
    0%,
    34% {
        opacity: 0;
        transform: translateY(10px);
    }
    36%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes reM4 {
    0%,
    45% {
        opacity: 0;
        transform: translateY(10px);
    }
    47%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes reChip {
    0%,
    54% {
        opacity: 0;
        transform: scaleX(0.8);
    }
    56%,
    83% {
        opacity: 1;
        transform: scaleX(1);
    }
    91%,
    100% {
        opacity: 0;
    }
}

@keyframes reM5 {
    0%,
    63% {
        opacity: 0;
        transform: translateY(10px);
    }
    65%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
    }
}

/* ── Apply animations ─────────────────────────────────────── */

.re-bot-chip {
    animation: reBotChip 16s ease infinite;
}
.re-m1 {
    animation: reM1 16s ease infinite;
}
.re-m2 {
    animation: reM2 16s ease infinite;
}
.re-m3 {
    animation: reM3 16s ease infinite;
}
.re-m4 {
    animation: reM4 16s ease infinite;
}
.re-confirm {
    animation: reChip 16s ease infinite;
}
.re-m5 {
    animation: reM5 16s ease infinite;
}

/* ── Why WhatsApp section ─────────────────────────────────────── */

.re-why {
    padding: 90px 0;
    background: var(--gradient-hero);
}

.re-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.re-why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: 16px;
    padding: 24px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.re-why-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 32px rgba(94, 23, 235, 0.11);
    transform: translateY(-4px);
}

.re-why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.re-why-item:hover .re-why-icon {
    background: var(--color-primary);
    color: #fff;
}

/* ── Why text ──────────────────────────────────────────────── */

.re-why-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 8px;
}

.re-why-text p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ── prefers-reduced-motion override ─────────────────────── */

@media (prefers-reduced-motion: reduce) {
    .re-bot-chip,
    .re-m1,
    .re-m2,
    .re-m3,
    .re-m4,
    .re-confirm,
    .re-m5 {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1024px) {
    .re-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .re-demo {
        max-width: 100%;
    }

    .re-why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .re-why {
        padding: 60px 0;
    }
}

/* ============================================================
   43. RECRUITMENT & HR INDUSTRY PAGE (.rh-)
   ============================================================ */

/* --- Demo wrapper --- */
.rh-demo {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

/* --- Chat shell --- */
.rh-chat {
    background: #f0f0f0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.875rem;
}

/* --- Chat header --- */
.rh-chat-hd {
    background: #075e54;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rh-chat-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

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

.rh-chat-name {
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.2;
}

.rh-chat-status {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
}

/* --- Chat body --- */
.rh-chat-bd {
    padding: 16px 12px;
    background: #ece5dd;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* --- Animated elements (all hidden initially) --- */
.rh-bot-chip,
.rh-m1,
.rh-m2,
.rh-m3,
.rh-m4,
.rh-chip,
.rh-m5 {
    opacity: 0;
}

/* --- Bot chip --- */
.rh-bot-chip {
    align-self: center;
    background: #fff;
    border-radius: 12px;
    padding: 5px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #075e54;
    display: flex;
    align-items: center;
    gap: 6px;
    transform-origin: center;
}

/* --- Message bubbles --- */
.rh-msg-in,
.rh-msg-out,
.rh-agent-msg {
    padding: 8px 12px;
    max-width: 80%;
    line-height: 1.5;
    font-size: 0.82rem;
    position: relative;
}

.rh-msg-in {
    align-self: flex-start;
    background: #fff;
    border-radius: 0 12px 12px 12px;
    color: #1f2937;
    transform-origin: left center;
}

.rh-msg-out {
    align-self: flex-end;
    background: #dcf8c6;
    border-radius: 12px 0 12px 12px;
    color: #1f2937;
    transform-origin: right center;
}

/* --- Confirm chip --- */
.rh-chip {
    align-self: center;
    background: rgba(94, 23, 235, 0.08);
    color: var(--color-primary);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    transform-origin: center;
}

/* --- Agent message --- */
.rh-agent-msg {
    align-self: flex-start;
    background: #c8e6c9;
    border-radius: 0 12px 12px 12px;
    border-left: 3px solid var(--color-primary);
    color: #1f2937;
    transform-origin: left center;
}

/* ---- Keyframe animations (16s loop) ---- */
@keyframes rhBotChip {
    0%,
    4% {
        opacity: 0;
        transform: scaleX(0.8);
    }
    6%,
    83% {
        opacity: 1;
        transform: scaleX(1);
    }
    91%,
    100% {
        opacity: 0;
        transform: scaleX(0.8);
    }
}

@keyframes rhM1 {
    0%,
    10% {
        opacity: 0;
        transform: translateY(10px);
    }
    12%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

@keyframes rhM2 {
    0%,
    22% {
        opacity: 0;
        transform: translateY(10px);
    }
    24%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

@keyframes rhM3 {
    0%,
    34% {
        opacity: 0;
        transform: translateY(10px);
    }
    36%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

@keyframes rhM4 {
    0%,
    45% {
        opacity: 0;
        transform: translateY(10px);
    }
    47%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

@keyframes rhChip {
    0%,
    54% {
        opacity: 0;
        transform: scaleX(0.8);
    }
    56%,
    83% {
        opacity: 1;
        transform: scaleX(1);
    }
    91%,
    100% {
        opacity: 0;
        transform: scaleX(0.8);
    }
}

@keyframes rhM5 {
    0%,
    63% {
        opacity: 0;
        transform: translateY(10px);
    }
    65%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* --- Apply animations --- */
.rh-bot-chip {
    animation: rhBotChip 16s ease infinite;
}
.rh-m1 {
    animation: rhM1 16s ease infinite;
}
.rh-m2 {
    animation: rhM2 16s ease infinite;
}
.rh-m3 {
    animation: rhM3 16s ease infinite;
}
.rh-m4 {
    animation: rhM4 16s ease infinite;
}
.rh-confirm {
    animation: rhChip 16s ease infinite;
}
.rh-m5 {
    animation: rhM5 16s ease infinite;
}

/* --- Why WhatsApp section --- */
.rh-why {
    padding: 90px 0;
    background: var(--gradient-hero);
}

.rh-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.rh-why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: 16px;
    padding: 24px;
    transition:
        border-color 0.22s,
        box-shadow 0.22s,
        transform 0.22s;
}

.rh-why-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 32px rgba(94, 23, 235, 0.11);
    transform: translateY(-4px);
}

.rh-why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition:
        background 0.22s,
        color 0.22s;
}

.rh-why-item:hover .rh-why-icon {
    background: var(--color-primary);
    color: #fff;
}

.rh-why-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 8px;
    line-height: 1.35;
}

.rh-why-text p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* --- Accessibility --- */
@media (prefers-reduced-motion: reduce) {
    .rh-bot-chip,
    .rh-m1,
    .rh-m2,
    .rh-m3,
    .rh-m4,
    .rh-chip,
    .rh-m5 {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .rh-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .rh-demo {
        max-width: 100%;
    }

    .rh-why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .rh-why {
        padding: 60px 0;
    }
}

/* ============================================================
   44. RESTAURANTS & FOOD INDUSTRY PAGE (.rst-)
   ============================================================ */

/* --- Demo wrapper --- */
.rst-demo {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

/* --- Chat shell --- */
.rst-chat {
    background: #f0f0f0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.875rem;
}

/* --- Chat header --- */
.rst-chat-hd {
    background: #075e54;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rst-chat-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

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

.rst-chat-name {
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.2;
}

.rst-chat-status {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
}

/* --- Chat body --- */
.rst-chat-bd {
    padding: 16px 12px;
    background: #ece5dd;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* --- Animated elements (all hidden initially) --- */
.rst-bot-chip,
.rst-m1,
.rst-m2,
.rst-m3,
.rst-m4,
.rst-chip,
.rst-m5 {
    opacity: 0;
}

/* --- Bot chip --- */
.rst-bot-chip {
    align-self: center;
    background: #fff;
    border-radius: 12px;
    padding: 5px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #075e54;
    display: flex;
    align-items: center;
    gap: 6px;
    transform-origin: center;
}

/* --- Message bubbles --- */
.rst-msg-in,
.rst-msg-out,
.rst-agent-msg {
    padding: 8px 12px;
    max-width: 80%;
    line-height: 1.5;
    font-size: 0.82rem;
    position: relative;
}

.rst-msg-in {
    align-self: flex-start;
    background: #fff;
    border-radius: 0 12px 12px 12px;
    color: #1f2937;
    transform-origin: left center;
}

.rst-msg-out {
    align-self: flex-end;
    background: #dcf8c6;
    border-radius: 12px 0 12px 12px;
    color: #1f2937;
    transform-origin: right center;
}

/* --- Confirm chip --- */
.rst-chip {
    align-self: center;
    background: rgba(94, 23, 235, 0.08);
    color: var(--color-primary);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    transform-origin: center;
}

/* --- Agent message --- */
.rst-agent-msg {
    align-self: flex-start;
    background: #c8e6c9;
    border-radius: 0 12px 12px 12px;
    border-left: 3px solid var(--color-primary);
    color: #1f2937;
    transform-origin: left center;
}

/* ---- Keyframe animations (16s loop) ---- */
@keyframes rstBotChip {
    0%,
    4% {
        opacity: 0;
        transform: scaleX(0.8);
    }
    6%,
    83% {
        opacity: 1;
        transform: scaleX(1);
    }
    91%,
    100% {
        opacity: 0;
        transform: scaleX(0.8);
    }
}

@keyframes rstM1 {
    0%,
    10% {
        opacity: 0;
        transform: translateY(10px);
    }
    12%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

@keyframes rstM2 {
    0%,
    22% {
        opacity: 0;
        transform: translateY(10px);
    }
    24%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

@keyframes rstM3 {
    0%,
    34% {
        opacity: 0;
        transform: translateY(10px);
    }
    36%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

@keyframes rstM4 {
    0%,
    45% {
        opacity: 0;
        transform: translateY(10px);
    }
    47%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

@keyframes rstChip {
    0%,
    54% {
        opacity: 0;
        transform: scaleX(0.8);
    }
    56%,
    83% {
        opacity: 1;
        transform: scaleX(1);
    }
    91%,
    100% {
        opacity: 0;
        transform: scaleX(0.8);
    }
}

@keyframes rstM5 {
    0%,
    63% {
        opacity: 0;
        transform: translateY(10px);
    }
    65%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* --- Apply animations --- */
.rst-bot-chip {
    animation: rstBotChip 16s ease infinite;
}
.rst-m1 {
    animation: rstM1 16s ease infinite;
}
.rst-m2 {
    animation: rstM2 16s ease infinite;
}
.rst-m3 {
    animation: rstM3 16s ease infinite;
}
.rst-m4 {
    animation: rstM4 16s ease infinite;
}
.rst-confirm {
    animation: rstChip 16s ease infinite;
}
.rst-m5 {
    animation: rstM5 16s ease infinite;
}

/* --- Why WhatsApp section --- */
.rst-why {
    padding: 90px 0;
    background: var(--gradient-hero);
}

.rst-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.rst-why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: 16px;
    padding: 24px;
    transition:
        border-color 0.22s,
        box-shadow 0.22s,
        transform 0.22s;
}

.rst-why-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 32px rgba(94, 23, 235, 0.11);
    transform: translateY(-4px);
}

.rst-why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition:
        background 0.22s,
        color 0.22s;
}

.rst-why-item:hover .rst-why-icon {
    background: var(--color-primary);
    color: #fff;
}

.rst-why-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 8px;
    line-height: 1.35;
}

.rst-why-text p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* --- Accessibility --- */
@media (prefers-reduced-motion: reduce) {
    .rst-bot-chip,
    .rst-m1,
    .rst-m2,
    .rst-m3,
    .rst-m4,
    .rst-chip,
    .rst-m5 {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .rst-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .rst-demo {
        max-width: 100%;
    }

    .rst-why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .rst-why {
        padding: 60px 0;
    }
}

/* ============================================================
   45. RETAIL & SHOPPING INDUSTRY PAGE (.ret-)
   ============================================================ */

/* --- Demo wrapper --- */
.ret-demo {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

/* --- Chat shell --- */
.ret-chat {
    background: #f0f0f0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.875rem;
}

/* --- Chat header --- */
.ret-chat-hd {
    background: #075e54;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ret-chat-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

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

.ret-chat-name {
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.2;
}

.ret-chat-status {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
}

/* --- Chat body --- */
.ret-chat-bd {
    padding: 16px 12px;
    background: #ece5dd;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* --- Animated elements (all hidden initially) --- */
.ret-bot-chip,
.ret-m1,
.ret-m2,
.ret-m3,
.ret-m4,
.ret-chip,
.ret-m5 {
    opacity: 0;
}

/* --- Bot chip --- */
.ret-bot-chip {
    align-self: center;
    background: #fff;
    border-radius: 12px;
    padding: 5px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #075e54;
    display: flex;
    align-items: center;
    gap: 6px;
    transform-origin: center;
}

/* --- Message bubbles --- */
.ret-msg-in,
.ret-msg-out,
.ret-agent-msg {
    padding: 8px 12px;
    max-width: 80%;
    line-height: 1.5;
    font-size: 0.82rem;
    position: relative;
}

.ret-msg-in {
    align-self: flex-start;
    background: #fff;
    border-radius: 0 12px 12px 12px;
    color: #1f2937;
    transform-origin: left center;
}

.ret-msg-out {
    align-self: flex-end;
    background: #dcf8c6;
    border-radius: 12px 0 12px 12px;
    color: #1f2937;
    transform-origin: right center;
}

/* --- Confirm chip --- */
.ret-chip {
    align-self: center;
    background: rgba(94, 23, 235, 0.08);
    color: var(--color-primary);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    transform-origin: center;
}

/* --- Agent message --- */
.ret-agent-msg {
    align-self: flex-start;
    background: #c8e6c9;
    border-radius: 0 12px 12px 12px;
    border-left: 3px solid var(--color-primary);
    color: #1f2937;
    transform-origin: left center;
}

/* ---- Keyframe animations (16s loop) ---- */
@keyframes retBotChip {
    0%,
    4% {
        opacity: 0;
        transform: scaleX(0.8);
    }
    6%,
    83% {
        opacity: 1;
        transform: scaleX(1);
    }
    91%,
    100% {
        opacity: 0;
        transform: scaleX(0.8);
    }
}

@keyframes retM1 {
    0%,
    10% {
        opacity: 0;
        transform: translateY(10px);
    }
    12%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

@keyframes retM2 {
    0%,
    22% {
        opacity: 0;
        transform: translateY(10px);
    }
    24%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

@keyframes retM3 {
    0%,
    34% {
        opacity: 0;
        transform: translateY(10px);
    }
    36%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

@keyframes retM4 {
    0%,
    45% {
        opacity: 0;
        transform: translateY(10px);
    }
    47%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

@keyframes retChip {
    0%,
    54% {
        opacity: 0;
        transform: scaleX(0.8);
    }
    56%,
    83% {
        opacity: 1;
        transform: scaleX(1);
    }
    91%,
    100% {
        opacity: 0;
        transform: scaleX(0.8);
    }
}

@keyframes retM5 {
    0%,
    63% {
        opacity: 0;
        transform: translateY(10px);
    }
    65%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* --- Apply animations --- */
.ret-bot-chip {
    animation: retBotChip 16s ease infinite;
}
.ret-m1 {
    animation: retM1 16s ease infinite;
}
.ret-m2 {
    animation: retM2 16s ease infinite;
}
.ret-m3 {
    animation: retM3 16s ease infinite;
}
.ret-m4 {
    animation: retM4 16s ease infinite;
}
.ret-confirm {
    animation: retChip 16s ease infinite;
}
.ret-m5 {
    animation: retM5 16s ease infinite;
}

/* --- Why WhatsApp section --- */
.ret-why {
    padding: 90px 0;
    background: var(--gradient-hero);
}

.ret-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.ret-why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: 16px;
    padding: 24px;
    transition:
        border-color 0.22s,
        box-shadow 0.22s,
        transform 0.22s;
}

.ret-why-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 32px rgba(94, 23, 235, 0.11);
    transform: translateY(-4px);
}

.ret-why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition:
        background 0.22s,
        color 0.22s;
}

.ret-why-item:hover .ret-why-icon {
    background: var(--color-primary);
    color: #fff;
}

.ret-why-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 8px;
    line-height: 1.35;
}

.ret-why-text p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* --- Accessibility --- */
@media (prefers-reduced-motion: reduce) {
    .ret-bot-chip,
    .ret-m1,
    .ret-m2,
    .ret-m3,
    .ret-m4,
    .ret-chip,
    .ret-m5 {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .ret-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ret-demo {
        max-width: 100%;
    }

    .ret-why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ret-why {
        padding: 60px 0;
    }
}

/* ============================================================
   46. SALONS & WELLNESS INDUSTRY PAGE (.sal-)
   ============================================================ */

/* --- Demo wrapper --- */
.sal-demo {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

/* --- Chat shell --- */
.sal-chat {
    background: #f0f0f0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.875rem;
}

/* --- Chat header --- */
.sal-chat-hd {
    background: #075e54;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sal-chat-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

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

.sal-chat-name {
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.2;
}

.sal-chat-status {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
}

/* --- Chat body --- */
.sal-chat-bd {
    padding: 16px 12px;
    background: #ece5dd;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* --- Animated elements (all hidden initially) --- */
.sal-bot-chip,
.sal-m1,
.sal-m2,
.sal-m3,
.sal-m4,
.sal-chip,
.sal-m5 {
    opacity: 0;
}

/* --- Bot chip --- */
.sal-bot-chip {
    align-self: center;
    background: #fff;
    border-radius: 12px;
    padding: 5px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #075e54;
    display: flex;
    align-items: center;
    gap: 6px;
    transform-origin: center;
}

/* --- Message bubbles --- */
.sal-msg-in,
.sal-msg-out,
.sal-agent-msg {
    padding: 8px 12px;
    max-width: 80%;
    line-height: 1.5;
    font-size: 0.82rem;
    position: relative;
}

.sal-msg-in {
    align-self: flex-start;
    background: #fff;
    border-radius: 0 12px 12px 12px;
    color: #1f2937;
    transform-origin: left center;
}

.sal-msg-out {
    align-self: flex-end;
    background: #dcf8c6;
    border-radius: 12px 0 12px 12px;
    color: #1f2937;
    transform-origin: right center;
}

/* --- Confirm chip --- */
.sal-chip {
    align-self: center;
    background: rgba(94, 23, 235, 0.08);
    color: var(--color-primary);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    transform-origin: center;
}

/* --- Agent message --- */
.sal-agent-msg {
    align-self: flex-start;
    background: #c8e6c9;
    border-radius: 0 12px 12px 12px;
    border-left: 3px solid var(--color-primary);
    color: #1f2937;
    transform-origin: left center;
}

/* ---- Keyframe animations (16s loop) ---- */
@keyframes salBotChip {
    0%,
    4% {
        opacity: 0;
        transform: scaleX(0.8);
    }
    6%,
    83% {
        opacity: 1;
        transform: scaleX(1);
    }
    91%,
    100% {
        opacity: 0;
        transform: scaleX(0.8);
    }
}

@keyframes salM1 {
    0%,
    10% {
        opacity: 0;
        transform: translateY(10px);
    }
    12%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

@keyframes salM2 {
    0%,
    22% {
        opacity: 0;
        transform: translateY(10px);
    }
    24%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

@keyframes salM3 {
    0%,
    34% {
        opacity: 0;
        transform: translateY(10px);
    }
    36%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

@keyframes salM4 {
    0%,
    45% {
        opacity: 0;
        transform: translateY(10px);
    }
    47%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

@keyframes salChip {
    0%,
    54% {
        opacity: 0;
        transform: scaleX(0.8);
    }
    56%,
    83% {
        opacity: 1;
        transform: scaleX(1);
    }
    91%,
    100% {
        opacity: 0;
        transform: scaleX(0.8);
    }
}

@keyframes salM5 {
    0%,
    63% {
        opacity: 0;
        transform: translateY(10px);
    }
    65%,
    83% {
        opacity: 1;
        transform: translateY(0);
    }
    91%,
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* --- Apply animations --- */
.sal-bot-chip {
    animation: salBotChip 16s ease infinite;
}
.sal-m1 {
    animation: salM1 16s ease infinite;
}
.sal-m2 {
    animation: salM2 16s ease infinite;
}
.sal-m3 {
    animation: salM3 16s ease infinite;
}
.sal-m4 {
    animation: salM4 16s ease infinite;
}
.sal-confirm {
    animation: salChip 16s ease infinite;
}
.sal-m5 {
    animation: salM5 16s ease infinite;
}

/* --- Why WhatsApp section --- */
.sal-why {
    padding: 90px 0;
    background: var(--gradient-hero);
}

.sal-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.sal-why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: 16px;
    padding: 24px;
    transition:
        border-color 0.22s,
        box-shadow 0.22s,
        transform 0.22s;
}

.sal-why-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 32px rgba(94, 23, 235, 0.11);
    transform: translateY(-4px);
}

.sal-why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition:
        background 0.22s,
        color 0.22s;
}

.sal-why-item:hover .sal-why-icon {
    background: var(--color-primary);
    color: #fff;
}

.sal-why-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 8px;
    line-height: 1.35;
}

.sal-why-text p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* --- Accessibility --- */
@media (prefers-reduced-motion: reduce) {
    .sal-bot-chip,
    .sal-m1,
    .sal-m2,
    .sal-m3,
    .sal-m4,
    .sal-chip,
    .sal-m5 {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .sal-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sal-demo {
        max-width: 100%;
    }

    .sal-why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sal-why {
        padding: 60px 0;
    }
}

/* ============================================================
   SECTION 47 — INDUSTRIES: SERVICE BUSINESSES (.svc-)
   ============================================================ */

/* --- Demo wrapper --- */
.svc-demo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 0;
}

/* --- Chat shell --- */
.svc-chat {
    width: 320px;
    background: #ece5dd;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
    font-family: Inter, system-ui, sans-serif;
}

/* --- Chat header --- */
.svc-chat-hd {
    background: #075e54;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.svc-chat-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}
.svc-chat-info {
    display: flex;
    flex-direction: column;
}
.svc-chat-name {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
}
.svc-chat-status {
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
}

/* --- Chat body --- */
.svc-chat-bd {
    padding: 14px 12px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 260px;
}

/* --- Bot chip --- */
.svc-bot-chip {
    align-self: center;
    background: #075e54;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 4px;
    opacity: 0;
    animation: svcFadeIn 0.5s ease forwards;
    animation-delay: 0s;
}

/* --- Bubbles --- */
.svc-msg-in,
.svc-msg-out,
.svc-agent-msg {
    max-width: 82%;
    padding: 8px 12px;
    font-size: 12.5px;
    line-height: 1.45;
    opacity: 0;
}
.svc-msg-in {
    background: #fff;
    border-radius: 0 12px 12px 12px;
    align-self: flex-start;
    color: #1f2937;
    animation: svcSlideR 0.45s ease forwards;
}
.svc-msg-out {
    background: #dcf8c6;
    border-radius: 12px 0 12px 12px;
    align-self: flex-end;
    color: #1f2937;
    animation: svcSlideL 0.45s ease forwards;
}
.svc-agent-msg {
    background: #c8e6c9;
    border-left: 3px solid var(--color-primary);
    border-radius: 0 12px 12px 12px;
    align-self: flex-start;
    color: #1f2937;
    font-size: 12px;
    animation: svcSlideR 0.45s ease forwards;
}

/* --- Confirm chip --- */
.svc-chip {
    align-self: center;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    opacity: 0;
    animation: svcFadeIn 0.5s ease forwards;
}
.svc-confirm {
    background: var(--color-primary);
    color: #fff;
}

/* --- Animation delays (16s loop) --- */
.svc-m1 {
    animation-delay: 0.6s;
}
.svc-m2 {
    animation-delay: 2.4s;
}
.svc-m3 {
    animation-delay: 4.2s;
}
.svc-m4 {
    animation-delay: 6s;
}
.svc-chip {
    animation-delay: 7.8s;
}
.svc-m5 {
    animation-delay: 9.4s;
}

/* --- Keyframes --- */
@keyframes svcFadeIn {
    to {
        opacity: 1;
    }
}
@keyframes svcSlideR {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes svcSlideL {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Reset loop at 16s */
.svc-demo * {
    animation-iteration-count: infinite;
    animation-duration: 16s;
}
.svc-bot-chip {
    animation-duration: 16s;
    animation-delay: 0s;
}
.svc-m1 {
    animation-duration: 16s;
    animation-delay: 0.6s;
}
.svc-m2 {
    animation-duration: 16s;
    animation-delay: 2.4s;
}
.svc-m3 {
    animation-duration: 16s;
    animation-delay: 4.2s;
}
.svc-m4 {
    animation-duration: 16s;
    animation-delay: 6s;
}
.svc-chip {
    animation-duration: 16s;
    animation-delay: 7.8s;
}
.svc-m5 {
    animation-duration: 16s;
    animation-delay: 9.4s;
}

/* --- Why WhatsApp section --- */
.svc-why {
    padding: 80px 0;
    background: var(--gradient-hero);
}
.svc-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}
.svc-why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: 16px;
    padding: 24px;
    transition:
        border-color 0.2s,
        box-shadow 0.2s,
        transform 0.2s;
}
.svc-why-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 32px rgba(94, 23, 235, 0.11);
    transform: translateY(-4px);
}
.svc-why-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition:
        background 0.2s,
        color 0.2s;
}
.svc-why-item:hover .svc-why-icon {
    background: var(--color-primary);
    color: #fff;
}
.svc-why-text h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 6px;
}
.svc-why-text p {
    font-size: 13.5px;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.55;
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
    .svc-demo * {
        animation: none !important;
        opacity: 1 !important;
    }
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .svc-why-grid {
        grid-template-columns: 1fr;
    }
    .svc-chat {
        width: 100%;
        max-width: 320px;
    }
}

/* ============================================================
   SECTION 48 — /industries/sports  (.spo-*)
   ============================================================ */

/* --- Chat Demo --- */
.spo-demo {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.spo-chat {
    width: 300px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    font-size: 13px;
}
.spo-chat-hd {
    background: #075e54;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
}
.spo-chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}
.spo-chat-name {
    display: block;
    font-weight: 600;
    font-size: 13px;
}
.spo-chat-status {
    display: block;
    font-size: 11px;
    opacity: 0.8;
}
.spo-chat-bd {
    padding: 12px 10px;
    background: #ece5dd;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

/* Bot chip */
.spo-bot-chip {
    align-self: center;
    background: #075e54;
    color: #fff;
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 20px;
    opacity: 0;
    animation: spoBotChip 16s infinite;
}
/* Message bubbles */
.spo-msg-in {
    background: #fff;
    border-radius: 0 12px 12px 12px;
    padding: 7px 10px;
    align-self: flex-start;
    max-width: 80%;
    opacity: 0;
    color: #1f2937;
    line-height: 1.4;
}
.spo-msg-out {
    background: #dcf8c6;
    border-radius: 12px 0 12px 12px;
    padding: 7px 10px;
    align-self: flex-end;
    max-width: 80%;
    opacity: 0;
    color: #1f2937;
    line-height: 1.4;
}
.spo-confirm {
    align-self: center;
    background: rgba(94, 23, 235, 0.08);
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    opacity: 0;
    text-align: center;
}
.spo-agent-msg {
    background: #c8e6c9;
    border-left: 3px solid var(--color-primary);
    border-radius: 0 12px 12px 12px;
    padding: 7px 10px;
    align-self: flex-start;
    max-width: 85%;
    opacity: 0;
    color: #1f2937;
    font-size: 12px;
    line-height: 1.4;
}

/* --- Keyframes (16s loop) --- */
@keyframes spoBotChip {
    0%,
    6.25% {
        opacity: 0;
        transform: translateY(4px);
    }
    9.375%,
    25% {
        opacity: 1;
        transform: translateY(0);
    }
    31.25%,
    100% {
        opacity: 1;
    }
}
@keyframes spoM1 {
    0%,
    12.5% {
        opacity: 0;
        transform: translateY(6px);
    }
    15.625%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes spoM2 {
    0%,
    25% {
        opacity: 0;
        transform: translateY(6px);
    }
    28.125%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes spoM3 {
    0%,
    40.625% {
        opacity: 0;
        transform: translateY(6px);
    }
    43.75%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes spoM4 {
    0%,
    53.125% {
        opacity: 0;
        transform: translateY(6px);
    }
    56.25%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes spoChip {
    0%,
    65.625% {
        opacity: 0;
        transform: scale(0.9);
    }
    68.75%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes spoM5 {
    0%,
    78.125% {
        opacity: 0;
        transform: translateY(6px);
    }
    81.25%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.spo-m1 {
    animation: spoM1 16s infinite;
}
.spo-m2 {
    animation: spoM2 16s infinite;
}
.spo-m3 {
    animation: spoM3 16s infinite;
}
.spo-m4 {
    animation: spoM4 16s infinite;
}
.spo-chip {
    animation: spoChip 16s infinite;
}
.spo-m5 {
    animation: spoM5 16s infinite;
}

/* --- Why WhatsApp section --- */
.spo-why {
    background: var(--gradient-hero);
    padding: 80px 0;
}
.spo-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.spo-why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: 16px;
    padding: 24px;
    transition:
        border-color 0.2s,
        box-shadow 0.2s,
        transform 0.2s;
}
.spo-why-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 32px rgba(94, 23, 235, 0.11);
    transform: translateY(-4px);
}
.spo-why-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition:
        background 0.2s,
        color 0.2s;
}
.spo-why-item:hover .spo-why-icon {
    background: var(--color-primary);
    color: #fff;
}
.spo-why-text h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 6px;
    color: var(--color-text);
}
.spo-why-text p {
    font-size: 13.5px;
    color: var(--color-muted);
    margin: 0;
    line-height: 1.6;
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
    .spo-bot-chip,
    .spo-m1,
    .spo-m2,
    .spo-m3,
    .spo-m4,
    .spo-m5,
    .spo-chip {
        animation: none;
        opacity: 1;
    }
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .spo-why-grid {
        grid-template-columns: 1fr;
    }
    .spo-chat {
        width: 100%;
        max-width: 320px;
    }
}

/* ============================================================
   SECTION 49 — /industries/tech-it  (.tit-*)
   ============================================================ */

/* --- Chat Demo --- */
.tit-demo {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.tit-chat {
    width: 300px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    font-size: 13px;
}
.tit-chat-hd {
    background: #075e54;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
}
.tit-chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}
.tit-chat-name {
    display: block;
    font-weight: 600;
    font-size: 13px;
}
.tit-chat-status {
    display: block;
    font-size: 11px;
    opacity: 0.8;
}
.tit-chat-bd {
    padding: 12px 10px;
    background: #ece5dd;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

/* Bot chip */
.tit-bot-chip {
    align-self: center;
    background: #075e54;
    color: #fff;
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 20px;
    opacity: 0;
    animation: titBotChip 16s infinite;
}
/* Message bubbles */
.tit-msg-in {
    background: #fff;
    border-radius: 0 12px 12px 12px;
    padding: 7px 10px;
    align-self: flex-start;
    max-width: 80%;
    opacity: 0;
    color: #1f2937;
    line-height: 1.4;
}
.tit-msg-out {
    background: #dcf8c6;
    border-radius: 12px 0 12px 12px;
    padding: 7px 10px;
    align-self: flex-end;
    max-width: 80%;
    opacity: 0;
    color: #1f2937;
    line-height: 1.4;
}
.tit-confirm {
    align-self: center;
    background: rgba(94, 23, 235, 0.08);
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    opacity: 0;
    text-align: center;
}
.tit-agent-msg {
    background: #c8e6c9;
    border-left: 3px solid var(--color-primary);
    border-radius: 0 12px 12px 12px;
    padding: 7px 10px;
    align-self: flex-start;
    max-width: 85%;
    opacity: 0;
    color: #1f2937;
    font-size: 12px;
    line-height: 1.4;
}

/* --- Keyframes (16s loop) --- */
@keyframes titBotChip {
    0%,
    6.25% {
        opacity: 0;
        transform: translateY(4px);
    }
    9.375%,
    25% {
        opacity: 1;
        transform: translateY(0);
    }
    31.25%,
    100% {
        opacity: 1;
    }
}
@keyframes titM1 {
    0%,
    12.5% {
        opacity: 0;
        transform: translateY(6px);
    }
    15.625%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes titM2 {
    0%,
    25% {
        opacity: 0;
        transform: translateY(6px);
    }
    28.125%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes titM3 {
    0%,
    40.625% {
        opacity: 0;
        transform: translateY(6px);
    }
    43.75%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes titM4 {
    0%,
    53.125% {
        opacity: 0;
        transform: translateY(6px);
    }
    56.25%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes titChip {
    0%,
    65.625% {
        opacity: 0;
        transform: scale(0.9);
    }
    68.75%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes titM5 {
    0%,
    78.125% {
        opacity: 0;
        transform: translateY(6px);
    }
    81.25%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.tit-m1 {
    animation: titM1 16s infinite;
}
.tit-m2 {
    animation: titM2 16s infinite;
}
.tit-m3 {
    animation: titM3 16s infinite;
}
.tit-m4 {
    animation: titM4 16s infinite;
}
.tit-chip {
    animation: titChip 16s infinite;
}
.tit-m5 {
    animation: titM5 16s infinite;
}

/* --- Why WhatsApp section --- */
.tit-why {
    background: var(--gradient-hero);
    padding: 80px 0;
}
.tit-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.tit-why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: 16px;
    padding: 24px;
    transition:
        border-color 0.2s,
        box-shadow 0.2s,
        transform 0.2s;
}
.tit-why-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 32px rgba(94, 23, 235, 0.11);
    transform: translateY(-4px);
}
.tit-why-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition:
        background 0.2s,
        color 0.2s;
}
.tit-why-item:hover .tit-why-icon {
    background: var(--color-primary);
    color: #fff;
}
.tit-why-text h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 6px;
    color: var(--color-text);
}
.tit-why-text p {
    font-size: 13.5px;
    color: var(--color-muted);
    margin: 0;
    line-height: 1.6;
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
    .tit-bot-chip,
    .tit-m1,
    .tit-m2,
    .tit-m3,
    .tit-m4,
    .tit-m5,
    .tit-chip {
        animation: none;
        opacity: 1;
    }
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .tit-why-grid {
        grid-template-columns: 1fr;
    }
    .tit-chat {
        width: 100%;
        max-width: 320px;
    }
}

/* ============================================================
   SECTION 50 — /industries/ticketing  (.tkt-*)
   ============================================================ */

/* --- Chat Demo --- */
.tkt-demo {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.tkt-chat {
    width: 300px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    font-size: 13px;
}
.tkt-chat-hd {
    background: #075e54;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
}
.tkt-chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}
.tkt-chat-name {
    display: block;
    font-weight: 600;
    font-size: 13px;
}
.tkt-chat-status {
    display: block;
    font-size: 11px;
    opacity: 0.8;
}
.tkt-chat-bd {
    padding: 12px 10px;
    background: #ece5dd;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

/* Bot chip */
.tkt-bot-chip {
    align-self: center;
    background: #075e54;
    color: #fff;
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 20px;
    opacity: 0;
    animation: tktBotChip 16s infinite;
}
/* Message bubbles */
.tkt-msg-in {
    background: #fff;
    border-radius: 0 12px 12px 12px;
    padding: 7px 10px;
    align-self: flex-start;
    max-width: 80%;
    opacity: 0;
    color: #1f2937;
    line-height: 1.4;
}
.tkt-msg-out {
    background: #dcf8c6;
    border-radius: 12px 0 12px 12px;
    padding: 7px 10px;
    align-self: flex-end;
    max-width: 80%;
    opacity: 0;
    color: #1f2937;
    line-height: 1.4;
}
.tkt-confirm {
    align-self: center;
    background: rgba(94, 23, 235, 0.08);
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    opacity: 0;
    text-align: center;
}
.tkt-agent-msg {
    background: #c8e6c9;
    border-left: 3px solid var(--color-primary);
    border-radius: 0 12px 12px 12px;
    padding: 7px 10px;
    align-self: flex-start;
    max-width: 85%;
    opacity: 0;
    color: #1f2937;
    font-size: 12px;
    line-height: 1.4;
}

/* --- Keyframes (16s loop) --- */
@keyframes tktBotChip {
    0%,
    6.25% {
        opacity: 0;
        transform: translateY(4px);
    }
    9.375%,
    25% {
        opacity: 1;
        transform: translateY(0);
    }
    31.25%,
    100% {
        opacity: 1;
    }
}
@keyframes tktM1 {
    0%,
    12.5% {
        opacity: 0;
        transform: translateY(6px);
    }
    15.625%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes tktM2 {
    0%,
    25% {
        opacity: 0;
        transform: translateY(6px);
    }
    28.125%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes tktM3 {
    0%,
    40.625% {
        opacity: 0;
        transform: translateY(6px);
    }
    43.75%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes tktM4 {
    0%,
    53.125% {
        opacity: 0;
        transform: translateY(6px);
    }
    56.25%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes tktChip {
    0%,
    65.625% {
        opacity: 0;
        transform: scale(0.9);
    }
    68.75%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes tktM5 {
    0%,
    78.125% {
        opacity: 0;
        transform: translateY(6px);
    }
    81.25%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.tkt-m1 {
    animation: tktM1 16s infinite;
}
.tkt-m2 {
    animation: tktM2 16s infinite;
}
.tkt-m3 {
    animation: tktM3 16s infinite;
}
.tkt-m4 {
    animation: tktM4 16s infinite;
}
.tkt-chip {
    animation: tktChip 16s infinite;
}
.tkt-m5 {
    animation: tktM5 16s infinite;
}

/* --- Why WhatsApp section --- */
.tkt-why {
    background: var(--gradient-hero);
    padding: 80px 0;
}
.tkt-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.tkt-why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: 16px;
    padding: 24px;
    transition:
        border-color 0.2s,
        box-shadow 0.2s,
        transform 0.2s;
}
.tkt-why-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 32px rgba(94, 23, 235, 0.11);
    transform: translateY(-4px);
}
.tkt-why-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition:
        background 0.2s,
        color 0.2s;
}
.tkt-why-item:hover .tkt-why-icon {
    background: var(--color-primary);
    color: #fff;
}
.tkt-why-text h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 6px;
    color: var(--color-text);
}
.tkt-why-text p {
    font-size: 13.5px;
    color: var(--color-muted);
    margin: 0;
    line-height: 1.6;
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
    .tkt-bot-chip,
    .tkt-m1,
    .tkt-m2,
    .tkt-m3,
    .tkt-m4,
    .tkt-m5,
    .tkt-chip {
        animation: none;
        opacity: 1;
    }
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .tkt-why-grid {
        grid-template-columns: 1fr;
    }
    .tkt-chat {
        width: 100%;
        max-width: 320px;
    }
}

/* ============================================================
   SECTION 51 — /industries/travel  (.trv-*)
   ============================================================ */

/* --- Chat Demo --- */
.trv-demo {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.trv-chat {
    width: 300px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    font-size: 13px;
}
.trv-chat-hd {
    background: #075e54;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
}
.trv-chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}
.trv-chat-name {
    display: block;
    font-weight: 600;
    font-size: 13px;
}
.trv-chat-status {
    display: block;
    font-size: 11px;
    opacity: 0.8;
}
.trv-chat-bd {
    padding: 12px 10px;
    background: #ece5dd;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

/* Bot chip */
.trv-bot-chip {
    align-self: center;
    background: #075e54;
    color: #fff;
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 20px;
    opacity: 0;
    animation: trvBotChip 16s infinite;
}
/* Message bubbles */
.trv-msg-in {
    background: #fff;
    border-radius: 0 12px 12px 12px;
    padding: 7px 10px;
    align-self: flex-start;
    max-width: 80%;
    opacity: 0;
    color: #1f2937;
    line-height: 1.4;
}
.trv-msg-out {
    background: #dcf8c6;
    border-radius: 12px 0 12px 12px;
    padding: 7px 10px;
    align-self: flex-end;
    max-width: 80%;
    opacity: 0;
    color: #1f2937;
    line-height: 1.4;
}
.trv-confirm {
    align-self: center;
    background: rgba(94, 23, 235, 0.08);
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    opacity: 0;
    text-align: center;
}
.trv-agent-msg {
    background: #c8e6c9;
    border-left: 3px solid var(--color-primary);
    border-radius: 0 12px 12px 12px;
    padding: 7px 10px;
    align-self: flex-start;
    max-width: 85%;
    opacity: 0;
    color: #1f2937;
    font-size: 12px;
    line-height: 1.4;
}

/* --- Keyframes (16s loop) --- */
@keyframes trvBotChip {
    0%,
    6.25% {
        opacity: 0;
        transform: translateY(4px);
    }
    9.375%,
    25% {
        opacity: 1;
        transform: translateY(0);
    }
    31.25%,
    100% {
        opacity: 1;
    }
}
@keyframes trvM1 {
    0%,
    12.5% {
        opacity: 0;
        transform: translateY(6px);
    }
    15.625%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes trvM2 {
    0%,
    25% {
        opacity: 0;
        transform: translateY(6px);
    }
    28.125%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes trvM3 {
    0%,
    40.625% {
        opacity: 0;
        transform: translateY(6px);
    }
    43.75%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes trvM4 {
    0%,
    53.125% {
        opacity: 0;
        transform: translateY(6px);
    }
    56.25%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes trvChip {
    0%,
    65.625% {
        opacity: 0;
        transform: scale(0.9);
    }
    68.75%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes trvM5 {
    0%,
    78.125% {
        opacity: 0;
        transform: translateY(6px);
    }
    81.25%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.trv-m1 {
    animation: trvM1 16s infinite;
}
.trv-m2 {
    animation: trvM2 16s infinite;
}
.trv-m3 {
    animation: trvM3 16s infinite;
}
.trv-m4 {
    animation: trvM4 16s infinite;
}
.trv-chip {
    animation: trvChip 16s infinite;
}
.trv-m5 {
    animation: trvM5 16s infinite;
}

/* --- Why WhatsApp section --- */
.trv-why {
    background: var(--gradient-hero);
    padding: 80px 0;
}
.trv-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.trv-why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: 16px;
    padding: 24px;
    transition:
        border-color 0.2s,
        box-shadow 0.2s,
        transform 0.2s;
}
.trv-why-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 32px rgba(94, 23, 235, 0.11);
    transform: translateY(-4px);
}
.trv-why-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition:
        background 0.2s,
        color 0.2s;
}
.trv-why-item:hover .trv-why-icon {
    background: var(--color-primary);
    color: #fff;
}
.trv-why-text h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 6px;
    color: var(--color-text);
}
.trv-why-text p {
    font-size: 13.5px;
    color: var(--color-muted);
    margin: 0;
    line-height: 1.6;
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
    .trv-bot-chip,
    .trv-m1,
    .trv-m2,
    .trv-m3,
    .trv-m4,
    .trv-m5,
    .trv-chip {
        animation: none;
        opacity: 1;
    }
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .trv-why-grid {
        grid-template-columns: 1fr;
    }
    .trv-chat {
        width: 100%;
        max-width: 320px;
    }
}

/* =========================================================================
   SECTION 52 — About Page (.abt-*)
   ========================================================================= */

/* Hero */
.abt-hero {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f3efff 0%, #faf9ff 60%, #ede9ff 100%);
    overflow: hidden;
    text-align: center;
}
.abt-hero-orb {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(94, 23, 235, 0.18) 0%,
        transparent 70%
    );
    pointer-events: none;
}
.abt-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ede9ff;
    color: #5e17eb;
    border: 1px solid #c9b6f7;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}
.abt-hero-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-text);
    margin: 0 auto 20px;
    max-width: 700px;
}
.abt-hero-sub {
    font-size: 17px;
    color: var(--color-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Mission & Vision */
.abt-mv {
    padding: 80px 0;
    background: #fff;
}
.abt-section-title {
    font-size: clamp(22px, 3.5vw, 34px);
    font-weight: 800;
    color: var(--color-text);
    margin: 0 0 14px;
    text-align: center;
}
.abt-section-sub {
    font-size: 16px;
    color: var(--color-muted);
    text-align: center;
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.abt-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 40px auto 0;
}
.abt-mv-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 36px 32px;
    text-align: center;
}
.abt-mv-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #5e17eb, #8b5cf6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 18px;
}
.abt-mv-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 12px;
}
.abt-mv-card p {
    font-size: 15px;
    color: var(--color-muted);
    line-height: 1.7;
    margin: 0;
}

/* Story */
.abt-story {
    padding: 80px 0;
    background: #f9fafb;
}
.abt-story-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.abt-story-text .abt-section-title {
    text-align: left;
}
.abt-story-text p {
    font-size: 15.5px;
    color: var(--color-muted);
    line-height: 1.8;
    margin: 0 0 16px;
}
.abt-story-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.abt-tl-item {
    display: flex;
    gap: 16px;
    position: relative;
    padding-bottom: 28px;
}
.abt-tl-item:last-child {
    padding-bottom: 0;
}
.abt-tl-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #5e17eb;
    flex-shrink: 0;
    margin-top: 4px;
    position: relative;
    z-index: 1;
}
.abt-tl-item:not(:last-child) .abt-tl-dot::after {
    content: "";
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% + 14px);
    background: #e0d4fc;
}
.abt-tl-year {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #5e17eb;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.abt-tl-content p {
    font-size: 14.5px;
    color: var(--color-muted);
    line-height: 1.7;
    margin: 0;
}

/* Values */
.abt-values {
    padding: 80px 0;
    background: #fff;
}
.abt-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.abt-val-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 24px;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
}
.abt-val-card:hover {
    box-shadow: 0 8px 32px rgba(94, 23, 235, 0.1);
    transform: translateY(-3px);
}
.abt-val-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #5e17eb, #8b5cf6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
}
.abt-val-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 8px;
}
.abt-val-card p {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.7;
    margin: 0;
}

/* Culture */
.abt-culture {
    padding: 80px 0;
    background: #f9fafb;
}
.abt-culture-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.abt-culture-text .abt-section-title {
    text-align: left;
}
.abt-culture-lead {
    font-size: 16px;
    color: var(--color-muted);
    line-height: 1.7;
    margin: 0 0 24px;
}
.abt-culture-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.abt-culture-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.5;
}
.abt-culture-list li i {
    color: #5e17eb;
    margin-top: 2px;
    flex-shrink: 0;
}
.abt-culture-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.abt-culture-stat {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.abt-stat-num {
    font-size: 28px;
    font-weight: 800;
    color: #5e17eb;
    line-height: 1;
}
.abt-stat-label {
    font-size: 13px;
    color: var(--color-muted);
    line-height: 1.4;
}

/* CTA */
.abt-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #5e17eb 0%, #7c3aed 100%);
    text-align: center;
}
.abt-cta-inner h2 {
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
}
.abt-cta-inner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.abt-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition:
        background 0.2s,
        border-color 0.2s;
}
.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

/* Responsive — About */
@media (max-width: 768px) {
    .abt-mv-grid,
    .abt-story-inner,
    .abt-culture-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .abt-values-grid {
        grid-template-columns: 1fr 1fr;
    }
    .abt-culture-cards {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 480px) {
    .abt-values-grid,
    .abt-culture-cards {
        grid-template-columns: 1fr;
    }
}

/* =========================================================================
   SECTION 53 — Contact Page (.con-*)
   ========================================================================= */

/* Hero */
.con-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f3efff 0%, #faf9ff 60%, #ede9ff 100%);
    text-align: center;
}
.con-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ede9ff;
    color: #5e17eb;
    border: 1px solid #c9b6f7;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}
.con-hero-title {
    font-size: clamp(26px, 4.5vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-text);
    margin: 0 auto 18px;
    max-width: 600px;
}
.con-hero-sub {
    font-size: 16.5px;
    color: var(--color-muted);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Main grid */
.con-main {
    padding: 64px 0 80px;
    background: #fff;
}
.con-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

/* Form */
.con-form-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 24px;
}
.con-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.con-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.con-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.con-group-full {
    width: 100%;
}
.con-label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--color-text);
}
.con-optional {
    color: var(--color-muted);
    font-weight: 400;
}
.con-input {
    padding: 11px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14.5px;
    font-family: inherit;
    color: var(--color-text);
    background: #fff;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
    width: 100%;
    box-sizing: border-box;
}
.con-input:focus {
    outline: none;
    border-color: #5e17eb;
    box-shadow: 0 0 0 3px rgba(94, 23, 235, 0.12);
}
.con-textarea {
    resize: vertical;
    min-height: 130px;
}
.con-select {
    appearance: none;
    cursor: pointer;
}
.con-submit {
    align-self: flex-start;
    padding: 12px 28px;
    font-size: 15px;
    gap: 8px;
    display: flex;
    align-items: center;
}
.con-success-msg {
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    color: #065f46;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14.5px;
}
.con-error-msg {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14.5px;
}

/* Info panel */
.con-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.con-info-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px;
}
.con-info-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 20px;
}
.con-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
}
.con-info-item:last-of-type {
    margin-bottom: 20px;
}
.con-info-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #ede9ff;
    color: #5e17eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}
.con-info-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-muted);
    margin-bottom: 2px;
}
.con-info-val {
    font-size: 14.5px;
    color: var(--color-text);
    font-weight: 500;
    text-decoration: none;
}
a.con-info-val:hover {
    color: #5e17eb;
}
.con-social-row {
    display: flex;
    gap: 10px;
}
.con-social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #ede9ff;
    color: #5e17eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition:
        background 0.2s,
        color 0.2s;
}
.con-social-link:hover {
    background: #5e17eb;
    color: #fff;
}
.con-sales-card {
    background: linear-gradient(135deg, #5e17eb, #7c3aed);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    color: #fff;
}
.con-sales-icon {
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
}
.con-sales-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px;
}
.con-sales-card p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.6;
    margin: 0 0 18px;
}
.con-demo-btn {
    display: inline-block;
    background: #fff;
    color: #5e17eb;
    border-radius: 10px;
    padding: 10px 22px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s;
}
.con-demo-btn:hover {
    background: #f3efff;
}

/* FAQ strip */
.con-faq {
    padding: 64px 0 80px;
    background: #f9fafb;
}
.con-faq-title {
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 800;
    color: var(--color-text);
    margin: 0 0 36px;
    text-align: center;
}
.con-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.con-faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 24px;
}
.con-faq-icon {
    font-size: 22px;
    color: #5e17eb;
    margin-bottom: 12px;
    display: block;
}
.con-faq-item h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 8px;
}
.con-faq-item p {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.7;
    margin: 0;
}
.con-faq-item a {
    color: #5e17eb;
    text-decoration: none;
    font-weight: 600;
}
.con-faq-item a:hover {
    text-decoration: underline;
}

/* Responsive — Contact */
@media (max-width: 900px) {
    .con-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .con-row {
        grid-template-columns: 1fr;
    }
    .con-faq-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================================
   SECTION 54 — Careers Page (.car-*)
   ========================================================================= */

/* Hero */
.car-hero {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f3efff 0%, #faf9ff 60%, #ede9ff 100%);
    overflow: hidden;
    text-align: center;
}
.car-hero-orb {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(94, 23, 235, 0.15) 0%,
        transparent 70%
    );
    pointer-events: none;
}
.car-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ede9ff;
    color: #5e17eb;
    border: 1px solid #c9b6f7;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}
.car-hero-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-text);
    margin: 0 auto 20px;
    max-width: 680px;
}
.car-hero-sub {
    font-size: 17px;
    color: var(--color-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}
.car-section-title {
    font-size: clamp(22px, 3.5vw, 34px);
    font-weight: 800;
    color: var(--color-text);
    margin: 0 0 12px;
    text-align: center;
}
.car-section-sub {
    font-size: 16px;
    color: var(--color-muted);
    text-align: center;
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Culture grid */
.car-culture {
    padding: 80px 0;
    background: #fff;
}
.car-culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.car-culture-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 24px;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
}
.car-culture-card:hover {
    box-shadow: 0 8px 28px rgba(94, 23, 235, 0.1);
    transform: translateY(-3px);
}
.car-culture-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #5e17eb, #8b5cf6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
}
.car-culture-card h3 {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 8px;
}
.car-culture-card p {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.7;
    margin: 0;
}

/* Perks */
.car-perks {
    padding: 80px 0;
    background: #f9fafb;
}
.car-perks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 40px;
}
.car-perk-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}
.car-perk-item i {
    font-size: 22px;
    color: #5e17eb;
}

/* No openings */
.car-openings {
    padding: 80px 0;
    background: #fff;
}
.car-openings-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.car-openings-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #ede9ff;
    color: #5e17eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 18px;
}
.car-openings-inner h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--color-text);
    margin: 0 0 14px;
}
.car-openings-inner p {
    font-size: 15.5px;
    color: var(--color-muted);
    line-height: 1.7;
    margin: 0 0 28px;
}
.car-openings-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA */
.car-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #5e17eb 0%, #7c3aed 100%);
    text-align: center;
}
.car-cta-inner h2 {
    font-size: clamp(22px, 4vw, 34px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
}
.car-cta-inner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 480px;
    margin: 0 auto 28px;
    line-height: 1.7;
}
.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
}

/* Responsive — Careers */
@media (max-width: 900px) {
    .car-perks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .car-culture-grid {
        grid-template-columns: 1fr 1fr;
    }
    .car-perks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .car-culture-grid {
        grid-template-columns: 1fr;
    }
    .car-perks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================================================
   SECTION 55 — Coming Soon Shared (.cs-*)  Blog + Partners
   ========================================================================= */

.cs-page {
    padding: 120px 0 100px;
    background: var(--gradient-hero);
    text-align: center;
}
.cs-container {
    position: relative;
    z-index: 1;
}
.cs-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}
.cs-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    border: 1px solid #c9b6f7;
    border-radius: 999px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}
.cs-title {
    font-size: clamp(28px, 5.5vw, 50px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-text);
    margin: 0 auto 20px;
}
.cs-sub {
    font-size: 17px;
    color: var(--color-muted);
    line-height: 1.75;
    margin: 0 auto 36px;
    max-width: 520px;
}
.cs-notify-wrap {
    margin-bottom: 28px;
}
.cs-notify-label {
    font-size: 13px;
    color: var(--color-muted);
    margin-bottom: 10px;
    font-weight: 500;
}
.cs-notify-form {
    display: flex;
    gap: 8px;
    max-width: 420px;
    margin: 0 auto;
}
.cs-notify-input {
    flex: 1;
    padding: 11px 16px;
    border: 1px solid #a29eab;
    border-radius: 10px;
    background: #fff;
    color: var(--color-text);
    font-size: 14.5px;
    font-family: inherit;
    outline: none;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}
.cs-notify-input::placeholder {
    color: #9ca3af;
}
.cs-notify-input:focus {
    border-color: #5e17eb;
    box-shadow: 0 0 0 3px rgba(94, 23, 235, 0.1);
}
.cs-notify-btn {
    flex-shrink: 0;
    padding: 11px 20px;
    font-size: 14px;
}
.cs-notify-thanks {
    margin-top: 12px;
    font-size: 14px;
    color: #5e17eb;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}
.cs-home-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--color-muted);
    font-size: 14px;
    text-decoration: none;
    margin-top: 8px;
    transition: color 0.2s;
}
.cs-home-link:hover {
    color: var(--color-primary);
}
.cs-partner-actions {
    margin-bottom: 28px;
}
.cs-partner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    padding: 12px 28px;
}
.cs-partner-types {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.cs-partner-type {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 10px 18px;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
}
.cs-partner-type i {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .cs-notify-form {
        flex-direction: column;
    }
    .cs-notify-btn {
        width: 100%;
    }
}

/* =============================================================================
   56. Privacy Policy (.pp-*)
   ============================================================================= */

.pp-hero {
    background: var(--gradient-hero);
    text-align: center;
    padding: 80px 0;
}
.pp-hero-badge {
    display: inline-block;
    background: var(--color-light-bg);
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 18px;
}
.pp-hero-title {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800;
    color: var(--color-text);
    margin: 0 0 14px;
}
.pp-updated-tag {
    display: inline-block;
    font-size: 13px;
    color: var(--color-muted);
    background: #f3f4f6;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 4px 14px;
}

/* Layout */
.pp-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    padding: 60px 0 80px;
    align-items: start;
}

/* TOC sidebar */
.pp-toc {
    position: sticky;
    top: 100px;
    align-self: start;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 24px 20px;
}
.pp-toc-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-muted);
    margin: 0 0 14px;
}
.pp-toc ol {
    list-style: decimal;
    padding-left: 18px;
    margin: 0;
}
.pp-toc ol li {
    margin-bottom: 8px;
}
.pp-toc-link {
    font-size: 13.5px;
    color: var(--color-muted);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.15s;
}
.pp-toc-link:hover {
    color: var(--color-primary);
}
.pp-toc-link.active {
    color: var(--color-primary);
    font-weight: 600;
}

/* Policy content */
.pp-content {
    min-width: 0;
}
.pp-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--color-border);
}
.pp-section:last-of-type {
    border-bottom: none;
}
.pp-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 14px;
}
.pp-section p,
.pp-section ul,
.pp-section ol {
    font-size: 15px;
    color: var(--color-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}
.pp-section ul {
    list-style: disc;
    padding-left: 20px;
}
.pp-section a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Contact box */
.pp-contact-box {
    background: #f3efff;
    border: 1px solid #c9b6f7;
    border-radius: 16px;
    padding: 28px 32px;
    margin-top: 8px;
}
.pp-contact-box p {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.7;
    margin: 0 0 6px;
}
.pp-contact-box p:last-child {
    margin-bottom: 0;
}
.pp-contact-box a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
    .pp-layout {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 0 60px;
    }
    .pp-toc {
        position: static;
        order: -1;
    }
    .pp-hero {
        padding: 60px 0;
    }
}

/* =============================================================================
   57. Terms of Service (.tos-*)
   ============================================================================= */

.tos-hero {
    background: var(--gradient-hero);
    text-align: center;
    padding: 80px 0;
}
.tos-hero-badge {
    display: inline-block;
    background: var(--color-light-bg);
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 18px;
}
.tos-hero-title {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800;
    color: var(--color-text);
    margin: 0 0 14px;
}
.tos-updated-tag {
    display: inline-block;
    font-size: 13px;
    color: var(--color-muted);
    background: #f3f4f6;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 4px 14px;
}

/* Layout */
.tos-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    padding: 60px 0 80px;
    align-items: start;
}

/* TOC sidebar */
.tos-toc {
    position: sticky;
    top: 100px;
    align-self: start;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 24px 20px;
}
.tos-toc-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-muted);
    margin: 0 0 14px;
}
.tos-toc ol {
    list-style: decimal;
    padding-left: 18px;
    margin: 0;
}
.tos-toc ol li {
    margin-bottom: 8px;
}
.tos-toc-link {
    font-size: 13.5px;
    color: var(--color-muted);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.15s;
}
.tos-toc-link:hover {
    color: var(--color-primary);
}
.tos-toc-link.active {
    color: var(--color-primary);
    font-weight: 600;
}

/* Policy content */
.tos-content {
    min-width: 0;
}
.tos-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--color-border);
}
.tos-section:last-of-type {
    border-bottom: none;
}
.tos-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 14px;
}
.tos-section p,
.tos-section ul,
.tos-section ol {
    font-size: 15px;
    color: var(--color-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}
.tos-section ul {
    list-style: disc;
    padding-left: 20px;
}
.tos-section a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Contact box */
.tos-contact-box {
    background: #f3efff;
    border: 1px solid #c9b6f7;
    border-radius: 16px;
    padding: 28px 32px;
    margin-top: 8px;
}
.tos-contact-box p {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.7;
    margin: 0 0 6px;
}
.tos-contact-box p:last-child {
    margin-bottom: 0;
}
.tos-contact-box a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
    .tos-layout {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 0 60px;
    }
    .tos-toc {
        position: static;
        order: -1;
    }
    .tos-hero {
        padding: 60px 0;
    }
}

/* =============================================================================
   58. Cookie Policy (.cp-*)
   ============================================================================= */

.cp-hero {
    background: var(--gradient-hero);
    text-align: center;
    padding: 80px 0;
}
.cp-hero-badge {
    display: inline-block;
    background: var(--color-light-bg);
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 18px;
}
.cp-hero-title {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800;
    color: var(--color-text);
    margin: 0 0 14px;
}
.cp-updated-tag {
    display: inline-block;
    font-size: 13px;
    color: var(--color-muted);
    background: #f3f4f6;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 4px 14px;
}

/* Layout */
.cp-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    padding: 60px 0 80px;
    align-items: start;
}

/* TOC sidebar */
.cp-toc {
    position: sticky;
    top: 100px;
    align-self: start;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 24px 20px;
}
.cp-toc-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-muted);
    margin: 0 0 14px;
}
.cp-toc ol {
    list-style: decimal;
    padding-left: 18px;
    margin: 0;
}
.cp-toc ol li {
    margin-bottom: 8px;
}
.cp-toc-link {
    font-size: 13.5px;
    color: var(--color-muted);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.15s;
}
.cp-toc-link:hover {
    color: var(--color-primary);
}
.cp-toc-link.active {
    color: var(--color-primary);
    font-weight: 600;
}

/* Policy content */
.cp-content {
    min-width: 0;
}
.cp-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--color-border);
}
.cp-section:last-of-type {
    border-bottom: none;
}
.cp-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 14px;
}
.cp-section p,
.cp-section ul,
.cp-section ol {
    font-size: 15px;
    color: var(--color-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}
.cp-section ul {
    list-style: disc;
    padding-left: 20px;
}
.cp-section ul ul {
    list-style: circle;
    margin-top: 6px;
    margin-bottom: 0;
}
.cp-section a {
    color: var(--color-primary);
    text-decoration: underline;
}
.cp-section code {
    font-family: "Courier New", monospace;
    font-size: 13px;
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--color-text);
}

/* Cookie table */
.cp-table-wrap {
    overflow-x: auto;
    margin-top: 16px;
    border-radius: 10px;
    border: 1px solid var(--color-border);
}
.cp-cookie-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.cp-cookie-table th {
    background: #f9fafb;
    font-weight: 600;
    text-align: left;
    padding: 10px 14px;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
    white-space: nowrap;
}
.cp-cookie-table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-muted);
    vertical-align: top;
    line-height: 1.5;
}
.cp-cookie-table tbody tr:last-child td {
    border-bottom: none;
}
.cp-cookie-table tbody tr:hover {
    background: #fafafa;
}

/* Manage cookie settings inline button */
.cp-manage-btn {
    background: none;
    border: none;
    color: var(--color-primary);
    text-decoration: underline;
    cursor: pointer;
    font-size: 15px;
    padding: 0;
    font-family: inherit;
}
.cp-manage-btn:hover {
    color: #4c0fbd;
}

/* Manage preferences box */
.cp-manage-box {
    background: var(--color-light-bg);
    border: 1px solid #c9b6f7;
    border-radius: 16px;
    padding: 24px 28px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.cp-manage-box p {
    margin: 0;
    font-size: 15px;
    color: var(--color-text);
}
.cp-manage-btn-lg {
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
    white-space: nowrap;
}
.cp-manage-btn-lg:hover {
    background: #4c0fbd;
}

/* Contact box */
.cp-contact-box {
    background: #f3efff;
    border: 1px solid #c9b6f7;
    border-radius: 16px;
    padding: 28px 32px;
    margin-top: 8px;
}
.cp-contact-box p {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.7;
    margin: 0 0 6px;
}
.cp-contact-box p:last-child {
    margin-bottom: 0;
}
.cp-contact-box a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
    .cp-layout {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 0 60px;
    }
    .cp-toc {
        position: static;
        order: -1;
    }
    .cp-hero {
        padding: 60px 0;
    }
    .cp-manage-box {
        flex-direction: column;
        align-items: flex-start;
    }
    .cp-manage-btn-lg {
        width: 100%;
        text-align: center;
    }
}

/* =============================================================================
   59. Cookie Consent Banner (.cb-*)
   ============================================================================= */

/* ── Banner ── */
.cb-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #1f2937;
    color: #fff;
    padding: 20px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.18);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.cb-banner.cb-visible {
    transform: translateY(0);
}

.cb-text {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
    min-width: 0;
}
.cb-icon {
    font-size: 22px;
    flex-shrink: 0;
    line-height: 1.3;
}
.cb-title {
    font-weight: 700;
    font-size: 15px;
    margin: 0 0 4px;
    color: #fff;
}
.cb-desc {
    font-size: 13px;
    color: #d1d5db;
    margin: 0;
    line-height: 1.5;
}
.cb-link {
    color: #a78bfa;
    text-decoration: underline;
}
.cb-link:hover {
    color: #c4b5fd;
}

.cb-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.cb-btn {
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    border: none;
    transition:
        background 0.2s,
        color 0.2s,
        opacity 0.2s;
}
.cb-btn-accept-all {
    background: #5e17eb;
    color: #fff;
    border-radius: 8px;
    padding: 9px 20px;
    font-weight: 600;
}
.cb-btn-accept-all:hover {
    background: #4c0fbd;
}
.cb-btn-necessary {
    background: transparent;
    border: 1px solid #6b7280 !important;
    color: #fff;
    border-radius: 8px;
    padding: 9px 20px;
}
.cb-btn-necessary:hover {
    border-color: #9ca3af !important;
    background: rgba(255, 255, 255, 0.05);
}
.cb-btn-manage {
    background: none;
    color: #a78bfa;
    text-decoration: underline;
    padding: 4px 0;
    font-size: 13px;
    border: none;
}
.cb-btn-manage:hover {
    color: #c4b5fd;
}

/* ── Overlay ── */
.cb-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
}
.cb-overlay.cb-open {
    display: flex;
}

/* ── Modal ── */
.cb-modal {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    max-width: 520px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
}
.cb-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.cb-modal-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}
.cb-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--color-muted);
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    font-family: inherit;
}
.cb-modal-close:hover {
    color: var(--color-text);
}
.cb-modal-intro {
    font-size: 13.5px;
    color: var(--color-muted);
    line-height: 1.6;
    margin: 0 0 20px;
}

/* Category rows */
.cb-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
    gap: 16px;
}
.cb-category:last-of-type {
    border-bottom: none;
}
.cb-category-info {
    flex: 1;
    min-width: 0;
}
.cb-category-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 4px;
}
.cb-category-desc {
    font-size: 13px;
    color: var(--color-muted);
    margin: 0;
    line-height: 1.5;
}

/* Toggle switch */
.cb-toggle-wrap {
    flex-shrink: 0;
}
.cb-toggle-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.cb-toggle-label {
    display: block;
    width: 44px;
    height: 24px;
    background: #d1d5db;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    transition: background 0.2s;
}
.cb-toggle-label::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.2s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.cb-toggle-input:checked + .cb-toggle-label {
    background: #5e17eb;
}
.cb-toggle-input:checked + .cb-toggle-label::after {
    transform: translateX(20px);
}
.cb-toggle-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.cb-toggle-disabled .cb-toggle-label {
    cursor: not-allowed;
}

/* Modal footer */
.cb-modal-footer {
    margin-top: 24px;
}
.cb-btn-save {
    width: 100%;
    background: #5e17eb;
    color: #fff;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}
.cb-btn-save:hover {
    background: #4c0fbd;
}

/* Mobile */
@media (max-width: 768px) {
    .cb-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 20px 24px;
        gap: 16px;
    }
    .cb-text {
        width: 100%;
    }
    .cb-actions {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    .cb-btn-accept-all,
    .cb-btn-necessary {
        width: 100%;
        text-align: center;
    }
    .cb-btn-manage {
        align-self: center;
    }
    .cb-modal {
        border-radius: 16px;
        padding: 24px 20px;
    }
}

/* ==========================================================================
   Section 60 — GDPR Page (.gdpr-*)
   ========================================================================== */

/* Hero */
.gdpr-hero {
    background: linear-gradient(135deg, #f3eeff 0%, #e8f0fe 100%);
    padding: 72px 0 56px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}
.gdpr-hero-badge {
    display: inline-block;
    background: #e0d4fc;
    color: #5e17eb;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 16px;
}
.gdpr-hero-title {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 800;
    color: #111827;
    margin: 0 0 16px;
    line-height: 1.15;
}
.gdpr-updated-tag {
    font-size: 14px;
    color: #6b7280;
}

/* Two-column layout */
.gdpr-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    padding: 56px 0;
    align-items: start;
}

/* Table of Contents */
.gdpr-toc {
    position: sticky;
    top: 88px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
}
.gdpr-toc-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9ca3af;
    margin: 0 0 14px;
}
.gdpr-toc ol {
    margin: 0;
    padding-left: 18px;
}
.gdpr-toc li {
    margin-bottom: 8px;
    line-height: 1.4;
}
.gdpr-toc-link {
    font-size: 13.5px;
    color: #374151;
    text-decoration: none;
    transition: color 0.15s;
}
.gdpr-toc-link:hover,
.gdpr-toc-link.active {
    color: #5e17eb;
    font-weight: 600;
}

/* Content area */
.gdpr-content {
    min-width: 0;
}

/* Sections */
.gdpr-section {
    margin-bottom: 52px;
    padding-bottom: 52px;
    border-bottom: 1px solid #f3f4f6;
}
.gdpr-section:last-of-type {
    border-bottom: none;
}
.gdpr-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px;
}
.gdpr-section p {
    font-size: 15px;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 14px;
}
.gdpr-section ul {
    margin: 0 0 14px 0;
    padding-left: 20px;
}
.gdpr-section ul li {
    font-size: 15px;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 10px;
}
.gdpr-section a {
    color: #5e17eb;
    text-decoration: none;
}
.gdpr-section a:hover {
    text-decoration: underline;
}

/* Authority box */
.gdpr-authority-box {
    background: #f3eeff;
    border-left: 4px solid #5e17eb;
    border-radius: 0 10px 10px 0;
    padding: 18px 20px;
    margin: 16px 0;
}
.gdpr-authority-box p {
    margin-bottom: 6px !important;
}
.gdpr-authority-box p:last-child {
    margin-bottom: 0 !important;
}

/* DPO Contact box */
.gdpr-contact-box {
    background: linear-gradient(135deg, #f3eeff 0%, #e8f0fe 100%);
    border: 1px solid #d8c4f9;
    border-radius: 16px;
    padding: 28px 28px 24px;
    margin-top: 16px;
}
.gdpr-contact-box p {
    margin-bottom: 8px !important;
}
.gdpr-contact-box p:last-child {
    margin-bottom: 0 !important;
}
.gdpr-contact-note {
    font-size: 13.5px !important;
    color: #6b7280 !important;
    margin-top: 14px !important;
    padding-top: 14px;
    border-top: 1px solid #d8c4f9;
}

/* Mobile */
@media (max-width: 768px) {
    .gdpr-hero {
        padding: 52px 0 40px;
    }
    .gdpr-layout {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 0;
    }
    .gdpr-toc {
        position: static;
    }
}

/* ==========================================================================
   Section 61 — Refund Policy Page (.rp-*)
   ========================================================================== */

/* Hero */
.rp-hero {
    background: linear-gradient(135deg, #f3eeff 0%, #e8f0fe 100%);
    padding: 72px 0 56px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}
.rp-hero-badge {
    display: inline-block;
    background: #e0d4fc;
    color: #5e17eb;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 16px;
}
.rp-hero-title {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 800;
    color: #111827;
    margin: 0 0 16px;
    line-height: 1.15;
}
.rp-updated-tag {
    font-size: 14px;
    color: #6b7280;
}

/* Two-column layout */
.rp-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    padding: 56px 0;
    align-items: start;
}

/* Table of Contents */
.rp-toc {
    position: sticky;
    top: 88px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
}
.rp-toc-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9ca3af;
    margin: 0 0 14px;
}
.rp-toc ol {
    margin: 0;
    padding-left: 18px;
}
.rp-toc li {
    margin-bottom: 8px;
    line-height: 1.4;
}
.rp-toc-link {
    font-size: 13.5px;
    color: #374151;
    text-decoration: none;
    transition: color 0.15s;
}
.rp-toc-link:hover,
.rp-toc-link.active {
    color: #5e17eb;
    font-weight: 600;
}

/* Content area */
.rp-content {
    min-width: 0;
}

/* Sections */
.rp-section {
    margin-bottom: 52px;
    padding-bottom: 52px;
    border-bottom: 1px solid #f3f4f6;
}
.rp-section:last-of-type {
    border-bottom: none;
}
.rp-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px;
}
.rp-section p {
    font-size: 15px;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 14px;
}
.rp-section ul {
    margin: 0 0 14px 0;
    padding-left: 20px;
}
.rp-section ul li {
    font-size: 15px;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 10px;
}
.rp-section a {
    color: #5e17eb;
    text-decoration: none;
}
.rp-section a:hover {
    text-decoration: underline;
}

/* Summary box */
.rp-summary-box {
    background: #f3eeff;
    border-left: 4px solid #5e17eb;
    border-radius: 0 10px 10px 0;
    padding: 18px 20px;
    margin: 16px 0;
}
.rp-summary-box p {
    margin-bottom: 0 !important;
}

/* Contact box */
.rp-contact-box {
    background: linear-gradient(135deg, #f3eeff 0%, #e8f0fe 100%);
    border: 1px solid #d8c4f9;
    border-radius: 16px;
    padding: 28px 28px 24px;
    margin-top: 16px;
}
.rp-contact-box p {
    margin-bottom: 8px !important;
}
.rp-contact-box p:last-child {
    margin-bottom: 0 !important;
}
.rp-contact-note {
    font-size: 13.5px !important;
    color: #6b7280 !important;
    margin-top: 14px !important;
    padding-top: 14px;
    border-top: 1px solid #d8c4f9;
}

/* Mobile */
@media (max-width: 768px) {
    .rp-hero {
        padding: 52px 0 40px;
    }
    .rp-layout {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 0;
    }
    .rp-toc {
        position: static;
    }
}

/* ==========================================================================
   63. PRICING PAGE (.pp-*)
   ========================================================================== */

/* --- Hero --- */
.pp-hero {
    padding: 120px 0 80px;
    background: var(--gradient-hero);
    text-align: center;
}
.pp-hero-inner {
    max-width: 760px;
    margin: 0 auto;
}
.pp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 999px;
    padding: 6px 18px;
    margin-bottom: 24px;
}
.pp-hero-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 900;
    color: var(--color-text-primary);
    line-height: 1.15;
    margin-bottom: 20px;
}
.pp-hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* --- Pricing Cards Section --- */
.pp-cards-section {
    background: var(--color-bg);
    padding: 0 0 var(--section-py);
}
.pp-cards-section .pricing-grid {
    margin-top: 0;
    padding-top: 48px;
}

/* --- Feature Comparison Table --- */
.pp-comparison {
    background: var(--color-surface);
    padding: var(--section-py) 0;
}
.pp-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-top: 40px;
}
.pp-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    background: #fff;
    font-size: 14.5px;
    color: var(--color-text-primary);
}
.pp-table thead th {
    padding: 16px 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    background: var(--color-bg);
    border-bottom: 2px solid var(--color-border);
    text-align: center;
    white-space: nowrap;
}
.pp-table thead th.pp-feature-col {
    text-align: left;
    min-width: 220px;
}
.pp-table tbody td {
    padding: 13px 20px;
    border-bottom: 1px solid var(--color-border);
    text-align: center;
    vertical-align: middle;
    color: var(--color-text-secondary);
}
.pp-table tbody td:first-child {
    text-align: left;
    color: var(--color-text-primary);
    font-size: 14px;
}
.pp-table tbody tr:last-child td {
    border-bottom: none;
}
.pp-table tbody tr:hover td {
    background: #faf8ff;
}
.pp-cat-row td {
    background: #f3f4f6 !important;
    font-weight: 700;
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--color-text-muted) !important;
    padding: 10px 20px !important;
}
.pp-highlight-col {
    background: rgba(94, 23, 235, 0.05) !important;
}
.pp-table thead th.pp-highlight-col {
    background: rgba(94, 23, 235, 0.08) !important;
    color: var(--color-primary) !important;
}
.pp-check {
    color: #16a34a;
    font-size: 15px;
}
.pp-cross {
    color: #e91e63;
    font-size: 15px;
}
.pp-addon-tag {
    display: inline-block;
    background: rgba(94, 23, 235, 0.1);
    color: var(--color-primary);
    font-size: 11.5px;
    font-weight: 600;
    border-radius: 100px;
    padding: 2px 10px;
    white-space: nowrap;
}

/* --- Add-Ons --- */
.pp-addons {
    background: var(--color-bg);
    padding: var(--section-py) 0;
}
.pp-addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.pp-addon-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 28px 24px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}
.pp-addon-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.pp-addon-icon {
    width: 48px;
    height: 48px;
    background: var(--color-primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 20px;
    color: var(--color-primary);
}
.pp-addon-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}
.pp-addon-desc {
    font-size: 13.5px;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 14px;
}
.pp-addon-price {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--color-primary);
}

/* --- WhatsApp Conversation Pricing --- */
.pp-wa-pricing {
    background: var(--color-surface);
    padding: var(--section-py) 0;
}
.pp-wa-intro {
    max-width: 720px;
    margin: 0 auto 40px;
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.75;
    text-align: center;
}
.pp-wa-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}
.pp-wa-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
}
.pp-wa-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
}
.pp-wa-icon-marketing {
    background: #fff3e0;
    color: #e65100;
}
.pp-wa-icon-utility {
    background: #e8f5e9;
    color: #2e7d32;
}
.pp-wa-icon-auth {
    background: #e3f2fd;
    color: #1565c0;
}
.pp-wa-card-type {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}
.pp-wa-card-desc {
    font-size: 13.5px;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 14px;
}
.pp-wa-card-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
}
.pp-wa-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fdf8ff;
    border: 1px solid rgba(94, 23, 235, 0.2);
    border-radius: 12px;
    padding: 20px 24px;
    font-size: 13.5px;
    color: var(--color-text-secondary);
    line-height: 1.65;
}
.pp-wa-note > i {
    color: var(--color-primary);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}
.pp-wa-note a {
    color: var(--color-primary);
    font-weight: 600;
}
.pp-wa-note a:hover {
    text-decoration: underline;
}

/* --- Security --- */
.pp-security {
    background: var(--color-bg);
    padding: var(--section-py) 0;
}
.pp-security-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}
.pp-security-title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--color-text-primary);
    line-height: 1.3;
    margin-bottom: 18px;
}
.pp-security-desc {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.75;
    margin-bottom: 28px;
}
.pp-security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.pp-security-item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 20px;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
}
.pp-security-item:hover {
    box-shadow: 0 6px 24px rgba(94, 23, 235, 0.1);
    transform: translateY(-2px);
}
.pp-security-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    margin-bottom: 14px;
}
.pp-security-label {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 4px;
}
.pp-security-text {
    font-size: 12.5px;
    color: var(--color-text-muted);
    line-height: 1.55;
}

/* --- FAQ override for pricing page bg --- */
.pp-faq {
    background: var(--color-surface);
}

/* Final CTA reuses .feat-cta-banner (defined globally in style.css ~line 3754) */

/* --- Responsive: 1024px --- */
@media (max-width: 1024px) {
    .pp-addons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pp-security-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* --- Responsive: 768px --- */
@media (max-width: 768px) {
    .pp-hero {
        padding: 72px 0 48px;
    }
    .pp-hero-title {
        font-size: 1.75rem;
    }
    .pp-addons-grid {
        grid-template-columns: 1fr;
    }
    .pp-wa-cards {
        grid-template-columns: 1fr;
    }
    .pp-security-grid {
        grid-template-columns: 1fr;
    }
    .pp-cta {
        padding: 72px 0;
    }
    .pp-cta-orb-1 {
        width: 240px;
        height: 240px;
    }
    .pp-cta-orb-2 {
        width: 180px;
        height: 180px;
    }
}

.tos-subheading {
    font-size: 18px !important;
    font-weight: 700;
    color: var(--color-text);
    margin: 10px 0 8px 0px !important;
}

.tos-sub-subheading {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin: 10px 0 8px 0px;
}
