*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand colors extracted from logo */
    --magenta: #e91e8c;
    --pink: #f53889;
    --purple: #7c3aed;
    --violet: #5c2be0;
    --blue: #2563eb;
    --sky: #0ea5e9;
    --teal: #06b6d4;
    --cyan: #22d3ee;
    --orange: #f97316;
    --amber: #fbbf24;
    --yellow: #fde047;

    /* Light theme */
    --bg: #f8f7ff;
    --bg2: #ffffff;
    --bg3: #f1f0fa;
    --border: rgba(100, 80, 200, .1);
    --border2: rgba(100, 80, 200, .18);
    --text-h: #0f0a1e;
    --text: #2d2545;
    --muted: #7168a0;
    --muted2: #a89fc8;

    /* Gradients */
    --grad-brand: linear-gradient(135deg, var(--magenta) 0%, var(--violet) 35%, var(--blue) 65%, var(--teal) 100%);
    --grad-warm: linear-gradient(135deg, var(--pink) 0%, var(--orange) 50%, var(--amber) 100%);
    --grad-cool: linear-gradient(135deg, var(--violet) 0%, var(--sky) 100%);
    --grad-full: linear-gradient(90deg, var(--magenta), var(--orange), var(--yellow), var(--teal), var(--blue), var(--violet));

    /* Fonts */
    --font-h: 'Clash Display', 'Bricolage Grotesque', sans-serif;
    --font-b: 'Bricolage Grotesque', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(80, 40, 180, .08), 0 1px 2px rgba(80, 40, 180, .04);
    --shadow-md: 0 4px 20px rgba(80, 40, 180, .1), 0 2px 8px rgba(80, 40, 180, .06);
    --shadow-lg: 0 16px 48px rgba(80, 40, 180, .14), 0 4px 16px rgba(80, 40, 180, .08);
    --shadow-xl: 0 32px 80px rgba(80, 40, 180, .16);
}

html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #f0eef8;
}

::-webkit-scrollbar-thumb {
    background: var(--grad-brand);
    border-radius: 10px;
}

/* ─── UTILS ─── */
.grad-text {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-h);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--violet);
    background: rgba(124, 58, 237, .08);
    border: 1px solid rgba(124, 58, 237, .2);
    border-radius: 50px;
    padding: 6px 14px;
    margin-bottom: 18px;
}

.section-label .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--violet);
}

.section-title {
    font-family: var(--font-h);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.025em;
    color: var(--text-h);
    margin-bottom: 18px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 520px;
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 {
    transition-delay: .1s;
}

.reveal-delay-2 {
    transition-delay: .2s;
}

.reveal-delay-3 {
    transition-delay: .3s;
}

.reveal-delay-4 {
    transition-delay: .4s;
}

.reveal-delay-5 {
    transition-delay: .5s;
}

/* ─── NAVBAR ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 68px;
    background: rgba(248, 247, 255, .88);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s;
}

nav.scrolled {
    box-shadow: 0 4px 32px rgba(80, 40, 180, .1);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

.logo-icon {
    height: 40px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-wordmark {
    font-family: var(--font-h);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-h);
    letter-spacing: -.01em;
}

.logo-wordmark span {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-family: var(--font-b);
    font-weight: 500;
    font-size: .9rem;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--grad-brand);
    transition: width .3s;
}

.nav-links a:hover {
    color: var(--text-h);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-ghost {
    font-family: var(--font-b);
    font-weight: 600;
    font-size: .88rem;
    padding: 9px 20px;
    border-radius: 50px;
    border: 1.5px solid var(--border2);
    background: transparent;
    color: var(--text);
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-ghost:hover {
    border-color: var(--violet);
    color: var(--violet);
    background: rgba(124, 58, 237, .05);
}

.btn-cta {
    font-family: var(--font-b);
    font-weight: 700;
    font-size: .88rem;
    padding: 10px 22px;
    border-radius: 50px;
    background: var(--grad-brand);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: transform .25s, box-shadow .25s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 4px 20px rgba(124, 58, 237, .3);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(124, 58, 237, .4);
}

.btn-cta svg {
    width: 16px;
    height: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-h);
    border-radius: 2px;
    transition: all .3s;
}

.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);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(248, 247, 255, .97);
    backdrop-filter: blur(24px);
    padding: 20px 5%;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    z-index: 999;
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-menu a {
    font-family: var(--font-h);
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-h);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    transition: color .2s;
}

.mobile-menu a:hover {
    color: var(--violet);
}

/* ─── HERO SLIDER ─── */
.hero {
    margin-top: 68px;
    position: relative;
    overflow: hidden;
    /* min-height: calc(100vh - 68px); */
}

/* animated mesh bg */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--bg);
    overflow: hidden;
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .22;
    animation: blobFloat 12s ease-in-out infinite alternate;
}

