/* Builder Utility Classes */
.os-pb-container-boxed {
    max-width: 1200px;
    margin: 0 auto;
}

.os-pb-container-full {
    width: 100%;
}

.os-pb-pt-sm {
    padding-top: 2rem;
}

.os-pb-pt-md {
    padding-top: 4rem;
}

.os-pb-pt-lg {
    padding-top: 8rem;
}

.os-pb-pb-sm {
    padding-bottom: 2rem;
}

.os-pb-pb-md {
    padding-bottom: 4rem;
}

.os-pb-pb-lg {
    padding-bottom: 8rem;
}

.os-pb-bg-light {
    background-color: #f8f9fa;
}

.os-pb-bg-dark {
    background-color: #1a1a1a;
    color: #ffffff;
}

.os-pb-bg-primary {
    background-color: #0d6efd;
    color: #ffffff;
}

html {
    font-size: 16px !important;
}

body.os-pb-active-page,
.os-pb-active-page .os-pb-main-content,
.os-pb-active-page .os-pb-builder,
.os-pb-section {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

:root {
    --bg-dark: #ffffff;
    --bg-panel: rgba(0, 0, 0, 0.02);
    --bg-panel-hover: rgba(0, 0, 0, 0.04);
    --border-color: rgba(0, 0, 0, 0.1);
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --accent: #6d28d9;
    --accent-glow: rgba(109, 40, 217, 0.2);
    --accent-secondary: #2563eb;

    --font-main: 'Inter', sans-serif;
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

html {
    /* scroll-behavior: smooth; removed for better scroll feel */
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #7c3aed 0%, #2563eb 100%);
    border-radius: 10px;
    border: 3px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #6d28d9 0%, #1d4ed8 100%);
}

/* Glassmorphism utility */
.glass-panel {
    background: var(--bg-panel);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

/* Typography */
h1,
h2,
h3,
h4 {
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-header {
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-align: center;
}

.section-header p {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 600px;
    text-align: center;
    line-height: 1.6;
}

/* Buttons */
.primary-btn,
.secondary-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    cursor: pointer;
    text-align: center;
    position: relative;
    top: 0;
}

.primary-btn {
    background: linear-gradient(135deg, #6d28d9, #3b82f6);
    background-size: 200% 200%;
    color: #ffffff !important;
    border: none;
    box-shadow: 0 4px 15px rgba(109, 40, 217, 0.4);
    animation: gradient-shift 5s ease infinite;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

a.primary-btn,
button.primary-btn,
a.primary-btn:hover,
button.primary-btn:hover,
a.primary-btn:focus,
button.primary-btn:focus,
a.primary-btn:active,
button.primary-btn:active,
a.primary-btn:visited,
button.primary-btn:visited {
    color: #ffffff !important;
}

.primary-btn:hover {
    top: -2px;
    box-shadow: 0 8px 25px rgba(109, 40, 217, 0.6);
}

.primary-btn:active {
    top: 2px;
    box-shadow: 0 2px 10px rgba(109, 40, 217, 0.3);
}

.white-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    cursor: pointer;
    text-align: center;
    position: relative;
    top: 0;
    background-color: #ffffff;
    color: #0f172a;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    text-decoration: none;
}

.white-btn:hover {
    top: -2px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.white-btn:active {
    top: 2px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.btn-secondary {
    --button-color: #ffffff;
    background-color: #ffffff !important;
    color: #0f172a !important;
    box-shadow:
        inset 0px 1px 1px rgba(0, 0, 0, 0.02),
        inset 0px 2px 2px rgba(0, 0, 0, 0.02),
        0px 2px 4px rgba(0, 0, 0, 0.04),
        0px 4px 8px rgba(0, 0, 0, 0.04);
    border: solid 1px rgba(0, 0, 0, 0.08) !important;
    font-weight: 600 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-secondary::before {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.05));
    box-shadow:
        1px 1px 1px rgba(255, 255, 255, 0.8),
        -1px -1px 1px rgba(0, 0, 0, 0.05);
}

.btn-secondary::after {
    display: none;
    /* No color mask hover effect on the secondary button */
}

.btn-secondary:hover {
    background-color: #f8f9fa !important;
    border-color: rgba(0, 0, 0, 0.12) !important;
    transform: translateY(-3px);
    box-shadow:
        inset 0px 1px 1px rgba(0, 0, 0, 0.02),
        inset 0px 2px 2px rgba(0, 0, 0, 0.02),
        0px 6px 15px rgba(0, 0, 0, 0.08) !important;
}

.btn-secondary:hover::before {
    box-shadow:
        1px 1px 1px rgba(255, 255, 255, 0.8),
        -1px -1px 1px rgba(0, 0, 0, 0.08);
}

.btn-secondary:active {
    background-color: #f1f5f9 !important;
    border-color: rgba(0, 0, 0, 0.15) !important;
    transform: translateY(1px) scale(0.96);
    box-shadow: inset 0px 4px 10px rgba(0, 0, 0, 0.08) !important;
}

.btn-secondary:active::before {
    box-shadow: none;
}

/* Secondary Button Letter Animations */
.btn-secondary .btn-letter {
    color: rgba(15, 23, 42, 0.5);
    /* Semi-transparent dark slate */
    animation: letter-anim-sec 2s ease-in-out infinite;
}

@keyframes letter-anim-sec {
    50% {
        text-shadow: 0 0 3px rgba(15, 23, 42, 0.3);
        color: #0f172a;
    }
}

.btn-secondary:focus .btn-letter,
.btn-secondary:hover .btn-letter {
    animation: focused-letter-anim-sec 1s ease-in-out forwards, letter-anim-sec 1.2s ease-in-out infinite;
    animation-delay: 0s, 1s;
}

@keyframes focused-letter-anim-sec {

    0%,
    100% {
        filter: blur(0px);
    }

    50% {
        transform: scale(1.5);
        filter: blur(2px) drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.2));
    }
}

.btn-wrapper {
    position: relative;
    display: inline-block;
    z-index: 10;
}

.btn {
    --border-radius: 50px;
    --padding: 4px;
    --transition: 0.4s;
    --button-color: #101010;
    /* Dark background */
    --highlight-color-hue: 250deg;
    /* Purple hue to match theme */

    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 220px;
    height: 58px;
    padding: 0;
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;

    background-color: var(--button-color);

    box-shadow:
        inset 0px 1px 1px rgba(255, 255, 255, 0.2),
        inset 0px 2px 2px rgba(255, 255, 255, 0.15),
        inset 0px 4px 4px rgba(255, 255, 255, 0.1),
        inset 0px 8px 8px rgba(255, 255, 255, 0.05),
        inset 0px 16px 16px rgba(255, 255, 255, 0.05),
        0px -1px 1px rgba(0, 0, 0, 0.02),
        0px -2px 2px rgba(0, 0, 0, 0.03),
        0px -4px 4px rgba(0, 0, 0, 0.05),
        0px -8px 8px rgba(0, 0, 0, 0.06),
        0px -16px 16px rgba(0, 0, 0, 0.08);

    border: solid 1px #fff2;
    border-radius: var(--border-radius);
    cursor: pointer;

    transition: box-shadow var(--transition), border var(--transition), background-color var(--transition), transform var(--transition);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn::before {
    content: "";
    position: absolute;
    top: calc(0px - var(--padding));
    left: calc(0px - var(--padding));
    width: calc(100% + var(--padding) * 2);
    height: calc(100% + var(--padding) * 2);
    border-radius: calc(var(--border-radius) + var(--padding));
    pointer-events: none;
    background-image: linear-gradient(0deg, #0004, #000a);

    z-index: -1;
    transition: box-shadow var(--transition), filter var(--transition);
    box-shadow:
        0 -8px 8px -6px #0000 inset,
        0 -16px 16px -8px #00000000 inset,
        1px 1px 1px #fff2,
        2px 2px 2px #fff1,
        -1px -1px 1px #0002,
        -2px -2px 2px #0001;
}

.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    pointer-events: none;
    background-image: linear-gradient(0deg,
            #fff,
            hsl(var(--highlight-color-hue), 100%, 70%),
            hsla(var(--highlight-color-hue), 100%, 70%, 50%),
            8%,
            transparent);
    background-position: 0 0;
    opacity: 0;
    transition: opacity var(--transition), filter var(--transition);
}

.btn-letter {
    position: relative;
    display: inline-block;
    color: #fff5;
    animation: letter-anim 2s ease-in-out infinite;
    transition: color var(--transition), text-shadow var(--transition), opacity var(--transition);
}

@keyframes letter-anim {
    50% {
        text-shadow: 0 0 3px #fff8;
        color: #fff;
    }
}

.btn-svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-right: 0.5rem;
    fill: #e8e8e8;
    animation: flicker 2s linear infinite;
    animation-delay: 0.5s;
    filter: drop-shadow(0 0 2px #fff9);
    transition: fill var(--transition), filter var(--transition), opacity var(--transition);
}

@keyframes flicker {
    50% {
        opacity: 0.3;
    }
}

.txt-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 6.4em;
}

.txt-1,
.txt-2 {
    position: absolute;
    word-spacing: -1em;
    white-space: nowrap;
}

.txt-1 {
    animation: appear-anim 1s ease-in-out forwards;
}

.txt-2 {
    opacity: 0;
}

@keyframes appear-anim {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.btn:focus .txt-1,
.btn:hover .txt-1 {
    animation: opacity-anim 0.3s ease-in-out forwards;
    animation-delay: 1s;
}

.btn:focus .txt-2,
.btn:hover .txt-2 {
    animation: opacity-anim 0.3s ease-in-out reverse forwards;
    animation-delay: 1s;
}

@keyframes opacity-anim {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.btn:focus .btn-letter,
.btn:hover .btn-letter {
    animation: focused-letter-anim 1s ease-in-out forwards, letter-anim 1.2s ease-in-out infinite;
    animation-delay: 0s, 1s;
}

@keyframes focused-letter-anim {

    0%,
    100% {
        filter: blur(0px);
    }

    50% {
        transform: scale(1.5);
        filter: blur(5px) brightness(150%) drop-shadow(-36px 12px 12px hsl(var(--highlight-color-hue), 100%, 70%));
    }
}

.btn:focus .btn-svg,
.btn:hover .btn-svg {
    animation-duration: 1.2s;
    animation-delay: 0.2s;
}

.btn:focus::before,
.btn:hover::before {
    box-shadow:
        0 -8px 12px -6px #fff3 inset,
        0 -16px 16px -8px hsla(var(--highlight-color-hue), 100%, 70%, 20%) inset,
        1px 1px 1px #fff3,
        2px 2px 2px #fff1,
        -1px -1px 1px #0002,
        -2px -2px 2px #0001;
}

.btn:focus::after,
.btn:hover::after {
    opacity: 0.6;
    mask-image: linear-gradient(0deg, #fff, transparent);
    filter: brightness(100%);
}

.btn-letter:nth-child(1),
.btn:focus .btn-letter:nth-child(1),
.btn:hover .btn-letter:nth-child(1) {
    animation-delay: 0s;
}

.btn-letter:nth-child(2),
.btn:focus .btn-letter:nth-child(2),
.btn:hover .btn-letter:nth-child(2) {
    animation-delay: 0.08s;
}

.btn-letter:nth-child(3),
.btn:focus .btn-letter:nth-child(3),
.btn:hover .btn-letter:nth-child(3) {
    animation-delay: 0.16s;
}

.btn-letter:nth-child(4),
.btn:focus .btn-letter:nth-child(4),
.btn:hover .btn-letter:nth-child(4) {
    animation-delay: 0.24s;
}

.btn-letter:nth-child(5),
.btn:focus .btn-letter:nth-child(5),
.btn:hover .btn-letter:nth-child(5) {
    animation-delay: 0.32s;
}

.btn-letter:nth-child(6),
.btn:focus .btn-letter:nth-child(6),
.btn:hover .btn-letter:nth-child(6) {
    animation-delay: 0.4s;
}

.btn-letter:nth-child(7),
.btn:focus .btn-letter:nth-child(7),
.btn:hover .btn-letter:nth-child(7) {
    animation-delay: 0.48s;
}

.btn-letter:nth-child(8),
.btn:focus .btn-letter:nth-child(8),
.btn:hover .btn-letter:nth-child(8) {
    animation-delay: 0.56s;
}

.btn-letter:nth-child(9),
.btn:focus .btn-letter:nth-child(9),
.btn:hover .btn-letter:nth-child(9) {
    animation-delay: 0.64s;
}

.btn-letter:nth-child(10),
.btn:focus .btn-letter:nth-child(10),
.btn:hover .btn-letter:nth-child(10) {
    animation-delay: 0.72s;
}

.btn-letter:nth-child(11),
.btn:focus .btn-letter:nth-child(11),
.btn:hover .btn-letter:nth-child(11) {
    animation-delay: 0.8s;
}

.btn:active {
    border: solid 1px hsla(var(--highlight-color-hue), 100%, 80%, 70%);
    background-color: hsla(var(--highlight-color-hue), 50%, 20%, 0.5);
    transform: translateY(1px) scale(0.96);
}

.btn:active::before {
    box-shadow:
        0 -8px 12px -6px #fffa inset,
        0 -16px 16px -8px hsla(var(--highlight-color-hue), 100%, 70%, 80%) inset,
        1px 1px 1px #fff4,
        2px 2px 2px #fff2,
        -1px -1px 1px #0002,
        -2px -2px 2px #0001;
}

.btn:active::after {
    opacity: 1;
    mask-image: linear-gradient(0deg, #fff, transparent);
    filter: brightness(200%);
}

.btn:active .btn-letter {
    text-shadow: 0 0 1px hsla(var(--highlight-color-hue), 100%, 90%, 90%);
    animation: none;
}

.lg-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 8px;
    /* Inverts white text to black while maintaining original icon hues */
    filter: invert(1) hue-rotate(180deg);
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    background: #2a2a2e;
    /* dark pill to match screenshot */
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    align-items: center;
    position: relative;
    list-style: none;
}

/* Strip bullet points from WP nav menu markup */
.nav-links ul,
.nav-links ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links ul {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.nav-links ul li {
    display: inline-flex;
}

.hover-pill {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, #3b82f6, #a855f7, #ec4899);
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

.nav-links a {
    color: #e2e8f0;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    position: relative;
    z-index: 1;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.login-btn {
    display: none;
    /* Removed to match screenshot style */
}

.login-btn:hover {
    color: var(--text-primary);
}

.cta-btn {
    background: linear-gradient(90deg, #7c3aed 0%, #2563eb 100%);
    color: #ffffff !important;
    border: none;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.6rem 1.4rem;
    position: relative;
    top: 0;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 0 #4c1d95, 0 6px 10px rgba(0, 0, 0, 0.15);
}

a.cta-btn,
button.cta-btn,
a.cta-btn:hover,
button.cta-btn:hover,
a.cta-btn:focus,
button.cta-btn:focus,
a.cta-btn:active,
button.cta-btn:active,
a.cta-btn:visited,
button.cta-btn:visited {
    color: #ffffff !important;
}

.cta-btn:hover {
    background: linear-gradient(90deg, #7c3aed 0%, #2563eb 100%);
    top: -2px;
    box-shadow: 0 6px 0 #4c1d95, 0 8px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn:active {
    top: 4px;
    box-shadow: 0 0 0 #4c1d95, 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn:focus,
.mobile-menu-btn:focus-visible {
    outline: none;
    box-shadow: none;
}

.mobile-menu-btn:hover,
.mobile-menu-btn:focus,
.mobile-menu-btn:focus-visible {
    background: none !important;
    background-color: transparent !important;
    border-color: transparent !important;
    color: inherit !important;
    outline: none !important;
    box-shadow: none !important;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
}

/* Hero Section */
.hero {
    padding: 12rem 2rem 8rem;
    /* Restored padding so the scaled video doesn't cover next section */
    width: 100%;
    max-width: 100%;
    margin: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Fading Grid Background */
.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 0, 0, 0.08) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Text Blur Hover Effect */
.blur-hover:hover span {
    filter: blur(4px);
    opacity: 0.4;
}

.blur-hover span {
    transition: filter 0.3s ease, opacity 0.3s ease;
    cursor: default;
    display: inline-block;
    padding: 0 4px;
    /* Give some breathing room to avoid clipping */
}

.blur-hover span:hover {
    filter: blur(0px);
    opacity: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1000px;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(109, 40, 217, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse at 70% 60%, rgba(59, 130, 246, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse at 50% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    animation: ambient-flow 15s ease-in-out infinite alternate;
}

@keyframes ambient-flow {
    0% {
        transform: translateX(-50%) translateY(0) scale(1);
    }

    100% {
        transform: translateX(-48%) translateY(5%) scale(1.05);
    }
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    font-weight: 800;
    max-width: 1200px !important;
    margin-left: auto;
    margin-right: auto;
    color: #111827;
    line-height: 1.2;
}

.hero-title img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    margin-top: -10px;
    max-width: 65px;
}

/* Apply the dark gradient only to the normal words */
.hero-title span:not(.text-gradient-primary):not(.text-gradient-red) {
    background: linear-gradient(to right, #000, #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-primary {
    background-image: linear-gradient(90deg, #6d28d9, #3b82f6, #0ea5e9, #6d28d9);
    background-size: 200% auto;
    white-space: normal;
    display: inline;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 0 transparent;
    animation: shine 4s linear infinite;
}

.text-gradient-red {
    background-image: linear-gradient(90deg, #ef4444, #f97316, #ef4444);
    background-size: 200% auto;
    white-space: normal;
    display: inline;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 0 transparent;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    /* Reduced gap under buttons */
}

/* Hero Top Badge */
.hero-top-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.join-pill {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    color: var(--text-primary);
    animation: shake-pill 4s ease-in-out infinite;
    transform-origin: center;
    position: relative;
    overflow: hidden;
}

.join-pill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: sweep 4s infinite;
}

@keyframes sweep {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

@keyframes shake-pill {

    0%,
    90% {
        transform: translate3d(0, 0, 0);
    }

    92% {
        transform: translate3d(-3px, 0, 0) rotate(-2deg);
    }

    94% {
        transform: translate3d(3px, 0, 0) rotate(2deg);
    }

    96% {
        transform: translate3d(-3px, 0, 0) rotate(-2deg);
    }

    98% {
        transform: translate3d(3px, 0, 0) rotate(2deg);
    }

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

.join-pill .dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    /* Red dot */
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    70% {
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
        opacity: 1;
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
        opacity: 1;
    }
}

.badge-arrow {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
    /* margin-left: 50px; Offset to point to avatars */
    color: var(--text-primary);
}

.social-proof-small {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatars>img,
.avatar-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-left: -12px;
    background: #212121 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.avatars>img:first-child {
    margin-left: 0;
}

.avatar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    background: #e2e8f0;
}

.avatar-icon img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.proof-text {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    perspective: 1000px;
    z-index: 10;
}

.main-dashboard {
    padding: 2rem;
    text-align: left;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.status-indicator.live::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.caller-info {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.conversation-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.message {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    max-width: 80%;
}

.message.customer {
    background: var(--bg-panel-hover);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.message.ai {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.2);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.voice-waveform {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 1rem;
    height: 20px;
}

.voice-waveform .bar {
    width: 3px;
    background: var(--accent);
    border-radius: 2px;
    animation: waveform 1s infinite ease-in-out alternate;
}

.voice-waveform .bar:nth-child(1) {
    height: 40%;
    animation-delay: 0.1s;
}

.voice-waveform .bar:nth-child(2) {
    height: 80%;
    animation-delay: 0.2s;
}

.voice-waveform .bar:nth-child(3) {
    height: 100%;
    animation-delay: 0.3s;
}

.voice-waveform .bar:nth-child(4) {
    height: 60%;
    animation-delay: 0.4s;
}

.voice-waveform .bar:nth-child(5) {
    height: 30%;
    animation-delay: 0.5s;
}

@keyframes waveform {
    0% {
        transform: scaleY(0.3);
    }

    100% {
        transform: scaleY(1);
    }
}

/* Sections General */
section {
    padding: 8rem 2rem 10rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    section {
        padding: 4rem 1rem 5rem 1rem;
    }
}

/* Value Props Section */
.value-props {
    padding: 5rem 2rem 8rem;
    background: #1a1a1a;
    max-width: 100%;
    position: relative;
    overflow: hidden;
}

.value-props::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    pointer-events: none;
    /* Blend grid: shows on sides, fades to transparent in center and edges */
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 15%, transparent 35%, transparent 65%, black 85%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 15%, transparent 35%, transparent 65%, black 85%, transparent 100%);
}

.value-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.text-gradient-purple-blue {
    background: linear-gradient(90deg, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-props .section-header h2 {
    color: #ffffff;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

@property --border-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.value-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    z-index: 1;
    padding: 2.5rem;

    color: white;
    background: linear-gradient(#212121, #212121) padding-box,
        linear-gradient(145deg, transparent 35%, #e81cff, #40c9ff) border-box;
    border: 2px solid transparent;
    border-radius: 24px;
    transform-origin: right bottom;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    overflow: hidden;
}

.value-card>* {
    position: relative;
    z-index: 1;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -125px;
    margin-left: -125px;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(64, 201, 255, 0.15), rgba(232, 28, 255, 0.15));
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    filter: blur(25px);
}

@keyframes border-spin {
    0% {
        --border-angle: 0deg;
    }

    100% {
        --border-angle: 360deg;
    }
}

/* Features Section with Hero Glow */
.features-section {
    position: relative;
    padding: 6rem 0 2rem 0;
    overflow-x: clip;
    /* Fixes horizontal scroll without breaking position: sticky! */
}

.features-bg-glow {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    margin-bottom: -100vh;
    mask-image: radial-gradient(ellipse 50% 38% at 50% 50%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6) 45%, rgba(0, 0, 0, 0) 75%);
    -webkit-mask-image: radial-gradient(ellipse 50% 38% at 50% 50%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6) 45%, rgba(0, 0, 0, 0) 75%);
}

.features-bg-glow .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    transition: background-color 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
    will-change: transform, background-color;
}

.features-bg-glow .blob-1 {
    width: 480px;
    height: 480px;
    top: 50%;
    left: 32%;
    transform: translate(-50%, -50%);
    background-color: rgba(56, 189, 248, 0.45);
    animation: blobFloat1 12s ease-in-out infinite alternate;
}

.features-bg-glow .blob-2 {
    width: 440px;
    height: 440px;
    top: 52%;
    right: 32%;
    transform: translate(50%, -50%);
    background-color: rgba(168, 85, 247, 0.35);
    animation: blobFloat2 15s ease-in-out infinite alternate;
}

@media (max-width: 768px) {

    .features-section>p {
        padding: 0 20px !important;
    }
}

@keyframes blobFloat1 {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(calc(-50% + 35px), calc(-50% - 25px)) scale(1.08);
    }

    100% {
        transform: translate(calc(-50% - 25px), calc(-50% + 35px)) scale(0.95);
    }
}

@keyframes blobFloat2 {
    0% {
        transform: translate(50%, -50%) scale(1);
    }

    50% {
        transform: translate(calc(50% - 35px), calc(-50% + 20px)) scale(1.06);
    }

    100% {
        transform: translate(calc(50% + 25px), calc(-50% - 30px)) scale(0.94);
    }
}

/* Features Header Sticky */
.features-section .section-header {
    position: sticky;
    top: 10vh;
    z-index: 10;
    margin-bottom: 2rem;
}

/* Stacking Cards Layout */
.stacking-cards-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem 15vh;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    /* Spacing between cards before they stick */
    position: relative;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.stack-card {
    position: sticky;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 24px;
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.05);
    border: 8px solid rgba(255, 255, 255, 0.6);
    background-clip: padding-box;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    transform-origin: center top;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.stack-card:hover {
    transform: translateY(-5px);
}

/* Cascading deck offsets to keep top edges visible - Light Soft Gradients */
.stack-card-1 {
    top: 40vh;
    z-index: 1;
    background-image: linear-gradient(135deg, #f0f9ff, #bae6fd, #f0f9ff);
}

.stack-card-2 {
    top: calc(40vh + 1.5rem);
    z-index: 2;
    background-image: linear-gradient(135deg, #faf5ff, #e9d5ff, #faf5ff);
}

.stack-card-3 {
    top: calc(40vh + 3rem);
    z-index: 3;
    background-image: linear-gradient(135deg, #f0fdf4, #bbf7d0, #f0fdf4);
}

.stack-card-4 {
    top: calc(40vh + 4.5rem);
    z-index: 4;
    background-image: linear-gradient(135deg, #fffbeb, #fef08a, #fffbeb);
}

.stack-card-5 {
    top: calc(40vh + 6rem);
    z-index: 5;
    background-image: linear-gradient(135deg, #fff1f2, #fecdd3, #fff1f2);
}

.stack-card-6 {
    top: calc(40vh + 7.5rem);
    z-index: 6;
    background-image: linear-gradient(135deg, #f5f3ff, #ddd6fe, #f5f3ff);
}

/* Premium gradient icons */
.stack-card .feature-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #a855f7, #3b82f6);
    border-radius: 14px;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.25);
    flex-shrink: 0;
}

.stack-card .feature-icon svg {
    width: 24px;
    height: 24px;
}

.stack-card h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.stack-card p {
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.stack-card .feature-list {
    list-style: none;
    margin-top: 1.5rem;
    padding: 0;
    margin-left: 0px !important;
}

.stack-card .feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #475569;
    font-size: 0.95rem;
}

.stack-card .feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

/* Animated Icons */
@keyframes iconBounce {

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

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

@keyframes iconSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes iconTilt {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(10deg);
    }

    75% {
        transform: rotate(-10deg);
    }
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.stack-card-1 .feature-icon svg {
    animation: iconBounce 2s ease-in-out infinite;
}

.stack-card-2 .feature-icon svg {
    animation: iconSpin 8s linear infinite;
}

.stack-card-3 .feature-icon svg {
    animation: iconTilt 3s ease-in-out infinite;
}

.stack-card-4 .feature-icon svg {
    animation: iconBounce 2.5s ease-in-out infinite reverse;
}

.stack-card-5 .feature-icon svg {
    animation: iconPulse 2s ease-in-out infinite;
}

.stack-card-6 .feature-icon svg {
    animation: iconTilt 4s ease-in-out infinite;
}

/* Responsive Stacking Cards */
@media (max-width: 768px) {
    .stack-card {
        aspect-ratio: auto;
        padding: 2rem;
        gap: 1.5rem;
    }

    .stack-card-1 {
        top: 40vh;
    }

    .stack-card-2 {
        top: calc(40vh + 1rem);
    }

    .stack-card-3 {
        top: calc(40vh + 2rem);
    }

    .stack-card-4 {
        top: calc(40vh + 3rem);
    }

    .stack-card-5 {
        top: calc(40vh + 4rem);
    }

    .stack-card-6 {
        top: calc(40vh + 5rem);
    }
}

.value-card:hover {
    rotate: 8deg;
    background: linear-gradient(#212121, #212121) padding-box,
        conic-gradient(from var(--border-angle), transparent 60%, #e81cff 85%, #40c9ff 100%) border-box;
    animation: border-spin 4s linear infinite;
}

.value-card:hover::before {
    opacity: 1;
    animation: water-blob 6s infinite alternate ease-in-out;
}

@keyframes water-blob {
    0% {
        transform: translate(0, 0) scale(1);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    50% {
        transform: translate(-20px, -20px) scale(1.1);
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }

    100% {
        transform: translate(10px, -30px) scale(0.9);
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
}

/* ==========================================================================
   ROI Calculator Section (Light Luxury Theme)
   ========================================================================== */
.roi-section {
    position: relative;
    padding: 6rem 2rem 5rem !important;
    background: #ffffff;
    overflow-x: clip;
    overflow-y: visible;
    z-index: 10;
}

.roi-glow-backdrop {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.25), rgba(59, 130, 246, 0.2), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.roi-section .section-header {
    margin-bottom: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.roi-section .section-header h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.roi-section .section-header p {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 620px;
    line-height: 1.6;
    margin: 0;
}

.roi-container {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 2.5rem;
    background: #ffffff;
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 4px 60px rgba(0, 0, 0, 0.05);
}

/* Controls Panel */
.roi-controls-panel {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.roi-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.roi-icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.25);
    flex-shrink: 0;
}

.roi-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
}

.roi-header p {
    font-size: 0.92rem;
    color: #64748b;
    margin: 0;
}

/* Presets */
.roi-presets {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1rem 1.25rem;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
}

.presets-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    color: #64748b;
}

.presets-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.preset-btn {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    padding: 0.35rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.preset-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #0f172a;
    transform: translateY(-1px);
}

.preset-btn.active {
    background: #8b5cf6;
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.25);
}

/* Sliders Group */
.roi-sliders-group {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.roi-slider-card {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 0.9rem 1.15rem;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.roi-slider-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.06);
}

.slider-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.slider-label svg {
    color: #a855f7;
}

.slider-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
    font-variant-numeric: tabular-nums;
    transition: color 0.2s ease, transform 0.2s ease;
}

/* Custom Range Input */
.roi-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 6px;
    outline: none;
    background: linear-gradient(to right, #8b5cf6 var(--progress, 30%), #e2e8f0 var(--progress, 30%));
    cursor: pointer;
    transition: background 0.1s linear;
}

.roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #8b5cf6;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.roi-slider::-webkit-slider-thumb:hover,
.roi-slider:active::-webkit-slider-thumb {
    transform: scale(1.25);
    box-shadow: 0 4px 14px rgba(168, 85, 247, 0.6);
    border-color: #3b82f6;
}

.roi-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #8b5cf6;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* Results Panel */
.roi-results-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
}

.roi-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.roi-metric-card {
    border-radius: 20px;
    padding: 1.5rem 0.95rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.85rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
}

.roi-metric-card:hover {
    transform: translateY(-4px);
}

/* Light Theme Cards Matching Stacking Cards Palette */
.roi-metric-card.revenue-card {
    background: #ebfcf0;
    border-color: #d1fae5;
}

.roi-metric-card.revenue-card:hover {
    border-color: #a7f3d0;
    box-shadow: 0 12px 25px rgba(34, 197, 94, 0.1);
}

.roi-metric-card.savings-card {
    background: #f5edff;
    border-color: #e9d5ff;
}

.roi-metric-card.savings-card:hover {
    border-color: #d8b4fe;
    box-shadow: 0 12px 25px rgba(168, 85, 247, 0.1);
}

.roi-metric-card.time-card {
    background: #eff6ff;
    border-color: #dbeafe;
}

.roi-metric-card.time-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 12px 25px rgba(59, 130, 246, 0.1);
}

.roi-metric-card.multiplier-card {
    background: #ecfeff;
    border-color: #cffafe;
}

.roi-metric-card.multiplier-card:hover {
    border-color: #a5f3fc;
    box-shadow: 0 12px 25px rgba(6, 182, 212, 0.1);
}

.metric-top {
    display: flex;
    align-items: center;
}

.metric-badge {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.green-badge {
    color: #15803d;
}

.purple-badge {
    color: #7e22ce;
}

.blue-badge {
    color: #1d4ed8;
}

.cyan-badge {
    color: #0e7490;
}

.metric-number-wrapper {
    margin: 0.25rem 0;
}

.metric-number {
    font-size: 1.22rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
    display: block;
    white-space: nowrap;
}

.text-green {
    color: #166534;
}

.text-purple {
    color: #6b21a8;
}

.text-blue {
    color: #1e40af;
}

.text-cyan {
    color: #155e75;
}

.metric-subtitle {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.45;
    margin: 0;
}

/* Footer Box */
.roi-footer-box {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.roi-calculation-note {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    color: #64748b;
    font-size: 0.82rem;
    line-height: 1.5;
}

.roi-calculation-note svg {
    color: #a855f7;
    flex-shrink: 0;
    margin-top: 2px;
}

.roi-calculation-note p {
    margin: 0;
}

.roi-calculation-note strong {
    color: #0f172a;
}

.roi-cta-row {
    display: flex;
    justify-content: flex-end;
}

.roi-cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 14px;
    background: #8b5cf6;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.35);
    border: none;
    cursor: pointer;
}

.roi-cta-btn::before,
.roi-cta-btn::after {
    display: none !important;
}

.roi-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(168, 85, 247, 0.5);
    color: #ffffff;
}

/* ROI Responsive */
@media (max-width: 1024px) {
    .roi-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2.25rem;
    }
}

@media (max-width: 640px) {
    .roi-section {
        padding: 4rem 1rem;
    }

    .roi-container {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .roi-metrics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .roi-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Join Us Section */
.join-section {
    position: relative;
    z-index: 10;
    margin-bottom: 0;
    padding-top: 2.5rem;
    padding-bottom: 5rem;
    background: linear-gradient(to bottom, var(--bg-dark) 50%, #1A1A1A 50%);
    max-width: 100%;
}

.join-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #3b82f6, #a855f7, #ec4899);
    background-clip: padding-box;
    border-radius: 20px;
    padding: 2rem 3rem;
    max-width: 900px;
    margin: 0 auto;
    border: 6px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.6);
}

.join-profile {
    position: relative;
    flex-shrink: 0;
}

.join-profile img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.5);
    background: #ffffff;
}

.profile-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 32px;
    height: 32px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.join-info {
    flex-grow: 1;
    margin: 0 2rem;
    text-align: left;
}

.join-info h2 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-align: left;
}

.join-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
    max-width: none;
}

.join-qr {
    flex-shrink: 0;
    background: #ffffff;
    padding: 0.75rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.join-qr img {
    width: 90px;
    height: 90px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .join-banner {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
    }

    .join-info {
        margin: 0;
        text-align: center;
    }

    .join-info h2 {
        text-align: center;
    }
}

/* Integrations Section */
.integrations-section {
    position: relative;
    padding: 6rem 0 8rem;
    text-align: center;
    overflow: hidden;
    background-color: #1A1A1A;
    max-width: 100%;
}

.integrations-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center bottom;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 20%, #000 80%, #000 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, transparent 20%, #000 80%, #000 100%);
    z-index: 0;
    pointer-events: none;
}

.integrations-section>* {
    position: relative;
    z-index: 1;
}

.integrations-section .section-header {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.integrations-section .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    background: transparent;
    border: none;
    color: #9ca3af;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.integrations-section h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
}

.integrations-section p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
}

.marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    /* Fading edges to blend seamlessly into white background */
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
    padding-top: 10px;
    padding-bottom: 6rem;
}

.marquee-track {
    --gap: 2rem;
    display: flex;
    gap: var(--gap);
    width: max-content;
    animation: scroll-marquee 40s linear infinite;
}

.marquee-track.reverse {
    animation-direction: reverse;
}

.integration-card {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.3);
}

.integration-card img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - (var(--gap) / 2)));
    }
}

@media (max-width: 768px) {
    .integrations-section {
        padding: 4rem 0 6rem;
    }

    .integrations-section h2 {
        font-size: 2.5rem;
    }

    .integration-card {
        width: 80px;
        height: 80px;
        border-radius: 16px;
    }

    .integration-card img {
        width: 36px;
        height: 36px;
    }

    .marquee-wrapper {
        gap: 1.5rem;
    }

    .marquee-track {
        --gap: 1.5rem;
        animation-duration: 30s;
    }
}

@keyframes blob-anim {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: scale(1) rotate(0deg);
    }

    50% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: scale(1.05) rotate(5deg) translate(2%, 2%);
    }

    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: scale(0.95) rotate(-5deg) translate(-2%, -2%);
    }
}

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(90deg, #3b82f6, #a855f7, #ec4899);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.25rem;
    color: white;
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.25);
}

.value-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
    position: relative;
    z-index: 1;
}

.value-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.inline-badge {
    background: linear-gradient(90deg, #a855f7, #ec4899);
    color: white;
    font-size: 0.65rem;
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(168, 85, 247, 0.3);
}

.value-card p {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
}

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

/* Trusted By Section */
.trusted-section {
    padding: 2rem 2rem;
    text-align: center;
    background: transparent;
    overflow: hidden;
}

.trusted-title {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.trusted-logos-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.trusted-logos {
    display: flex;
    gap: 5rem;
    align-items: center;
    width: max-content;
    animation: scroll-logos 30s linear infinite;
}

.trusted-logo-img {
    height: 32px;
    width: auto;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

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

@keyframes scroll-logos {
    to {
        transform: translateX(calc(-50% - 2.5rem));
    }
}

/* See It In Action / Hero Video */
.video-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 2rem;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    /* Glass border effect */
    border: 8px solid rgba(255, 255, 255, 0.4);
    background-clip: padding-box;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent);
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    animation: pulse-play 2s infinite;
    transition: transform 0.3s ease;
    margin-bottom: 1rem;
}

.play-btn:hover {
    transform: scale(1.1);
}

.play-text {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes pulse-play {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.demo-video {
    width: 100%;
    height: auto;
    display: block;
}

.process-flow {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 4rem;
}

.step {
    text-align: center;
    flex: 1;
}

.action-section .section-header {
    margin-bottom: 0 !important;
}

.action-section .process-flow {
    margin-top: 0 !important;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    width: 80px;
    height: 80px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1;
    --glow-opacity: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.2);
}

.step-icon::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, #3b82f6, #a855f7, #ec4899);
    border-radius: 50%;
    z-index: -1;
    opacity: calc(var(--glow-opacity) * 0.4);
    filter: blur(12px);
    transition: opacity 0.4s ease;
}

.step-icon img {
    max-width: 55%;
    max-height: 55%;
    object-fit: contain;
}

.connector {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--border-color) 50%, transparent 50%);
    background-size: 10px 100%;
    margin: 0 1rem;
    margin-top: 39px;
    /* align with 80px icon center */
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.connector::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.8), transparent);
    animation: flowLine 2s infinite linear;
}

