:root {
    --bg-primary: #f8fafc;
    /* Very light, refreshing background */
    --bg-secondary: #ffffff;
    --text-primary: #0f172a;
    /* Dark slate for high readability */
    --text-secondary: #475569;
    --accent-primary: #6366f1;
    /* Vibrant Indigo */
    --accent-secondary: #ec4899;
    /* Vibrant Pink */
    --accent-tertiary: #06b6d4;
    /* Vibrant Cyan */
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.8);
    --font-heading: 'Avenir Next', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-body: 'Avenir Next', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

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

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

body.mobile-nav-locked {
    overflow: hidden;
}

.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: #f8fafc;
}

.glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    max-width: 800px;
    max-height: 800px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: float 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.glow-1 {
    top: -20%;
    left: -10%;
    background: var(--accent-primary);
}

.glow-2 {
    bottom: -20%;
    right: -10%;
    background: var(--accent-secondary);
    animation-delay: -5s;
}

.glow-3 {
    top: 30%;
    left: 40%;
    background: var(--accent-tertiary);
    animation: float-alt 15s infinite alternate ease-in-out;
}

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

    100% {
        transform: translate(100px, 100px) scale(1.1);
    }
}

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

    100% {
        transform: translate(-80px, 50px) scale(1.2);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    /* More vibrant gradient for light theme */
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-card,
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.05);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), #4f46e5);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.btn-secondary:hover {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.88);
    border: 2px solid #4338ca;
    color: #312e81;
}

.btn-outline:hover {
    background: rgba(79, 70, 229, 0.14);
}

.promo-bar {
    position: sticky;
    top: 0;
    z-index: 130;
    border-bottom: 1px solid rgba(14, 116, 144, 0.24);
    background: linear-gradient(90deg, #0f766e 0%, #0369a1 100%);
    color: #ecfeff;
}

.promo-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 48px;
    padding: 8px 24px;
    text-align: center;
}

.promo-bar p {
    font-size: 14px;
    line-height: 1.4;
}

.promo-timer {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.34);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.4px;
    animation: promoPulse 1.3s ease-in-out infinite;
}

.promo-bar strong {
    display: inline-block;
    margin-left: 5px;
    padding: 2px 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    font-size: 13px;
    letter-spacing: 0.4px;
}

.promo-bar .promo-copy-btn {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.promo-bar .promo-copy-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

body.has-promo-bar {
    --promo-offset: 48px;
}

.navbar {
    padding: 15px 0;
    position: sticky;
    top: var(--promo-offset, 0px);
    z-index: 100;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.logo img {
    height: 32px;
    width: 32px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 10px;
}

.logo-full {
    line-height: 0;
    flex: 0 0 auto;
}

.logo-full img {
    display: block;
    height: auto;
    width: 212px;
    max-width: min(212px, 52vw);
    max-height: none;
    border-radius: 0;
    object-fit: contain;
    margin-right: 0;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.logo:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.logo span {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 1px;
}

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

.nav-links a:not(.btn) {
    color: #334155;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:not(.btn):hover {
    color: var(--accent-primary);
}

.nav-links a.is-active-nav:not(.btn),
.dropdown-trigger.is-active-nav {
    color: var(--accent-primary);
    font-weight: 700;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-left: 8px;
}

.lang-btn {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 2px 6px;
    border-radius: 4px;
    transition: all 0.2s;
}

.lang-btn:hover {
    color: var(--accent-primary);
    background: rgba(99, 102, 241, 0.05);
}

.lang-btn.active {
    color: white;
    background: #4338ca;
}

.mobile-nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    cursor: pointer;
}

.mobile-nav-toggle .bar {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 2px;
    background: #334155;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.navbar.mobile-nav-open .mobile-nav-toggle .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.navbar.mobile-nav-open .mobile-nav-toggle .bar:nth-child(2) {
    opacity: 0;
}

.navbar.mobile-nav-open .mobile-nav-toggle .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.26);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease;
    z-index: 90;
}

.mobile-nav-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.navbar.mobile-nav-open .dropdown-menu,
.navbar.mobile-nav-open .dropdown.open .dropdown-menu,
.navbar.mobile-nav-open .dropdown:hover .dropdown-menu,
.navbar.mobile-nav-open .dropdown:focus-within .dropdown-menu {
    display: none !important;
    max-height: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    padding: 0;
}

.dropdown-trigger:hover,
.dropdown-trigger:focus-visible {
    color: var(--accent-primary);
    outline: none;
}

.dropdown-trigger .arrow {
    font-size: 10px;
    transition: transform 0.2s;
}

.dropdown:hover .dropdown-trigger .arrow,
.dropdown.open .dropdown-trigger .arrow,
.dropdown:focus-within .dropdown-trigger .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    opacity: 0;
    visibility: hidden;
    padding: 24px;
    border-radius: 20px;
    width: 780px;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    pointer-events: none;
    max-height: min(72vh, 620px);
    overflow-y: auto;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
    pointer-events: auto;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.dropdown-shortcuts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.dropdown-shortcuts a {
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    color: #334155;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.25);
    transition: all 0.2s ease;
}

.dropdown-shortcuts a:hover {
    color: var(--accent-primary);
    border-color: rgba(99, 102, 241, 0.35);
    background: rgba(99, 102, 241, 0.08);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    min-height: 60px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s;
    color: var(--text-primary) !important;
}