.mb1 {
    width: 600px;
    height: 600px;
    top: -150px;
    right: -100px;
    background: radial-gradient(circle, var(--magenta), var(--violet));
}

.mb2 {
    width: 500px;
    height: 500px;
    bottom: -200px;
    left: -100px;
    background: radial-gradient(circle, var(--sky), var(--teal));
    animation-delay: -5s;
}

.mb3 {
    width: 350px;
    height: 350px;
    top: 40%;
    left: 30%;
    background: radial-gradient(circle, var(--amber), var(--orange));
    animation-delay: -8s;
    opacity: .13;
}

/* dot grid */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(100, 80, 200, .12) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.hero-track {
    display: flex;
    /* height: calc(100vh - 68px);
    min-height: 600px; */
    width: 100%;
    transition: transform .9s cubic-bezier(.77, 0, .175, 1);
    position: relative;
    z-index: 2;
}

.hero-slide {

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    position: relative;
    gap: 50px;
}

.hero-content {
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-h);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 28px;
    animation: fadeUp .55s .15s both;
}

.badge-purple {
    background: rgba(124, 58, 237, .1);
    border: 1px solid rgba(124, 58, 237, .25);
    color: var(--violet);
}

.badge-pink {
    background: rgba(233, 30, 140, .1);
    border: 1px solid rgba(233, 30, 140, .25);
    color: var(--magenta);
}

.badge-teal {
    background: rgba(6, 182, 212, .1);
    border: 1px solid rgba(6, 182, 212, .25);
    color: var(--teal);
}

.hero-h1 {
    font-family: var(--font-h);
    font-size: clamp(2.6rem, 5.5vw, 3rem);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -.03em;
    color: var(--text-h);
    margin-bottom: 22px;
    animation: fadeUp .55s .28s both;
}

.hero-p {
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 40px;
    max-width: 460px;
    animation: fadeUp .55s .42s both;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp .55s .55s both;
}

/* hero visual */
.hero-visual {
    flex: 1;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    max-width: 50%;
    position: relative;
}

/* ── Chat UI mockup ── */
.chat-mockup {
    background: none;
    border-radius: 24px;
    /* box-shadow: var(--shadow-xl); */
    /* width: min(751px, 18%); */
    overflow: hidden;
    /* border: 1px solid var(--border); */
    animation: floatUp 6s ease-in-out infinite;
}



.chat-top {
    background: var(--grad-brand);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: .9rem;
    flex-shrink: 0;
}

.chat-top-info p {
    color: #fff;
    font-weight: 600;
    font-size: .9rem;
}

.chat-top-info span {
    color: rgba(255, 255, 255, .75);
    font-size: .75rem;
}

.chat-top-actions {
    margin-left: auto;
    display: flex;
    gap: 10px;
}