@keyframes flowLine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(500%);
    }
}

.step p {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.step p span {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Product Showcase */
.showcase-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--bg-panel-hover);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
}

.showcase-display {
    min-height: 400px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease-out forwards;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mock-ui {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.waveform-large {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 60px;
    justify-content: center;
    margin-top: 2rem;
}

.waveform-large .bar {
    width: 6px;
    background: var(--accent);
    border-radius: 3px;
    animation: waveform 1s infinite ease-in-out alternate;
}

/* How It Works */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.hiw-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 2rem;
    border-left: 2px solid var(--border-color);
    position: relative;
}

.step-number {
    position: absolute;
    left: -18px;
    top: 0;
    background: var(--bg-dark);
    padding: 0.2rem 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Use Cases */
.use-cases-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.industry-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.industry-btn {
    text-align: left;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition);
}

.industry-btn:hover,
.industry-btn.active {
    background: var(--bg-panel);
    color: var(--text-primary);
}

.industry-demo {
    padding: 3rem;
}

.chat-example {
    display: none;
    flex-direction: column;
    gap: 1rem;
}

.chat-example.active {
    display: flex;
    animation: fadeIn 0.4s ease-out forwards;
}

.chat-example h4 {
    margin-bottom: 1rem;
    color: var(--accent);
}

.customer-msg,
.ai-msg {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    max-width: 80%;
}

.customer-msg {
    background: var(--bg-panel-hover);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.ai-msg {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.2);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

/* Why Choose Section */
.why-choose {
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 1rem 2rem !important;
}

.table-container {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: var(--border-radius);
    background: var(--bg-panel);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    white-space: nowrap;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: rgba(0, 0, 0, 0.03);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table th:nth-child(2) {
    color: var(--accent);
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.05), rgba(37, 99, 235, 0.05));
}

.table-logo {
    height: 30px;
    width: auto;
    vertical-align: middle;
    filter: invert(1) hue-rotate(180deg);
}

.comparison-table td:nth-child(2) {
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.02), rgba(37, 99, 235, 0.02));
    font-weight: 500;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: var(--bg-panel-hover);
}