.dropdown-item:hover {
    background: rgba(0, 0, 0, 0.03);
}

.dropdown-item:focus-visible {
    outline: 2px solid rgba(99, 102, 241, 0.5);
    outline-offset: 2px;
    background: rgba(99, 102, 241, 0.08);
}

.di-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    padding: 9px;
    flex-shrink: 0;
}

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

.di-text {
    font-weight: 600;
    font-size: 13px;
    line-height: 1.3;
}

.dropdown-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 16px;
    text-align: center;
}

.dropdown-footer a {
    color: var(--accent-primary) !important;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.dropdown-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 980px) {
    .dropdown-menu {
        left: auto;
        right: 0;
        transform: translateY(12px);
        width: min(92vw, 620px);
    }

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

    .dropdown:hover .dropdown-menu,
    .dropdown.open .dropdown-menu,
    .dropdown:focus-within .dropdown-menu {
        transform: translateY(4px);
    }
}

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

@media (max-width: 900px) {
    body.has-promo-bar {
        --promo-offset: 56px;
    }

    .promo-bar-inner {
        justify-content: space-between;
        min-height: 56px;
        padding: 8px 14px;
        gap: 8px;
    }

    .promo-bar p {
        text-align: left;
        font-size: 13px;
        line-height: 1.3;
    }

    .promo-timer {
        margin-left: 0;
        margin-top: 5px;
    }

    .promo-bar strong {
        margin-left: 4px;
        padding: 1px 6px;
    }

    .promo-bar .promo-copy-btn {
        min-height: 32px;
        padding: 6px 10px;
    }

    .navbar.mobile-nav-open {
        z-index: 200;
    }

    .glow,
    .glow-pulse,
    .pulse,
    .scene-kenburns {
        animation: none !important;
    }

    .scene-kenburns {
        transform: none !important;
    }

    .navbar {
        padding: 10px 0;
    }

    .nav-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .logo {
        justify-content: flex-start;
        font-size: 22px;
    }

    .logo-full img {
        width: 190px;
        max-width: min(190px, 64vw);
    }

    .mobile-nav-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex: 0 0 auto;
    }

    .nav-links {
        position: fixed;
        top: 66px;
        left: 12px;
        right: 12px;
        z-index: 210;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 12px;
        border-radius: 16px;
        border: 1px solid rgba(148, 163, 184, 0.28);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 18px 38px rgba(15, 23, 42, 0.16);
        max-height: calc(100vh - 92px);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px) scale(0.99);
        transition: opacity 0.24s cubic-bezier(0.16, 1, 0.3, 1), transform 0.24s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.24s ease;
        scrollbar-width: none;
    }

    .nav-links::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    .navbar.mobile-nav-open .nav-links {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .dropdown-trigger,
    .nav-links a:not(.btn) {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        min-height: 42px;
        padding: 9px 12px;
        border-radius: 10px;
        border: 1px solid rgba(148, 163, 184, 0.25);
        background: rgba(248, 250, 252, 0.96);
        font-size: 14px;
        white-space: nowrap;
    }

    .nav-links .btn-outline {
        width: 100%;
        display: block;
        text-align: center;
        min-height: 42px;
        padding: 10px 14px;
        margin-top: auto;
        position: sticky;
        bottom: 0;
        background: #ffffff;
        z-index: 1;
    }

    .lang-switcher {
        justify-content: flex-start;
        margin-left: 0;
        padding-top: 2px;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        width: auto;
        border-radius: 12px;
        padding: 0;
        margin-top: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: none;
    }

    .dropdown-trigger .arrow {
        display: none;
    }

    .dropdown-menu,
    .dropdown.open .dropdown-menu,
    .dropdown:hover .dropdown-menu,
    .dropdown:focus-within .dropdown-menu {
        display: none !important;
        max-height: 0 !important;
        opacity: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        overflow: hidden !important;
    }

    .nav-links a.is-active-nav:not(.btn),
    .dropdown-trigger.is-active-nav {
        border-color: rgba(99, 102, 241, 0.45);
        background: rgba(99, 102, 241, 0.12);
        color: #4338ca;
        font-weight: 700;
    }

}

@keyframes promoPulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(236, 254, 255, 0.15);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(236, 254, 255, 0);
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 14px;
    }

    .dropdown-menu {
        max-height: 56vh;
    }
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 64px 24px 48px;
    min-height: 62vh;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-visual {
    position: relative;
    width: min(100%, 820px);
    justify-self: end;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(248, 250, 252, 0.95);
    border: 1px solid rgba(71, 85, 105, 0.32);
    border-radius: 20px;
    color: #1f2937;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-safe-line {
    margin: 14px 0 0;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
}

.hero-proof {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.proof-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.mockup-panel {
    padding: 24px;
    font-family: 'SFMono-Regular', Consolas, monospace;
    font-size: 14px;
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) translateY(-10px);
    transition: transform 0.5s ease;
    background: rgba(15, 23, 42, 0.95);
    color: #f1f5f9;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.mockup-panel:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(0);
}

.hero .mockup-panel {
    padding: 14px;
}

.hero-video-panel {
    max-width: 640px;
    margin-left: auto;
}

.hero-video-preview {
    width: 100%;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    background: #020617;
    padding: 0;
    overflow: hidden;
    display: block;
    cursor: pointer;
    position: relative;
}