.chat-top-actions button {
    background: rgba(255, 255, 255, .2);
    border: none;
    color: #fff;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    cursor: pointer;
    font-size: .85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.chat-top-actions button:hover {
    background: rgba(255, 255, 255, .35);
}

.chat-body {
    padding: 16px 16px 0;
    background: #f8f7ff;
    min-height: 260px;
}

.chat-msg {
    display: flex;
    gap: 9px;
    margin-bottom: 14px;
}

.chat-msg.me {
    flex-direction: row-reverse;
}

.msg-av {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: .7rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.msg-bubble {
    max-width: 72%;
    padding: 10px 14px;
    border-radius: 18px;
    font-size: .82rem;
    line-height: 1.5;
    position: relative;
}

.msg-bubble.them {
    background: #fff;
    color: var(--text);
    border-radius: 4px 18px 18px 18px;
    box-shadow: 0 1px 4px rgba(80, 40, 180, .08);
}

.msg-bubble.me {
    background: var(--grad-brand);
    color: #fff;
    border-radius: 18px 4px 18px 18px;
}

.msg-time {
    font-size: .68rem;
    opacity: .55;
    margin-top: 4px;
    display: block;
    text-align: right;
}

.pin-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .68rem;
    background: rgba(251, 191, 36, .18);
    color: #b45309;
    border-radius: 4px;
    padding: 2px 6px;
    margin-bottom: 6px;
}

.chat-bottom {
    background: #fff;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--border);
}

.chat-input {
    flex: 1;
    background: #f1f0fa;
    border: none;
    border-radius: 50px;
    padding: 9px 16px;
    font-size: .82rem;
    color: var(--text);
    outline: none;
    font-family: var(--font-b);
}

.chat-send {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--grad-brand);
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-icons {
    display: flex;
    gap: 6px;
}

.chat-icons button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    font-size: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.chat-icons button:hover {
    background: var(--bg3);
    color: var(--violet);
}

/* floating badges on hero */
.float-badge {
    position: absolute;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: var(--shadow-md);
    font-size: .8rem;
    white-space: nowrap;
}

.fb1 {
    top: 14%;
    right: -20px;
    animation: floatBadge 4s ease-in-out infinite;
}

.fb2 {
    bottom: 22%;
    left: -30px;
    animation: floatBadge 4.5s ease-in-out infinite;
    animation-delay: -2s;
}

.fb3 {
    bottom: 45%;
    right: -35px;
    animation: floatBadge 5s ease-in-out infinite;
    animation-delay: -3.5s;
}

.fb-icon {
    font-size: 1.1rem;
    margin-right: 7px;
}

/* hero slider controls */
.hero-dots {
    position: absolute;
    bottom: 32px;
    left: 7%;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(100, 80, 200, .25);
    border: none;
    cursor: pointer;
    transition: all .3s;
}

.hero-dot.active {
    width: 28px;
    border-radius: 4px;
    background: var(--grad-brand);
}

.hero-arrow-row {
    position: absolute;
    bottom: 22px;
    right: 7%;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border2);
    color: var(--text);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
    box-shadow: var(--shadow-sm);
}

.hero-arrow:hover {
    background: var(--grad-brand);
    color: #fff;
    border-color: transparent;
}

/* ─── PRODUCT FEATURES ─── */
.features-section {
    padding: 110px 7%;
}

.features-intro {
    text-align: center;
    margin-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    cursor: default;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity .3s;
}

.fc-pink::before {
    background: linear-gradient(90deg, var(--magenta), var(--pink));
}

.fc-blue::before {
    background: linear-gradient(90deg, var(--blue), var(--sky));
}

.fc-teal::before {
    background: linear-gradient(90deg, var(--teal), var(--cyan));
}

.fc-purple::before {
    background: linear-gradient(90deg, var(--violet), var(--purple));
}

.fc-orange::before {
    background: linear-gradient(90deg, var(--orange), var(--amber));
}

.fc-grad::before {
    background: var(--grad-brand);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.fc-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 22px;
    transition: transform .3s;
}

.feature-card:hover .fc-icon {
    transform: scale(1.1) rotate(-5deg);
}

.fc-p {
    background: rgba(233, 30, 140, .1);
}

.fc-b {
    background: rgba(37, 99, 235, .1);
}

.fc-t {
    background: rgba(6, 182, 212, .1);
}

.fc-v {
    background: rgba(124, 58, 237, .1);
}

.fc-o {
    background: rgba(249, 115, 22, .1);
}

.fc-g {
    background: rgba(100, 80, 200, .08);
}

.feature-card h3 {
    font-family: var(--font-h);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-h);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ─── LIVE CALLING SECTION ─── */
.calling-section {
    padding: 110px 7%;
    background: linear-gradient(135deg, #fdfcff 0%, #f0eeff 50%, #e8f4ff 100%);
    position: relative;
    overflow: hidden;
}

.calling-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, .12), transparent 70%);
    pointer-events: none;
}