.check-icon {
    color: #10b981;
    font-weight: bold;
    margin-right: 0.5rem;
}

.cross-icon {
    color: #ef4444;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.benefit-item h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.benefit-item p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Social Proof */
.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    gap: 2rem;
}

.stat-item {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.stat-item strong {
    display: block;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    text-align: center;
}

.quote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.author strong {
    display: block;
    font-size: 1.1rem;
}

.author span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 8rem 2rem !important;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .final-cta {
        padding: 2rem 2rem 1rem 2rem !important;
    }
}

.animated-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100%;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
    z-index: -1;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.cta-character-container {
    position: absolute;
    top: -45px;
    left: -90px;
    z-index: 1;
    rotate: -15deg;
}

.cta-character {
    max-width: 130px;
    height: auto;
    animation: float 6s ease-in-out infinite;
    transform-origin: bottom center;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 250px;
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.link-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-group h4 {
    margin-bottom: 0.5rem;
}

.link-group a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.link-group a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Reviews Section */
.reviews-section {
    padding: 8rem 2rem 10rem 2rem !important;
    overflow: hidden;
}

.reviews-section .section-header {
    margin-bottom: 0rem;
    padding: 0 2rem;
}

.reviews-section .section-header h2 {
    max-width: 800px;
    margin: 0 auto;
    font-size: 2.8rem;
}

.reviews-marquee {
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
    margin: 0 auto;
}

.reviews-marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.reviews-marquee-track:hover {
    animation-play-state: paused;
}

.reviews-group {
    display: flex;
    gap: 1.5rem;
    padding-right: 1.5rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.review-card {
    width: 350px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    text-align: left;
    white-space: normal;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.review-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.1);
    letter-spacing: 0.02em;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
}

.stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-meta {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: -0.5rem;
}

.trustpoint {
    color: #8b5cf6;
    font-weight: 500;
}

.review-card h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 0;
}