.hero-video-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.16) 0%, rgba(2, 6, 23, 0.5) 100%);
    display: grid;
    place-items: center;
    padding: 0;
    transition: background 0.25s ease;
}

.hero-play-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.74);
    border: 1px solid rgba(248, 250, 252, 0.44);
    position: relative;
    flex-shrink: 0;
}

.hero-play-icon::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-40%, -50%);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #f8fafc;
}

.hero-video-preview:hover .hero-video-overlay,
.hero-video-preview:focus-visible .hero-video-overlay {
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.06) 0%, rgba(2, 6, 23, 0.38) 100%);
}

.hero-video-preview:focus-visible {
    outline: 2px solid #60a5fa;
    outline-offset: 4px;
}

.hero-video-embed {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 0;
    display: block;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: #020617;
}

.hero-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    backdrop-filter: blur(10px);
    animation: floatDrift 4s ease-in-out infinite;
}

.hero-float-card strong {
    font-size: 13px;
    color: var(--text-primary);
}

.hero-float-card span {
    font-size: 11px;
    color: var(--text-secondary);
    line-height: 1.3;
}

.hero-float-card.float-a {
    top: 18px;
    right: 8px;
}

.hero-float-card.float-b {
    left: 8px;
    bottom: 20px;
    animation-delay: 0.8s;
}

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

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

.mockup-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--glass-border);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
    background: #4a4a52;
}

.dot:nth-child(1) {
    background: #ff5f56;
}

.dot:nth-child(2) {
    background: #ffbd2e;
}

.dot:nth-child(3) {
    background: #27c93f;
}

.mockup-title {
    margin-left: 10px;
    color: var(--text-secondary);
}

.mockup-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mockup-line {
    color: #8b8b99;
}

.mockup-line.highlight {
    color: #ffbd2e;
}

.mockup-line.success {
    color: #27c93f;
}

.features {
    padding: 60px 24px;
}

.section-title {
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.section-title p {
    color: var(--text-secondary);
    font-size: 18px;
}

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

.feature-card {
    padding: 40px;
    border-radius: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.icon-wrapper {
    font-size: 32px;
    background: rgba(99, 102, 241, 0.1);
    width: 65px;
    height: 65px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.feature-card h3 {
    font-size: 22px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.cta-section {
    padding: 52px 24px 72px;
}

.cta-card {
    padding: 60px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(244, 244, 255, 0.9));
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
}

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-card p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 40px;
}

.money-back {
    font-size: 13px !important;
    margin-top: 12px;
    margin-bottom: 0 !important;
}

.pulse {
    animation: shadowPulse 2s infinite;
}

@keyframes shadowPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
    }

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

    100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
    }
}

.footer {
    margin-top: 40px;
    padding: 56px 0 44px;
    background: radial-gradient(circle at 18% 20%, rgba(99, 102, 241, 0.2) 0%, rgba(99, 102, 241, 0) 32%), #17145b;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #d5d8ff;
}

.footer-shell {
    display: grid;
    gap: 26px;
    grid-template-columns: 1.35fr 1fr 1fr;
    align-items: flex-start;
}

.footer-brand .logo-full img {
    width: 188px;
    max-width: 100%;
}

.footer-logo {
    display: inline-flex;
    background: #ffffff;
    border-radius: 12px;
    padding: 8px 12px;
    box-shadow: 0 10px 28px rgba(8, 15, 45, 0.35);
}

.footer-logo .footer-logo-img {
    width: min(715px, 95vw);
    max-width: 100%;
    height: auto;
    image-rendering: auto;
}

.footer-tagline {
    margin-top: 14px;
    color: #f0f2ff;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.35;
}

.footer-col h4 {
    margin-bottom: 14px;
    color: #f0f2ff;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-col a,
.footer-legal a,
.footer-social a {
    display: block;
    color: #d5d8ff;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.35;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-col a:hover,
.footer-legal a:hover,
.footer-social a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

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

.newsletter-box {
    max-width: 640px;
    margin: 34px auto 0;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(241, 245, 255, 0.06));
}

.newsletter-box h3 {
    font-size: 28px;
    line-height: 1.2;
    color: #f8f9ff;
}

.newsletter-box p {
    margin-top: 8px;
    color: #d8dcff;
}

.newsletter-form {
    margin-top: 16px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.newsletter-form input[type="email"] {
    width: 100%;
    max-width: 360px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-primary);
    font-size: 15px;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: rgba(99, 102, 241, 0.85);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.16);
}

.newsletter-form .btn {
    padding: 12px 20px;
    border-radius: 12px;
    white-space: nowrap;
}

.newsletter-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.newsletter-message {
    min-height: 24px;
    margin-top: 10px;
    font-size: 14px;
    color: #d8dcff;
}

.newsletter-message.is-success {
    color: #047857;
}

.newsletter-message.is-error {
    color: #fecaca;
}

.copyright {
    color: rgba(213, 216, 255, 0.9);
    margin-top: 16px;
    font-size: 14px;
}

.footer-legal {
    margin-top: 10px;
}

.footer-social {
    margin-top: 16px;
}

.footer-trust {
    margin-top: 14px;
}

.footer-trust-title {
    margin: 0 0 8px;
    font-size: 13px;
    color: rgba(213, 216, 255, 0.9);
    font-weight: 600;
}

.footer-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-trust-pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    color: rgba(226, 232, 240, 0.95);
    background: rgba(15, 23, 42, 0.35);
}