.calling-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.calling-visual {
    position: relative;
}

/* video call UI */
.vcall-mockup {
    background: #1a1030;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.vcall-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    background: #0d0820;
}

.vcall-tile {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.vcall-tile:nth-child(1) {
    background: linear-gradient(135deg, #1a0d2e, #2d1b69);
}

.vcall-tile:nth-child(2) {
    background: linear-gradient(135deg, #0d1b2a, #1a3a5c);
}

.vcall-tile:nth-child(3) {
    background: linear-gradient(135deg, #0d2818, #1a5c3a);
}

.vcall-tile:nth-child(4) {
    background: linear-gradient(135deg, #2a0d1a, #5c1a3a);
}

.vcall-av {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .9);
    border: 2px solid rgba(255, 255, 255, .2);
}

.vcall-name {
    position: absolute;
    bottom: 8px;
    left: 10px;
    font-size: .7rem;
    color: rgba(255, 255, 255, .8);
    background: rgba(0, 0, 0, .4);
    padding: 2px 8px;
    border-radius: 4px;
}

.vcall-speaking {
    border: 2px solid var(--teal);
    animation: speaking .8s ease-in-out infinite alternate;
}

.vcall-controls {
    background: #0d0820;
    padding: 16px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.vctrl {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: transform .2s;
}

.vctrl:hover {
    transform: scale(1.1);
}

.vctrl-mute {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.vctrl-cam {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.vctrl-screen {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.vctrl-end {
    background: #ef4444;
    color: #fff;
}

/* small call badge */
.call-badge {
    position: absolute;
    top: -16px;
    right: -20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floatBadge 4s ease-in-out infinite;
}

.call-badge-av {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--grad-cool);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
}

.call-badge p {
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-h);
}

.call-badge span {
    font-size: .7rem;
    color: var(--muted);
}

.call-badge .live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: blink 1.2s ease-in-out infinite;
    margin-left: auto;
}

/* ─── MULTICOMPANY ─── */
.multicomp-section {
    padding: 110px 7%;
}

.multicomp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.workspace-mockup {
    background: #fff;
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}

.ws-sidebar {
    display: flex;
}

.ws-company-strip {
    width: 60px;
    background: var(--text-h);
    padding: 14px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.ws-co-av {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s;
    position: relative;
}

.ws-co-av:hover {
    transform: scale(1.08);
}

.ws-co-av.active::after {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    border-radius: 0 3px 3px 0;
    background: #fff;
}

.ws-main {
    flex: 1;
}

.ws-channels {
    background: #f1f0fa;
    padding: 14px;
    border-right: 1px solid var(--border);
    min-height: 280px;
    width: 140px;
}

.ws-channels h4 {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted2);
    margin-bottom: 10px;
}

.ws-ch {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 8px;
    border-radius: 8px;
    font-size: .8rem;
    color: var(--muted);
    cursor: pointer;
    transition: all .2s;
    margin-bottom: 3px;
}

.ws-ch:hover,
.ws-ch.active {
    background: #fff;
    color: var(--text-h);
}

.ws-ch.active {
    font-weight: 600;
}

.ws-content {
    flex: 1;
    padding: 14px;
}

.ws-msg-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ws-msg {
    display: flex;
    gap: 9px;
}

.ws-msg-av {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: .65rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ws-msg-body p {
    font-size: .75rem;
    font-weight: 600;
    color: var(--text-h);
}

.ws-msg-body span {
    font-size: .73rem;
    color: var(--muted);
}

/* ─── PIN + SCHEDULE MESSAGE ─── */
.pinschedule-section {
    padding: 110px 7%;
    background: linear-gradient(180deg, var(--bg) 0%, rgba(240, 238, 255, .6) 50%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
}

.pinschedule-section::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(233, 30, 140, .08), transparent 70%);
    pointer-events: none;
}

.ps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.ps-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.ps-card-head {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border);
}

.ps-head-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.ps-head-icon.pin-bg {
    background: rgba(251, 191, 36, .15);
}

.ps-head-icon.sched-bg {
    background: rgba(37, 99, 235, .12);
}

.ps-card-head h3 {
    font-family: var(--font-h);
    font-size: .95rem;
    font-weight: 700;
    color: var(--text-h);
}

.ps-card-body {
    padding: 16px 20px;
}

.pin-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.pin-item:last-child {
    border: none;
}

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

.pin-text {
    flex: 1;
    font-size: .82rem;
}

.pin-text p {
    font-weight: 600;
    color: var(--text-h);
}

.pin-text span {
    color: var(--muted);
    font-size: .75rem;
}

.pin-unpin {
    background: none;
    border: none;
    color: var(--muted2);
    cursor: pointer;
    font-size: .8rem;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all .2s;
}

.pin-unpin:hover {
    background: rgba(233, 30, 140, .08);
    color: var(--magenta);
}

.sched-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.sched-item:last-child {
    border: none;
}

.sched-time {
    background: rgba(37, 99, 235, .1);
    color: var(--blue);
    border-radius: 8px;
    padding: 4px 10px;
    font-size: .72rem;
    font-weight: 700;
    white-space: nowrap;
}

.sched-text {
    flex: 1;
    font-size: .82rem;
    color: var(--text);
}

.sched-cancel {
    background: none;
    border: none;
    color: var(--muted2);
    cursor: pointer;
    font-size: .8rem;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all .2s;
}

.sched-cancel:hover {
    background: rgba(239, 68, 68, .08);
    color: #ef4444;
}

/* ─── FILE MEDIA SECTION ─── */
.files-section {
    padding: 110px 7%;
}

.files-intro {
    text-align: center;
    margin-bottom: 72px;
}

.files-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.file-tab {
    padding: 9px 20px;
    border-radius: 50px;
    background: #fff;
    border: 1.5px solid var(--border2);
    font-family: var(--font-b);
    font-weight: 600;
    font-size: .85rem;
    color: var(--muted);
    cursor: pointer;
    transition: all .25s;
}

.file-tab.active,
.file-tab:hover {
    background: var(--grad-brand);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(124, 58, 237, .3);
}

.files-panel {
    display: none;
}

.files-panel.active {
    display: block;
}

.files-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.files-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.files-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* image thumb */
.img-thumb {
    background: var(--bg3);
    border-radius: 14px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform .25s, box-shadow .25s;
    cursor: pointer;
    padding: 4px;
    ;
}

.img-thumb:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-md);
}

/* video thumb */
.vid-thumb {
    background: linear-gradient(135deg, #1a1030, #2d1b69);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform .25s;
}

.vid-thumb:hover {
    transform: scale(1.04);
}

.vid-play {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.vid-play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.vid-play p {
    color: rgba(255, 255, 255, .8);
    font-size: .75rem;
}

.vid-dur {
    position: absolute;
    bottom: 8px;
    right: 10px;
    background: rgba(0, 0, 0, .5);
    color: #fff;
    font-size: .7rem;
    padding: 2px 7px;
    border-radius: 4px;
}

.vid-thumb-img {
    height: 120px;
}

/* audio item */
.audio-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all .25s;
    cursor: pointer;
}

.audio-item:hover {
    border-color: var(--violet);
    box-shadow: var(--shadow-sm);
}

.audio-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--magenta), var(--violet));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.audio-info {
    flex: 1;
}

.audio-info p {
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-h);
}