.review-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .use-cases-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .navbar.mobile-menu-open {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        height: 100vh;
        align-items: flex-start;
        border-bottom: none;
    }

    .nav-container {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        align-content: flex-start;
    }

    .logo {
        order: 1;
    }

    .mobile-menu-btn {
        order: 2;
        display: block;
    }

    .nav-links {
        order: 3;
        display: flex;
        width: 100%;
        flex-direction: column;
        margin-top: 0;
        padding: 0;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        gap: 2rem;
        align-items: center;
        justify-content: center;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateY(20px);
    }

    .nav-links a {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--text-primary);
        text-align: center;
    }

    .nav-actions {
        order: 4;
        display: flex;
        width: 100%;
        flex-direction: column;
        margin-top: 0;
        align-items: center;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateY(20px);
    }

    .nav-actions .cta-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
        padding: 1rem;
        font-size: 1.2rem;
    }

    .nav-links.active {
        max-height: 60vh;
        opacity: 1;
        visibility: visible;
        margin-top: 4rem;
        transform: translateY(0);
    }

    .nav-actions.active {
        max-height: 20vh;
        opacity: 1;
        visibility: visible;
        margin-top: 3rem;
        transform: translateY(0);
    }

    .hero {
        padding-top: 7rem;
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 3rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .hero-buttons .lg-btn {
        width: 100%;
    }

    .demo-video {
        aspect-ratio: 16 / 9;
        /* Revert back to horizontal ratio */
        object-fit: cover;
        height: auto;
        width: 100%;
    }

    .video-container {
        width: calc(100% - 2rem);
        /* Ensure glass border is not cut off by screen edges */
    }

    .process-flow {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem 1rem;
    }

    .process-flow .step {
        flex: 0 0 calc(50% - 1rem);
    }

    .connector {
        display: none;
    }

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

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-character-container {
        position: relative;
        top: auto;
        left: auto;
        margin: 0 auto 1rem auto;
        rotate: 0deg;
        z-index: 4;
        display: flex;
        justify-content: center;
    }

    .cta-character {
        max-width: 100px;
    }

    .footer-content {
        flex-direction: column;
    }
}