.support-contact {
    margin-top: 8px;
    font-size: 14px;
}

.support-contact a {
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 1px dashed rgba(148, 163, 184, 0.45);
}

.support-contact a:hover {
    color: var(--text-primary);
    border-bottom-color: rgba(148, 163, 184, 0.75);
}

/* --- Added Detailed Sections --- */

/* Animations & Effects */
.glow-pulse {
    animation: glowPulse 2s infinite alternate;
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 5px rgba(138, 43, 226, 0.2);
    }

    100% {
        box-shadow: 0 0 15px rgba(138, 43, 226, 0.6);
    }
}

.typing-anim {
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid var(--accent-primary);
    animation: typing 2s steps(40, end), blink-caret .75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: var(--accent-primary);
    }
}

.tech-stack {
    margin-top: 20px;
    color: #334155;
    opacity: 1;
}

/* Stats Section */
.stats-section {
    padding: 20px 24px 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.silence-quick {
    padding: 0 24px 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
}

.silence-quick-card {
    border-radius: 22px;
    padding: 22px;
    border: 1px solid rgba(234, 88, 12, 0.2);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 247, 237, 0.84));
}

.silence-quick-card + .silence-quick-card {
    margin-top: 0;
}

.silence-quick-head {
    display: block;
    margin-bottom: 14px;
}

.silence-quick-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}

.silence-quick-head h2 {
    margin: 8px 0 6px;
}

.silence-quick-head p {
    margin: 0;
    color: var(--text-secondary);
    max-width: none;
}

.silence-quick-head .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 38px;
    padding: 9px 13px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    flex: 0 0 auto;
    border: 1px solid rgba(99, 102, 241, 0.24);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.14), rgba(59, 130, 246, 0.14));
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.14);
}

.silence-quick-head .btn::after {
    content: "->";
    font-size: 12px;
    opacity: 0.82;
}

.silence-quick-head .btn:hover {
    transform: translateY(-1px);
    border-color: rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.22), rgba(59, 130, 246, 0.22));
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.2);
}

.silence-quick-head .btn:focus-visible {
    outline: 2px solid rgba(99, 102, 241, 0.6);
    outline-offset: 2px;
}

.silence-quick-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    height: auto;
    border-radius: 14px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    background: transparent;
    object-fit: cover;
    object-position: center;
}

.integrations-panel {
    border-radius: 24px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(236, 250, 255, 0.8));
    border: 1px solid rgba(14, 165, 233, 0.16);
}

.scene-showcase {
    border-radius: 24px;
    padding: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(240, 248, 255, 0.78));
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.scene-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 16px;
}

.scene-head p {
    color: var(--text-secondary);
    margin-top: 8px;
}

.scene-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 0 auto 12px;
}