.audio-info span {
    font-size: .75rem;
    color: var(--muted);
}

.audio-waveform {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 6px 0;
}

.audio-waveform span {
    display: inline-block;
    width: 3px;
    border-radius: 2px;
    background: var(--grad-brand);
    animation: wave 1.2s ease-in-out infinite alternate;
}

.audio-dur {
    font-size: .72rem;
    color: var(--muted);
    white-space: nowrap;
}

/* link item */
.link-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all .25s;
    cursor: pointer;
    text-decoration: none;
}

.link-item:hover {
    border-color: var(--sky);
    box-shadow: var(--shadow-sm);
}

.link-favicon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.link-info {
    flex: 1;
}

.link-info p {
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-h);
}

.link-info span {
    font-size: .75rem;
    color: var(--muted);
}

.link-arrow {
    color: var(--muted2);
    font-size: .9rem;
}

/* doc item */
.doc-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all .25s;
    cursor: pointer;
}

.doc-item:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-sm);
}

.doc-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.doc-info {
    flex: 1;
}

.doc-info p {
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-h);
}

.doc-info span {
    font-size: .75rem;
    color: var(--muted);
}

.doc-size {
    font-size: .72rem;
    color: var(--muted2);
}

/* ─── TESTIMONIALS ─── */
.testimonials {
    padding: 110px 7%;
    background: var(--text-h);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(200, 180, 255, .06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.testimonials .section-label {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .7);
}

.testimonials .section-title {
    color: #fff;
}

.testimonials .section-sub {
    color: rgba(255, 255, 255, .55);
}

.testi-track-wrap {
    overflow: hidden;
}

.testi-track {
    display: flex;
    gap: 24px;
    transition: transform .7s cubic-bezier(.77, 0, .175, 1);
}

.testi-card {
    flex: 0 0 calc(33.333% - 16px);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 22px;
    padding: 32px;
    transition: all .35s;
}

.testi-card:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-6px);
}