.hidden {
    display: none !important;
}

/* Industries Floating Section */
.industries-section {
    background-color: #1a1a1a;
    padding: 7rem 2rem 7rem !important;
    position: relative;
    overflow: hidden;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.industries-section .section-header {
    padding: 0 2rem;
    max-width: 800px;
    margin: 0 auto 0 auto;
    text-align: center;
}

.industries-section h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
}

.industries-section p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
}

.audio-waveform-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

.industries-section.section-playing .audio-waveform-bg {
    opacity: 1;
}

.audio-waveform-bg .bar {
    width: 16px;
    height: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.industries-section.section-playing .audio-waveform-bg .bar {
    background: linear-gradient(180deg, rgba(236, 72, 153, 0.15), rgba(59, 130, 246, 0.15));
    animation: waveBar 1.2s ease-in-out infinite alternate;
    animation-delay: var(--d);
}

@keyframes waveBar {
    0% {
        height: 10px;
    }

    100% {
        height: var(--h);
    }
}


.industries-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 580px;
}

.industry-floating-card {
    position: absolute;
    background: transparent;
    border-radius: 60px;
    padding: 14px 24px 14px 14px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: max-content;
    max-width: 360px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    cursor: pointer;
}

.industry-floating-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #ffffff;
    border-radius: 60px;
    z-index: -1;
    transition: all 0.4s ease;
}