.scene-mode-btn {
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(255, 255, 255, 0.92);
    color: #334155;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.scene-mode-btn:hover,
.scene-mode-btn:focus-visible {
    color: var(--accent-primary);
    border-color: rgba(99, 102, 241, 0.4);
    outline: none;
}

.scene-mode-btn.is-active {
    border-color: transparent;
    color: #fff;
    background: linear-gradient(135deg, var(--accent-primary), #4f46e5);
    box-shadow: 0 8px 18px rgba(79, 70, 229, 0.22);
}

.scene-stage {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.2);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
}

.scene-visual {
    position: relative;
    overflow: hidden;
}

.scene-stage img {
    width: 100%;
    height: clamp(220px, 44vw, 520px);
    object-fit: cover;
    display: block;
}

.scene-kenburns {
    animation: sceneKenBurns 7s ease-in-out infinite alternate;
    transform-origin: center center;
}

@keyframes sceneKenBurns {
    0% {
        transform: scale(1) translateY(0);
    }

    100% {
        transform: scale(1.04) translateY(-4px);
    }
}

.scene-callouts {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.scene-callout {
    position: absolute;
    max-width: 38%;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: rgba(15, 23, 42, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;
    padding: 6px 8px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 8px 20px rgba(2, 6, 23, 0.24);
    line-height: 1.35;
}

.scene-caption {
    padding: 12px 14px;
    font-size: 14px;
    color: var(--text-primary);
    border-top: 1px solid rgba(99, 102, 241, 0.14);
    background: rgba(255, 255, 255, 0.86);
}

.scene-thumbs {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.scene-thumb {
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.scene-thumb img {
    width: 100%;
    height: 82px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    margin-bottom: 6px;
}

.scene-thumb span {
    font-size: 12px;
    font-weight: 600;
    color: #334155;
}

.scene-thumb:hover,
.scene-thumb:focus-visible {
    border-color: rgba(99, 102, 241, 0.44);
    transform: translateY(-2px);
    outline: none;
}

.scene-thumb.is-active {
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 10px 18px rgba(79, 70, 229, 0.16);
}

.integrations-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 24px;
}

.integrations-head h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.integrations-head p {
    color: var(--text-secondary);
    font-size: 16px;
}

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

.integration-card {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 16px;
    padding: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.integration-card h4 {
    font-size: 17px;
    margin-bottom: 8px;
}

.integration-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.integration-card:hover {
    transform: translateY(-3px);
    border-color: rgba(99, 102, 241, 0.28);
    box-shadow: 0 12px 22px rgba(79, 70, 229, 0.12);
}

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

.why-card {
    border-radius: 18px;
    border: 1px solid rgba(99, 102, 241, 0.16);
    background: rgba(255, 255, 255, 0.72);
    padding: 18px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(79, 70, 229, 0.1);
}

.why-kicker {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #4f46e5;
    font-weight: 700;
}

.why-card h3 {
    font-size: 21px;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.stat-box {
    padding: 18px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(99, 102, 241, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.stat-box:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 12px 24px rgba(99, 102, 241, 0.14);
}

.stat-box h3 {
    font-size: 40px;
    color: var(--accent-primary);
    background: linear-gradient(135deg, #b066ff, #ff4d94);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-box p {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px;
}

.faq-item {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.07);
}

/* Detailed Features */
.feature-detail {
    padding: 80px 24px;
}

.feature-split {
    display: flex;
    align-items: center;
    gap: 60px;
}

.feature-split.layout-right {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-image {
    flex: 1;
}

.category-pill {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.feature-text>p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.list-icon {
    font-size: 24px;
    background: var(--glass-bg);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    flex-shrink: 0;
}

.list-content h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.list-content p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Interactive Mockups */
.mockup-display {
    padding: 30px;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    color: #f1f5f9;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.waveform-viz {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 120px;
    margin-bottom: 30px;
    position: relative;
}

.waveform-viz .bar {
    width: 15px;
    background: var(--glass-bg);
    border-radius: 4px;
    transition: all 0.3s;
}

.waveform-viz .bar.h-100 {
    height: 100px;
}

.waveform-viz .bar.h-90 {
    height: 90px;
}

.waveform-viz .bar.h-60 {
    height: 60px;
}

.waveform-viz .bar.h-50 {
    height: 50px;
}

.waveform-viz .bar.h-40 {
    height: 40px;
}

.waveform-viz .bar.h-20 {
    height: 20px;
}

.waveform-viz .bar.h-10 {
    height: 10px;
}

.waveform-viz .bar.highlight {
    background: var(--accent-primary);
}

.waveform-viz .bar.cut {
    background: rgba(255, 77, 148, 0.2);
    height: 10px !important;
    border: 1px dashed var(--accent-secondary);
}

.timeline-marker {
    position: absolute;
    bottom: -25px;
    left: 60%;
    transform: translateX(-50%);
    font-size: 10px;
    color: var(--accent-secondary);
    background: rgba(255, 77, 148, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.mockup-ui-panel {
    background: rgba(0, 0, 0, 0.4);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.flex-bw {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}

.flex-bw.muted {
    color: var(--text-secondary);
    margin-top: 10px;
}

.badge-mini {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
}

.slider-mock {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-top: 12px;
    overflow: hidden;
}

.slider-mock .fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
}

.zoom-preview-box {
    width: 80%;
    height: 200px;
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    position: relative;
    background: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.02),
            rgba(255, 255, 255, 0.02) 10px,
            rgba(0, 0, 0, 0.1) 10px,
            rgba(0, 0, 0, 0.1) 20px);
}

.face-detect-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    border: 2px dashed var(--accent-primary);
    border-radius: 8px;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.6);
    animation: zoomPulse 4s infinite alternate ease-in-out;
}

@keyframes zoomPulse {
    0% {
        width: 40%;
        height: 40%;
    }

    100% {
        width: 70%;
        height: 70%;
    }
}

.zoom-indicator {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-primary);
    color: white;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
}

.export-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-row {
    display: flex;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    gap: 2px;
}

.timeline-row .segment {
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.timeline-row .highlight-seg {
    background: rgba(255, 77, 148, 0.3);
    color: #ff4d94;
    border: 1px solid rgba(255, 77, 148, 0.5);
}

.timeline-row .ai-seg {
    background: rgba(138, 43, 226, 0.3);
    color: #b066ff;
    border: 1px solid rgba(138, 43, 226, 0.5);
}

.timeline-details {
    background: rgba(0, 0, 0, 0.4);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timeline-details p {
    font-size: 13px;
    margin: 0;
}

.btn-small {
    padding: 6px 14px;
    font-size: 12px;
}

/* How It Works */
.how-it-works {
    padding: 64px 24px;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 50px;
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.step-box {
    flex: 1;
    position: relative;
    z-index: 2;
    padding: 20px;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--bg-secondary);
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
    color: var(--accent-primary);
}

.step-box h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.step-box p {
    color: var(--text-secondary);
    font-size: 14px;
}

.step-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), transparent);
    margin-top: 50px;
    opacity: 0.5;
}

.proof-head {
    max-width: 760px;
    margin: 0 auto 24px;
}

.proof-head p {
    color: var(--text-secondary);
    margin-top: 8px;
}

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

.proof-card {
    padding: 18px;
    border-radius: 18px;
}

.proof-kpi {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 8px;
}

.proof-card h4 {
    margin-bottom: 8px;
    font-size: 18px;
}

.proof-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.testimonial-row {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.testimonial-card {
    padding: 18px;
    border-radius: 16px;
    font-size: 15px;
    line-height: 1.6;
    color: #1f2937;
    margin: 0;
}

.testimonial-card cite {
    margin-top: 10px;
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    font-style: normal;
}

.workflow-demo {
    border-radius: 24px;
    padding: 26px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(236, 246, 255, 0.78));
    border: 1px solid rgba(14, 165, 233, 0.22);
}

.workflow-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 18px;
}

.workflow-head p {
    color: var(--text-secondary);
    margin-top: 8px;
}

.workflow-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.workflow-step {
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(255, 255, 255, 0.88);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    color: #334155;
    cursor: pointer;
    transition: all 0.2s ease;
}

.workflow-step:hover,
.workflow-step:focus-visible {
    border-color: rgba(99, 102, 241, 0.4);
    color: var(--accent-primary);
    outline: none;
}

.workflow-step.is-active {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--accent-primary), #4f46e5);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.22);
}

.workflow-stage {
    max-width: 760px;
    margin: 0 auto;
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(99, 102, 241, 0.16);
}

.workflow-progress {
    width: 100%;
    height: 7px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 12px;
}

.workflow-progress span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), #06b6d4);
    transition: width 0.25s ease;
}

.workflow-stage h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.workflow-stage p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.workflow-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.workflow-bullets li {
    font-size: 14px;
    color: #334155;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(99, 102, 241, 0.14);
    border-radius: 10px;
    padding: 8px 10px;
}

.pricing-head {
    max-width: 760px;
    margin: 0 auto 20px;
}

.pricing-head p {
    color: var(--text-secondary);
    margin-top: 8px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}

.price-card {
    position: relative;
    text-align: left;
    padding: 20px;
    border-radius: 18px;
}

.price-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.price-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 8px;
}