.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.testi-stars span {
    color: var(--amber);
    font-size: .95rem;
}

.testi-quote {
    font-size: .92rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .72);
    margin-bottom: 24px;
    position: relative;
    padding-left: 16px;
}

.testi-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -4px;
    font-size: 1.8rem;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    color: #fff;
    flex-shrink: 0;
}

.testi-name {
    font-weight: 600;
    color: #fff;
    font-size: .9rem;
}

.testi-role {
    font-size: .75rem;
    color: rgba(255, 255, 255, .45);
}

.testi-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 48px;
    flex-wrap: wrap;
    gap: 20px;
}

.testi-dots {
    display: flex;
    gap: 8px;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    border: none;
    cursor: pointer;
    transition: all .3s;
}

.t-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--grad-brand);
}

.testi-arrows {
    display: flex;
    gap: 10px;
}

.t-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
}

.t-arrow:hover {
    background: rgba(255, 255, 255, .2);
}

/* ─── FOOTER ─── */
footer {
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 80px 7% 36px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-full);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-desc {
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 260px;
}

.social-row {
    display: flex;
    gap: 9px;
}

.soc-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--bg3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    cursor: pointer;
    text-decoration: none;
    color: var(--muted);
    transition: all .25s;
}

.soc-btn:hover {
    background: var(--grad-brand);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: var(--font-h);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-h);
    margin-bottom: 18px;
}

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

.footer-col ul li a {
    color: var(--muted);
    font-size: .88rem;
    text-decoration: none;
    transition: color .2s;
}

.footer-col ul li a:hover {
    color: var(--violet);
}

.nl-form {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.nl-form input {
    flex: 1;
    background: var(--bg3);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 10px 16px;
    color: var(--text);
    font-family: var(--font-b);
    font-size: .85rem;
    outline: none;
    transition: border-color .25s;
}

.nl-form input:focus {
    border-color: var(--violet);
}

.nl-form input::placeholder {
    color: var(--muted2);
}

.nl-form button {
    padding: 10px 18px;
    border-radius: 50px;
    background: var(--grad-brand);
    border: none;
    color: #fff;
    font-family: var(--font-b);
    font-weight: 700;
    font-size: .82rem;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .2s, box-shadow .2s;
}

.nl-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, .3);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: var(--muted2);
    font-size: .83rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--muted2);
    font-size: .83rem;
    text-decoration: none;
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--text-h);
}

/* ─── KEYFRAMES ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, -25px) scale(1.08);
    }
}

@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes speaking {
    from {
        box-shadow: 0 0 0 0 rgba(6, 182, 212, .6);
    }

    to {
        box-shadow: 0 0 0 8px rgba(6, 182, 212, 0);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

@keyframes wave {
    from {
        height: 4px;
    }

    to {
        height: 18px;
    }
}

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

    .files-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:900px) {
    .nav-links {
        display: none !important;
    }

    .hero-visual {
        max-width: 100%;
        padding-bottom: 0;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .calling-grid,
    .multicomp-grid,
    .ps-grid {
        grid-template-columns: 1fr;
    }

    .hero-track {
        flex-direction: column;
        width: 100%;
        height: auto;
    }

    .hero-slide {
        /* min-height: calc(100vh - 68px); */
        flex-direction: column;
        padding: 40px 5% 0;
        text-align: center;
    }

    .hero-h1 {
        font-size: clamp(2rem, 6vw, 3.2rem);
    }

    .hero-p {
        margin: 0 auto 32px;
    }

    .hero-btns {
        justify-content: center;
    }

    .testi-card {
        flex-basis: calc(100% - 0px);
    }
}

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

    .files-grid-4,
    .files-grid-2 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-arrow-row {
        display: none;
    }

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

    .fc-icon {
        display: block;
        margin: auto;
    }
}