.industry-floating-card::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: linear-gradient(90deg, #ec4899, #a855f7, #3b82f6);
    z-index: -2;
    border-radius: 65px;
    filter: blur(6px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.industry-floating-card:hover,
.industry-floating-card.playing {
    transform: translateY(-5px);
    max-width: 460px;
    padding: 18px 30px 18px 18px;
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.15);
    z-index: 10;
}

.industry-floating-card:hover::before,
.industry-floating-card.playing::before {
    opacity: 0.5;
}

.card-avatar {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.industry-floating-card:hover .card-avatar,
.industry-floating-card.playing .card-avatar {
    width: 72px;
    height: 72px;
}

.card-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background-color: #fdf2f8;
}

.avatar-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: #ffffff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d81b60;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.avatar-badge img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.industry-floating-card:hover .avatar-badge,
.industry-floating-card.playing .avatar-badge {
    width: 36px;
    height: 36px;
    bottom: -4px;
    right: -4px;
}

.industry-floating-card:hover .avatar-badge img,
.industry-floating-card.playing .avatar-badge img {
    width: 26px;
    height: 26px;
}

.card-content {
    flex: 1;
}

.card-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
    transition: all 0.4s ease;
}

.card-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.35;
    transition: all 0.4s ease;
    margin-bottom: 0px !important;
}