.price-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 10px;
}

.price-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.price-card li {
    font-size: 13px;
    color: #334155;
}

.price-card li::before {
    content: "✓ ";
    color: #4f46e5;
    font-weight: 700;
}

.price-card.featured {
    border: 1px solid rgba(99, 102, 241, 0.36);
    box-shadow: 0 16px 28px rgba(79, 70, 229, 0.16);
    transform: translateY(-4px);
}

/* ==========================================
   Feature Landing Pages (Conversion-focused)
   ========================================== */
.fl-hero {
    padding: 72px 24px 26px;
    text-align: center;
}

.fl-hero-icon {
    width: 92px;
    height: 92px;
    margin: 0 auto 16px;
    border-radius: 24px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.fl-hero-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.fl-hero h1 {
    font-size: clamp(36px, 5.5vw, 56px);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.fl-hero p {
    max-width: 860px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.6;
}

.fl-cta-row {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.fl-proof-strip {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.fl-proof-pill {
    border-radius: 999px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    background: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 700;
    color: #334155;
    padding: 8px 12px;
}

.fl-kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.fl-kpi {
    text-align: left;
    border-radius: 14px;
    padding: 14px;
    border: 1px solid rgba(99, 102, 241, 0.14);
    background: rgba(255, 255, 255, 0.75);
}

.fl-kpi strong {
    display: block;
    font-size: 24px;
    color: var(--accent-primary);
    margin-bottom: 4px;
}

.fl-kpi span {
    font-size: 13px;
    color: var(--text-secondary);
}

.fl-hero-media {
    margin: 20px auto 0;
    max-width: 920px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.18);
    background: rgba(255, 255, 255, 0.9);
}

.fl-hero-media video {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    height: auto;
    object-fit: cover;
    object-position: center;
    background: transparent;
}

.fl-section {
    padding: 16px 24px 54px;
}

.fl-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 18px;
    align-items: stretch;
}

.fl-card {
    border-radius: 18px;
    padding: 20px;
}

.fl-card h3 {
    margin-bottom: 8px;
}

.fl-card p {
    color: var(--text-secondary);
}

.fl-list {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 7px;
}

.fl-list li {
    color: #334155;
    font-size: 14px;
    padding: 9px 10px;
    border-radius: 10px;
    border: 1px solid rgba(99, 102, 241, 0.14);
    background: rgba(255, 255, 255, 0.82);
}

.fl-list li::before {
    content: "✓ ";
    color: #4f46e5;
    font-weight: 700;
}

.fl-scene {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.16);
    background: rgba(255, 255, 255, 0.8);
}

.fl-scene img {
    width: 100%;
    display: block;
    height: 270px;
    object-fit: cover;
}

.fl-scene figcaption {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 9px 10px;
}

.fl-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.fl-compare-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.16);
    background: rgba(255, 255, 255, 0.82);
}

.fl-compare-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid rgba(99, 102, 241, 0.12);
}

.fl-compare-top h4 {
    font-size: 15px;
}

.fl-compare-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 999px;
}

.fl-compare-tag.before {
    background: rgba(148, 163, 184, 0.18);
    color: #475569;
}

.fl-compare-tag.after {
    background: rgba(16, 185, 129, 0.16);
    color: #047857;
}

.fl-compare-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.fl-compare-card p {
    padding: 10px;
    color: var(--text-secondary);
    font-size: 13px;
}

.fl-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.persona-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.persona-card {
    border-radius: 14px;
    padding: 16px;
    border: 1px solid rgba(99, 102, 241, 0.14);
}