.hero-slide {

    min-width: 100%;

    flex-shrink: 1;

}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pink: #e91e8c;
    --violet: #7c3aed;
    --blue: #2563eb;
    --teal: #06b6d4;
    --bg: #f7f6ff;
    --white: #ffffff;
    --surface: #f1f0fa;
    --border: rgba(100, 80, 200, .12);
    --border2: rgba(100, 80, 200, .2);
    --ink: #0d0a1e;
    --ink2: #2a2545;
    --muted: #6b6490;
    --muted2: #a09abc;
    --grad: linear-gradient(135deg, #e91e8c, #7c3aed 45%, #2563eb 75%, #06b6d4);
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Plus Jakarta Sans', sans-serif;
    --shadow-sm: 0 2px 12px rgba(80, 40, 180, .08);
    --shadow: 0 6px 28px rgba(80, 40, 180, .12);
    --shadow-lg: 0 16px 48px rgba(80, 40, 180, .16);
    --radius: 16px;
    --radius-sm: 10px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--ink2);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--grad);
    border-radius: 4px;
}

/* ══════════════════════════════════════
   NAV — matches akshar-plus-v2 style
══════════════════════════════════════ */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247, 246, 255, .92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    height: 64px;
    display: flex;
    align-items: center;
    padding: 0 clamp(16px, 5%, 64px);
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
}

.nav-logo svg {
    flex-shrink: 0;
}

.nav-logo span {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: .88rem;
    font-weight: 500;
    color: var(--muted);
    transition: color .2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--ink);
}

.nav-cta {
    background: var(--grad);
    color: #fff;
    padding: 9px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .85rem;
    box-shadow: 0 4px 14px rgba(124, 58, 237, .3);
    transition: opacity .2s;
}

.nav-cta:hover {
    opacity: .88;
}

/* Subscribe Message Container */

#subscribe-message {

    margin-top: 15px;

}


/* Success Message */

.alert-success {

    background: linear-gradient(135deg, #16c47f, #38ef7d);

    color: #ffffff;

    padding: 12px 18px;

    border-radius: 8px;

    font-size: 14px;

    font-weight: 500;

    box-shadow: 0 4px 12px rgba(22, 196, 127, 0.25);

    animation: fadeSlide 0.4s ease;

}


/* Error Message */

.alert-danger {

    background: linear-gradient(135deg, #ff4b2b, #ff416c);

    color: #ffffff;

    padding: 12px 18px;

    border-radius: 8px;

    font-size: 14px;

    font-weight: 500;

    box-shadow: 0 4px 12px rgba(255, 65, 108, 0.25);

    animation: fadeSlide 0.4s ease;

}


/* Animation */

@keyframes fadeSlide {

    from {

        opacity: 0;

        transform: translateY(10px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

.calling-grid li,
.multicomp-grid li {
    align-items: start !important;
}

section.pinschedule-section.content-sec {
    padding: 20px;
}

.reveal.visible.headin-action {
    font-weight: bold;
    cursor: pointer;
    font-weight: 700;
    font-size: 30px;
    background: linear-gradient(90deg, #c026d3 0%, #7c3aed 35%, #2563eb 70%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.after-action {
    display: none;
}

.after-action.show {
    display: block;
}



.ps-grid.after-action {
    max-width: 1200px;
    margin: auto;
    line-height: 42px;
    margin-top: 0;
    padding-top: 0;
}

.ps-grid.after-action ol,
.ps-grid.after-action ul {
    padding-left: 20px;
}