.industry-floating-card:hover h4,
.industry-floating-card.playing h4 {
    font-size: 22px;
}

.industry-floating-card:hover p,
.industry-floating-card.playing p {
    font-size: 14px;
}

.card-play-btn {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #f0f0f0 !important;
    background-image: url('data:image/svg+xml;utf8,<svg width="14" height="14" viewBox="0 0 24 24" fill="%23333" xmlns="http://www.w3.org/2000/svg"><path d="M8 5v14l11-7z"/></svg>');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px;
    border: none;
    padding: 0;
    margin: 0;
    transition: all 0.4s ease;
    outline: none !important;
}

.card-play-btn:focus,
.card-play-btn:active {
    background-color: #e0e0e0 !important;
    outline: none !important;
    box-shadow: none !important;
}

.card-play-btn svg {
    display: none !important;
}

.industry-floating-card:hover .card-play-btn {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    background-size: 18px;
}

.industry-floating-card.playing .card-play-btn {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    background-color: #f0f0f0 !important;
    background-image: url('data:image/svg+xml;utf8,<svg width="14" height="14" viewBox="0 0 24 24" fill="%23333" xmlns="http://www.w3.org/2000/svg"><path d="M6 19h4V5H6v14zm8-14v14h4V5h-4z"/></svg>');
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: center center;
}

.card-play-btn:hover {
    background-color: #e0e0e0 !important;
}

/* Positioning */
.card-banks {
    top: 12%;
    left: 30%;
}

.card-clinics {
    top: 32%;
    left: 58%;
}

.card-insurance {
    top: 35%;
    left: 0%;
}