.persona-card h3 {
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.persona-card p {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.last-cta-block {
    border-radius: 20px;
    padding: 28px;
    text-align: center;
}

.last-cta-block h2 {
    margin-bottom: 8px;
}

.last-cta-block p {
    color: var(--text-secondary);
}

.last-cta-points {
    margin: 16px 0 18px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.last-cta-points span {
    border-radius: 999px;
    border: 1px solid rgba(99, 102, 241, 0.22);
    background: rgba(255, 255, 255, 0.82);
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    color: #334155;
}

.fl-step {
    border-radius: 14px;
    padding: 16px;
    border: 1px solid rgba(99, 102, 241, 0.14);
    background: rgba(255, 255, 255, 0.78);
}

.fl-step b {
    display: inline-block;
    margin-bottom: 7px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4f46e5;
}

.fl-quote {
    border-radius: 16px;
    padding: 16px;
    font-size: 15px;
    line-height: 1.65;
    color: #1f2937;
}

.fl-quote cite {
    display: block;
    margin-top: 9px;
    color: var(--text-secondary);
    font-style: normal;
    font-size: 12px;
}

.featured-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    border-radius: 999px;
    padding: 4px 8px;
}

/* Pricing Section Extras */
.price-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 77, 148, 0.1);
    color: #ff4d94;
    border-radius: 20px;
    border: 1px solid rgba(255, 77, 148, 0.2);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.pricing-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.pricing-features span {
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
}


@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        width: 100%;
        justify-self: center;
    }

    .hero-video-panel {
        margin-inline: auto;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        margin: 0 auto 30px;
    }

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

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

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

    .scene-callout {
        max-width: 46%;
        font-size: 10px;
        padding: 5px 7px;
    }

    .proof-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .fl-layout,
    .fl-steps,
    .fl-kpi-grid {
        grid-template-columns: 1fr;
    }

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

    .fl-compare {
        grid-template-columns: 1fr;
    }

    .testimonial-row {
        grid-template-columns: 1fr;
    }

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

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

    .hero-safe-line {
        text-align: center;
    }

    .hero-float-card {
        display: none;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }

    .silence-quick {
        grid-template-columns: 1fr;
    }

    .silence-quick-head {
        display: block;
    }

    .silence-quick-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .silence-quick-head .btn {
        width: 100%;
        text-align: center;
    }

    .silence-quick-head h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .silence-quick-head p {
        font-size: 18px;
    }

    .newsletter-box {
        padding: 20px;
    }

    .footer-shell {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-col h4 {
        margin-bottom: 10px;
    }

    .newsletter-box h3 {
        font-size: 24px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input[type="email"],
    .newsletter-form .btn {
        width: 100%;
        max-width: none;
    }

    .feature-split,
    .feature-split.layout-right {
        flex-direction: column;
        gap: 40px;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step-line {
        display: none;
    }

    .step-box {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 600px) {
    .fl-hero-media video,
    .silence-quick-video {
        aspect-ratio: 16 / 9;
        max-height: 230px;
        object-fit: contain;
        background: #0f172a;
    }

    .silence-quick {
        padding: 0 14px 20px;
    }

    .silence-quick-card {
        padding: 12px;
        border-radius: 14px;
    }

    .silence-quick-head h2 {
        font-size: 26px;
        margin-top: 6px;
    }

    .silence-quick-head p {
        font-size: 16px;
    }

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

    .pricing-features {
        flex-direction: column;
        gap: 10px;
    }
}

.feature-hub-section {
    margin-top: 16px;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    background: linear-gradient(160deg, rgba(10, 23, 52, 0.94), rgba(3, 10, 27, 0.98));
    box-shadow: 0 30px 70px rgba(2, 6, 23, 0.45);
}

.feature-hub-head h2,
.feature-hub-head p {
    color: #e2e8f0;
}

.feature-hub-head p {
    color: #9fb2cc;
}

.feature-hub-tabs {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-hub-tab {
    border: 1px solid rgba(56, 189, 248, 0.28);
    background: rgba(15, 23, 42, 0.5);
    color: #c7d2fe;
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.feature-hub-tab.is-active {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.9), rgba(79, 70, 229, 0.95));
    color: #fff;
    border-color: transparent;
}

.feature-hub-layout {
    margin-top: 22px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 16px;
    align-items: start;
}

.feature-hub-groups {
    min-width: 0;
}

.feature-hub-group {
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    background: rgba(15, 23, 42, 0.38);
    margin-bottom: 12px;
}

.feature-hub-group[hidden] {
    display: none;
}

.feature-hub-group-head {
    display: flex;
    gap: 10px;
    align-items: baseline;
    margin-bottom: 12px;
}

.feature-hub-group-head h3 {
    margin: 0;
    font-size: 26px;
    color: #f8fafc;
}

.feature-hub-group-head p {
    margin: 0;
    color: #93c5fd;
    font-size: 14px;
}

.feature-hub-cards {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
}

.feature-hub-card {
    border: 1px solid rgba(56, 189, 248, 0.2);
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.62));
    border-radius: 16px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-hub-card img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.75);
    padding: 6px;
}

.feature-hub-card span {
    display: block;
}

.feature-hub-card strong {
    display: block;
    color: #f8fafc;
    font-size: 20px;
    line-height: 1.1;
}

.feature-hub-card em {
    display: block;
    margin-top: 4px;
    color: #94a3b8;
    font-size: 14px;
    font-style: normal;
}

.feature-hub-card:hover,
.feature-hub-card.is-active {
    border-color: rgba(34, 211, 238, 0.65);
    transform: translateY(-2px);
}

.feature-hub-detail {
    position: sticky;
    top: 96px;
    align-self: start;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(56, 189, 248, 0.28);
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.8));
}

.feature-hub-detail-label {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #67e8f9;
}

.feature-hub-detail h3 {
    margin-top: 10px;
    color: #f8fafc;
}

.feature-hub-detail p {
    color: #cbd5e1;
    margin-top: 10px;
    margin-bottom: 16px;
}