.card-legal {
    top: 62%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.card-legal:hover,
.card-legal.playing {
    transform: translate(-50%, -50%) translateY(-5px);
}

.card-construction {
    top: 80%;
    left: 50%;
}

.card-realestate {
    top: 80%;
    left: 7%;
}

@media (max-width: 900px) {
    .industries-section h2 {
        font-size: 2.5rem;
    }

    .industries-container {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .industries-section .section-header {
        margin: 0 auto 3rem auto;
    }

    .industry-floating-card {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 100%;
        max-width: 400px;
    }

    .card-legal:hover {
        transform: translateY(-5px) !important;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 8rem 2rem !important;
    position: relative;
}

.pricing-section .section-header {
    margin-bottom: 0 !important;
}

.pricing-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.pricing-segmented-control {
    display: flex;
    position: relative;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.segment-pill {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    width: calc(50% - 4px);
    background: linear-gradient(90deg, #3b82f6, #a855f7, #ec4899);
    border-radius: 50px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.pricing-segmented-control.yearly-active .segment-pill {
    transform: translateX(100%);
}

.segment-btn {
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 10px 24px;
    border-radius: 50px;
    border: none !important;
    background: transparent !important;
    color: #111 !important;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
    outline: none !important;
    box-shadow: none !important;
}

.segment-btn:hover,
.segment-btn:focus,
.segment-btn:active,
.segment-btn:focus-visible {
    background: transparent !important;
    background-color: transparent !important;
    color: #111 !important;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.segment-btn.active,
.segment-btn.active:hover,
.segment-btn.active:focus,
.segment-btn.active:active {
    color: #ffffff !important;
    background: transparent !important;
    background-color: transparent !important;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: #f4f5f7;
    border-radius: 24px;
    padding: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card-header {
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
}

.header-info {
    flex: 1;
}

.pricing-card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.pricing-card-header p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1;
}

.price-period {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-btn {
    width: 100%;
    padding: .7rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.pricing-btn:focus,
.pricing-btn:focus-visible {
    outline: none;
    box-shadow: none;
}

.dark-btn {
    background: #0f172a;
    color: white;
    box-shadow: 0 6px 0 #b5b5b5;
    position: relative;
    top: 0;
}

.dark-btn:hover {
    background: #1e293b;
    top: -2px;
    box-shadow: 0 8px 0 #000000, 0 8px 15px rgba(0, 0, 0, 0.2);
    color: white !important;
}

.dark-btn:active {
    top: 4px;
    box-shadow: 0 2px 0 #000000;
    color: white !important;
}

.dark-btn:focus,
.dark-btn:focus-visible {
    outline: none;
    color: white !important;
}

.gradient-btn {
    background: linear-gradient(135deg, #ec4899, #3b82f6);
    color: white;
    box-shadow: 0 6px 0 #7e22ce;
    position: relative;
    top: 0;
}

.gradient-btn:hover {
    opacity: 0.95;
    top: -2px;
    box-shadow: 0 8px 0 #7e22ce, 0 8px 20px rgba(236, 72, 153, 0.3);
    color: white !important;
}

.gradient-btn:active {
    top: 4px;
    box-shadow: 0 2px 0 #7e22ce;
    color: white !important;
}

.gradient-btn:focus,
.gradient-btn:focus-visible {
    outline: none;
    color: white !important;
}

.pricing-card-features {
    padding: 2.5rem 1.5rem;
    background: transparent;
    flex-grow: 1;
    border-top: none;
}

.features-title {
    font-weight: 600;
    color: #334155;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.pricing-card-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.pricing-card-features li svg {
    color: #334155;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .pricing-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-container {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
}

/* Quote Section */
.quote-section {
    padding: 6rem 0;
    background: transparent;
    display: flex;
    justify-content: center;
}

.quote-container {
    max-width: 1000px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.quote-logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.quote-text {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.4;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.02em;
    padding-bottom: 4rem;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

/* Footer Styles */
.modern-footer {
    background: #111111;
    color: #e2e8f0;
    padding: 5rem 4rem 0rem;
    position: relative;
    overflow: hidden;
    font-family: var(--font-main);
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
}

.modern-footer::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100vw;
    max-width: 1000px;
    max-height: 1000px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.footer-top-section {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.footer-brand-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 300px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #333;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.contact-details p {
    color: #a0a0a0;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.store-badges {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.store-badge {
    height: 36px;
    width: auto;
}

.footer-links-grid {
    display: flex;
    gap: 6rem;
    flex-wrap: wrap;
}

.link-column h4 {
    color: #ffffff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Strip bullet points from WP nav menu in footer columns */
.link-column ul,
.link-column ul li,
.link-column li {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.link-column a {
    display: block;
    color: #a0a0a0;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.link-column a:hover {
    color: #ffffff;
}

.footer-divider-container {
    max-width: 1200px;
    margin: 4rem auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.footer-divider {
    flex: 1;
    height: 1px;
    background: #333;
}

.footer-get-started-btn {
    background: #ffffff;
    color: #000000;
    padding: 0.7rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    top: 0;
    box-shadow: 0 4px 0 #94a3b8, 0 8px 15px rgba(0, 0, 0, 0.2);
}

.footer-get-started-btn:hover {
    background: #f8fafc;
    top: -2px;
    box-shadow: 0 6px 0 #94a3b8, 0 10px 20px rgba(0, 0, 0, 0.3);
}

.footer-get-started-btn:active {
    top: 4px;
    box-shadow: 0 0 0 #94a3b8, 0 2px 5px rgba(0, 0, 0, 0.2);
}

.footer-middle-section {
    max-width: 1200px;
    margin: 0 auto 6rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.footer-description p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

.footer-legal-links a {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-giant-text {
    width: 100%;
    text-align: center;
    overflow: hidden;
    padding-bottom: 0;
    margin-bottom: -1rem;
    /* push text slightly down */
    position: relative;
    z-index: 1;
}

.footer-giant-text h1 {
    font-size: 15vw;
    line-height: 0.8;
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.04em;
    white-space: nowrap;
}

.footer-credit {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.footer-credit p {
    color: #64748b;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

@media (max-width: 900px) {
    .footer-links-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 4rem 1.5rem 0rem;
    }

    .footer-top-section {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-links-grid {
        gap: 3rem;
        flex-direction: column;
    }

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

    .footer-legal-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-giant-text h1 {
        font-size: 20vw;
    }
}

.text-gradient-pink {
    background-image: linear-gradient(90deg, #ec4899 0%, #a855f7 50%, #3b82f6 100%);
    white-space: normal;
    display: inline-block;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 0 transparent;
}

/* Bottom Viewport Blur (Crystal Clear) */
.bottom-blur {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15vh;
    pointer-events: none;
    z-index: 100;
    background: transparent;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    transition: opacity 0.3s ease;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(90deg, #7c3aed 0%, #2563eb 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 0 #4c1d95, 0 6px 10px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 0 #4c1d95, 0 8px 15px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:active {
    transform: translateY(2px);
    box-shadow: 0 0 0 #4c1d95, 0 2px 4px rgba(0, 0, 0, 0.1);
}

.scroll-to-top * {
    pointer-events: none;
}

.progress-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-bg {
    fill: none;
    stroke: rgba(0, 0, 0, 0.2);
    stroke-width: 4;
}

.progress-bar {
    fill: none;
    stroke: #ffffff;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 0.1s ease-out;
}

.scroll-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: white;
}

.progress-text {
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-main);
    transition: all 0.3s ease;
}

.arrow-icon {
    position: absolute;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* ==========================================================================
   Blog Posts Section
   ========================================================================== */
.blog-section {
    padding: 6rem 0 !important;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.blog-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 3rem 2rem;
    margin-top: 4rem;
}

.blog-card {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    transition: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.blog-card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.03);
}

.blog-card-content {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-date-icon {
    opacity: 0.6;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.blog-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-title a:hover {
    color: #8b5cf6;
}

.blog-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    flex: 1;
}

/* Masonry Specific Placements */
.blog-card:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.blog-card:nth-child(1) .blog-card-image {
    height: 480px;
}

.blog-card:nth-child(1) .blog-title {
    font-size: 1.8rem;
}

.blog-card:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.blog-card:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.blog-card:nth-child(4) {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}

.blog-card:nth-child(4) .blog-card-image {
    width: 45%;
    height: 220px;
    margin-bottom: 0;
}

.blog-card:nth-child(4) .blog-card-content {
    width: 55%;
    padding: 0;
}

.blog-card:nth-child(4) .blog-title {
    font-size: 1.6rem;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .blog-card:nth-child(1),
    .blog-card:nth-child(2),
    .blog-card:nth-child(3),
    .blog-card:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
    }

    .blog-card:nth-child(1) .blog-card-image {
        height: 240px;
    }

    .blog-card:nth-child(4) {
        flex-direction: column;
        grid-column: 1 / -1;
    }

    .blog-card:nth-child(4) .blog-card-image,
    .blog-card:nth-child(4) .blog-card-content {
        width: 100%;
        margin-bottom: 1.5rem;
    }
}

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

.no-posts-found {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background: #f8fafc;
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.scroll-to-top:hover .progress-text {
    opacity: 0;
    transform: translateY(-10px);
}

.scroll-to-top:hover .arrow-icon {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Single Post Reading Layout
   ========================================================================== */
.os-pb-reading-layout {
    padding: 10rem 2rem 4rem;
    background-color: #ffffff;
    min-height: calc(100vh - 400px);
}

.os-pb-post-article {
    max-width: 800px !important;
    margin: 0 auto !important;
    width: 100%;
}

.os-pb-post-header {
    margin-bottom: 3rem;
    text-align: center;
}

.os-pb-post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

.os-pb-post-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.os-pb-post-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0;
}

.os-pb-post-thumbnail {
    margin-bottom: 4rem;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.os-pb-post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.os-pb-post-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-primary);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.os-pb-post-content p {
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.os-pb-post-content h2,
.os-pb-post-content h3,
.os-pb-post-content h4 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.os-pb-post-content h2 {
    font-size: 2.2rem;
}

.os-pb-post-content h3 {
    font-size: 1.7rem;
}

.os-pb-post-content blockquote {
    border-left: 4px solid #7c3aed;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.25rem;
}

.os-pb-post-content ul,
.os-pb-post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.os-pb-post-content li {
    margin-bottom: 0.5rem;
}

.os-pb-post-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.os-pb-post-footer .tags-links {
    font-weight: 500;
    color: var(--text-secondary);
}

/* Minimalist Comments Styling Override */
.os-pb-single-post #comments {
    max-width: 800px;
    margin: 4rem auto 0;
    padding-top: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.os-pb-single-post .comment-list {
    list-style: none;
    padding: 0;
}

.os-pb-single-post .comment {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}