@media (max-width: 980px) {
    .feature-hub-layout {
        grid-template-columns: 1fr;
    }

    .feature-hub-detail {
        position: static;
        margin-bottom: 12px;
    }
}

@media (max-width: 760px) {
    .feature-hub-cards {
        grid-template-columns: 1fr;
    }

    .feature-hub-group-head h3 {
        font-size: 22px;
    }
}

/* ==========================================
   Swiper Slider Styles (Glassmorphism & 3D)
   ========================================== */
#features-slider {
    position: relative;
    overflow: hidden;
    padding-bottom: 20px !important;
}

.featureSwiper {
    width: 100%;
    padding-top: 36px;
    padding-bottom: 34px;
}

.feature-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 auto 22px;
}

.feature-filter-btn {
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(255, 255, 255, 0.88);
    color: #334155;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.feature-filter-btn:hover,
.feature-filter-btn:focus-visible {
    border-color: rgba(99, 102, 241, 0.4);
    color: var(--accent-primary);
    background: rgba(99, 102, 241, 0.08);
    outline: none;
}

.feature-filter-btn.is-active {
    background: linear-gradient(135deg, var(--accent-primary), #4f46e5);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 18px rgba(79, 70, 229, 0.24);
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 320px;
    height: 500px;
    transition: all 0.3s ease;
    opacity: 0.82;
    z-index: 1;
}

.swiper-slide-prev,
.swiper-slide-next {
    opacity: 0.92;
    z-index: 3;
}

.swiper-slide-active {
    opacity: 1;
    z-index: 6;
}

/* Glass Card inside Slide */
.slide-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(247, 250, 255, 0.9));
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.09);
    border: 1px solid rgba(99, 102, 241, 0.16);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease, opacity 0.25s ease, filter 0.25s ease;
    position: relative;
    overflow: hidden;
}

.slide-card.is-muted {
    opacity: 0.72;
    filter: saturate(0.55);
    transform: translateY(0) scale(0.97);
}

.slide-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(99, 102, 241, 0.08), rgba(14, 165, 233, 0.04) 40%, transparent 70%);
}

.swiper-slide-active .slide-card {
    border: 1px solid rgba(99, 102, 241, 0.34);
    box-shadow: 0 22px 42px rgba(79, 70, 229, 0.18);
    transform: translateY(-4px);
}

.slide-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

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

.slide-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.slide-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.slide-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #4338ca;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.22);
    border-radius: 999px;
    padding: 4px 8px;
}

.slide-card p {
    font-size: 14px;
    color: var(--text-secondary);
    flex-grow: 1;
    line-height: 1.55;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slide-shot {
    margin: 4px 0 12px;
    border-radius: 14px;
    border: 1px solid rgba(99, 102, 241, 0.18);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: rgba(15, 23, 42, 0.08);
}

.slide-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.35s ease;
}

.slide-card:hover .slide-shot img,
.swiper-slide-active .slide-card .slide-shot img {
    transform: scale(1.035);
}

.slide-link {
    display: inline-flex;
    align-items: center;
    margin-top: 16px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    color: var(--accent-primary);
    transition: color 0.2s ease, transform 0.2s ease;
}

.slide-card:hover .slide-link {
    color: var(--accent-secondary);
    transform: translateX(5px);
}

.slide-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.38);
    box-shadow: 0 24px 44px rgba(79, 70, 229, 0.18);
}

.featureSwiper .swiper-pagination {
    bottom: 2px !important;
}

/* Swiper Pagination Customization */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--text-secondary);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 5px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    opacity: 1;
}

@media (max-width: 768px) {
    .swiper-slide {
        width: 280px;
        height: 440px;
    }

    .featureSwiper {
        padding-top: 24px;
        padding-bottom: 24px;
    }
}

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

    .pricing-features {
        flex-direction: column;
        gap: 10px;
    }
}

.discount-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(2, 6, 23, 0.58);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.discount-popup-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.discount-popup {
    width: min(100%, 460px);
    border-radius: 18px;
    background: linear-gradient(145deg, #ffffff 0%, #f0fdfa 100%);
    border: 1px solid rgba(15, 118, 110, 0.2);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.28);
    padding: 22px;
}

.discount-popup-title {
    font-size: 25px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.discount-popup-copy {
    color: #155e75;
    font-size: 15px;
    margin-bottom: 16px;
}

.discount-popup-timer {
    display: inline-block;
    margin-bottom: 14px;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(15, 118, 110, 0.32);
    background: rgba(15, 118, 110, 0.08);
    color: #0f766e;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.discount-popup-code {
    display: inline-block;
    margin-bottom: 16px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(15, 118, 110, 0.1);
    border: 1px dashed rgba(15, 118, 110, 0.55);
    color: #0f766e;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
}

.discount-popup-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.discount-popup-copy-btn,
.discount-popup-close-btn {
    flex: 1 1 150px;
    min-height: 42px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.discount-popup-copy-btn {
    background: linear-gradient(120deg, #0f766e 0%, #0284c7 100%);
    color: #ffffff;
}

.discount-popup-close-btn {
    border-color: rgba(14, 116, 144, 0.28);
    background: rgba(255, 255, 255, 0.9);
    color: #0f172a;
}

@media (max-width: 600px) {
    .discount-popup {
        padding: 18px;
    }

    .discount-popup-title {
        font-size: 22px;
    }

    .discount-popup-code {
        font-size: 19px;
    }
}
