/* Global Reset & Box Sizing - CRITICAL for Layout Stability */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body,
html {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    overscroll-behavior: none;
    /* Prevent bounce effects */
}

/* Custom Scrollbar - Smaller Chrome style */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}


html[lang="en"] body {
    font-family: 'Rubik', 'Montserrat', 'Work Sans', 'Quicksand', sans-serif;
}

html[lang="en"] body,
html[lang="en"] h1,
html[lang="en"] h2,
html[lang="en"] h3,
html[lang="en"] h4,
html[lang="en"] h5,
html[lang="en"] h6,
html[lang="en"] p,
html[lang="en"] span,
html[lang="en"] div,
html[lang="en"] a,
html[lang="en"] li,
html[lang="en"] label,
html[lang="en"] input,
html[lang="en"] textarea,
html[lang="en"] select,
html[lang="en"] button {
    font-family: 'Rubik', 'Montserrat', 'Work Sans', 'Quicksand', sans-serif !important;
}

html[lang="en"] h1,
html[lang="en"] h2,
html[lang="en"] h3 {
    font-weight: 500 !important;
}

section h1,
section h2,
section h3 {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.15;
}

section h1 {
    font-size: clamp(1.9rem, 4.6vw, 3.4rem);
}

section h2 {
    font-size: clamp(1.6rem, 3.6vw, 2.6rem);
}

section h3 {
    font-size: clamp(1.3rem, 2.8vw, 2rem);
}

#hero-title,
#hero-desc {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Disable Transitions/Animations for English Version */
html[lang="en"] .scroll-reveal,
html[lang="en"] .ml7 .letter,
html[lang="en"] .is-inview,
html[lang="en"] .hero-preview,
html[lang="en"] .preview-card,
html[lang="en"] .custom-btn,
html[lang="en"] .btn-spotlight,
html[lang="en"] .nav-links a {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

html[lang="en"] .hero::before {
    animation: none !important;
    opacity: 0.7 !important;
}

/* Typography Helpers */
.arvo-regular {
    font-family: "Arvo", serif;
    font-weight: 400;
    font-style: normal;
}

.arvo-bold {
    font-family: "Arvo", serif;
    font-weight: 700;
    font-style: normal;
}

.arvo-regular-italic {
    font-family: "Arvo", serif;
    font-weight: 400;
    font-style: italic;
}

.arvo-bold-italic {
    font-family: "Arvo", serif;
    font-weight: 700;
    font-style: italic;
}

.rubik-regular {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.rubik-bold {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

body.page-loaded {
    opacity: 1;
}




/* Navbar */
nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.6s ease;
    opacity: 0;
    transform: translateY(-40px) translateX(-50%);
}

body.page-loaded nav {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
    animation: navDrop 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes navDrop {
    0% {
        opacity: 0;
        transform: translateY(-50px) translateX(-50%);
    }

    60% {
        opacity: 1;
        transform: translateY(6px) translateX(-50%);
    }

    100% {
        opacity: 1;
        transform: translateY(0) translateX(-50%);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(10px);
    transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1), filter 700ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0ms);
    will-change: opacity, transform, filter;
}

.scroll-reveal.is-inview {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.ml7 {
    position: relative;
    display: inline-block;
}

.ml7 .text-wrapper {
    position: relative;
    display: inline-block;
    padding-top: 0.2em;
    padding-right: 0.05em;
    padding-bottom: 0.1em;
    overflow: hidden;
}

.hero .ml7 .text-wrapper {
    display: inline;
    overflow: visible;
    white-space: normal;
}

.hero .ml7 .letters {
    display: inline;
    white-space: normal;
}

.ml7 .letter {
    transform-origin: 0 100%;
    display: inline-block;
    line-height: 1em;
    opacity: 0;
    transform: translateY(1.1em) translateX(0.55em) rotate(180deg);
    will-change: transform, opacity;
}

.ml7.is-inview .letter {
    animation: ml7In 750ms cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: calc(var(--i, 0) * 45ms);
}

html[lang="ar"] .ml7 .letter {
    transform-origin: 50% 100%;
    transform: translateY(0.9em);
}

html[lang="ar"] .ml7.is-inview .letter {
    animation-name: ml7InAr;
    animation-duration: 650ms;
    animation-delay: calc(var(--i, 0) * 70ms);
}

@keyframes ml7In {
    0% {
        opacity: 0;
        transform: translateY(1.1em) translateX(0.55em) rotate(180deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) translateX(0) rotate(0);
    }
}

@keyframes ml7InAr {
    0% {
        opacity: 0;
        transform: translateY(0.9em);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

nav.scrolled {
    top: 10px;
    width: 90%;
    background: rgba(5, 5, 5, 0.6);
    border-color: rgba(90, 169, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    font-family: inherit;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0;
}

.nav-left img {
    height: 40px;
    width: 40px;
    border-radius: 12px;
    object-fit: cover;
    border: none;
    display: block;
    flex-shrink: 0;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    margin-top: 4px;
}

nav.visible {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
}

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

.nav-logo img {
    height: 40px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.1);
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 6px 14px;
    border-radius: 999vw;
    border: 1px solid transparent;
    background: transparent;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #5aa9ff, transparent);
    transition: width 0.3s ease;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: white;
    padding: 6px 14px;
    border-radius: 999vw;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.14),
            rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
        inset 0 1px 2px rgba(0, 0, 0, 0.12),
        0 6px 16px rgba(0, 0, 0, 0.35),
        0 0 14px rgba(90, 169, 255, 0.14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.nav-links a.active {
    color: white;
    padding: 6px 16px;
    border-radius: 999vw;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.18),
            rgba(255, 255, 255, 0.08));
    position: relative;
    box-shadow:
        inset 0 1px 2px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.4),
        0 0 18px rgba(90, 169, 255, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: visible;
}

.nav-links a.active::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 999vw;
    padding: 1px;
    background: conic-gradient(from var(--angle-1, -75deg) at 50% 50%,
            transparent 0%,
            rgba(255, 255, 255, 0.5) 20%,
            transparent 40%,
            transparent 60%,
            rgba(255, 255, 255, 0.5) 80%,
            transparent 100%);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
    pointer-events: none;
    animation: rotate-border 4s linear infinite;
}

@keyframes rotate-border {
    from {
        --angle-1: 0deg;
    }

    to {
        --angle-1: 360deg;
    }
}

.nav-links a.active::after {
    width: 0;
    opacity: 0;
}

.nav-links a:hover::after {
    width: 0;
    opacity: 0;
}

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

.hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.hamburger:hover {
    border-color: rgba(90, 169, 255, 0.45);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
}

.hamburger input {
    display: none;
}

.hamburger svg {
    width: 28px;
    height: 28px;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger .line {
    fill: none;
    stroke: rgba(255, 255, 255, 0.95);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger .line-top-bottom {
    stroke-dasharray: 12 63;
}

nav.nav-open .hamburger svg {
    transform: rotate(-45deg);
}

nav.nav-open .hamburger .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
}

.lang-toggle {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: white;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    font-family: inherit;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(90, 169, 255, 0.45);
    transform: translateY(-1px);
}

/* Language Transition Overlay - REMOVED */
#lang-loader {
    display: none;
}

.btn-premium {
    background: linear-gradient(135deg, #5aa9ff, #061a3a);
    /* Iridescent gold to deep cosmic */
    color: white !important;
    padding: 12px 25px !important;
    border-radius: 14px !important;
    font-weight: 600 !important;
    box-shadow: 0 10px 20px rgba(90, 169, 255, 0.2);
    white-space: nowrap;
}

.btn-premium:hover {
    box-shadow: 0 15px 30px rgba(90, 169, 255, 0.4);
    transform: translateY(-3px) scale(1.02) !important;
}

/* Defs */
@property --angle-1 {
    syntax: "<angle>";
    inherits: false;
    initial-value: -75deg;
}

@property --angle-2 {
    syntax: "<angle>";
    inherits: false;
    initial-value: -45deg;
}

:root {
    --global--size: clamp(1rem, 2vw, 1.25rem);
    --anim--hover-time: 400ms;
    --anim--hover-ease: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ========== BUTTON WRAP ========== */
.button-wrap {
    position: relative;
    z-index: 2;
    border-radius: 999vw;
    background: transparent;
    pointer-events: none;
    transition: all var(--anim--hover-time) var(--anim--hover-ease);
    --btn-shadow-accent: rgba(90, 169, 255, 0.22);
}

/* Navbar specific scaling */
nav .button-wrap {
    font-size: 0.9rem;
    --btn-shadow-accent: rgba(90, 169, 255, 0.18);
}

.button-shadow {
    --shadow-cuttoff-fix: 2em;
    position: absolute;
    width: calc(100% + var(--shadow-cuttoff-fix));
    height: calc(100% + var(--shadow-cuttoff-fix));
    top: calc(0% - var(--shadow-cuttoff-fix) / 2);
    left: calc(0% - var(--shadow-cuttoff-fix) / 2);
    filter: blur(clamp(2px, 0.125em, 12px));
    -webkit-filter: blur(clamp(2px, 0.125em, 12px));
    overflow: visible;
    pointer-events: none;
}

/* Thinner shadow for nav buttons */
nav .button-shadow {
    --shadow-cuttoff-fix: 1em;
    filter: blur(4px);
}

.button-shadow::after {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    border-radius: 999vw;
    background:
        radial-gradient(120% 120% at 50% 50%, var(--btn-shadow-accent) 0%, rgba(90, 169, 255, 0.12) 35%, rgba(0, 0, 0, 0) 65%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.1));
    width: calc(100% - var(--shadow-cuttoff-fix) - 0.25em);
    height: calc(100% - var(--shadow-cuttoff-fix) - 0.25em);
    top: calc(var(--shadow-cuttoff-fix) - 0.4em);
    left: calc(var(--shadow-cuttoff-fix) - 0.4em);
    padding: 0.125em;
    box-sizing: border-box;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    transition: all var(--anim--hover-time) var(--anim--hover-ease);
    overflow: visible;
    opacity: 1;
}

.button-wrap:has(.custom-btn.is-premium) {
    --btn-shadow-accent: rgba(240, 194, 123, 0.25);
}

.button-wrap:hover .button-shadow {
    filter: blur(clamp(3px, 0.18em, 14px));
    -webkit-filter: blur(clamp(3px, 0.18em, 14px));
}

.custom-btn {
    --border-width: clamp(1px, 0.0625em, 4px);
    --spotlight-color: rgba(90, 169, 255, 0.2);
    all: unset;
    cursor: pointer;
    position: relative;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    pointer-events: auto;
    z-index: 3;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.16),
            rgba(255, 255, 255, 0.06));
    border-radius: 999vw;
    box-shadow:
        inset 0 0.125em 0.125em rgba(0, 0, 0, 0.05),
        inset 0 -0.125em 0.125em rgba(255, 255, 255, 0.4),
        0 0.5em 1.2em -0.4em rgba(0, 0, 0, 0.45),
        0 0 0.35em 0.15em inset rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background var(--anim--hover-time) var(--anim--hover-ease),
        box-shadow var(--anim--hover-time) var(--anim--hover-ease),
        transform 250ms var(--anim--hover-ease);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 46px;
    padding-inline: 1.6em;
}

/* Interactive Spotlight Glow */
.btn-spotlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    pointer-events: none;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), var(--spotlight-color) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.custom-btn:hover .btn-spotlight {
    opacity: 1;
}

.hero .custom-btn {
    font-size: var(--global--size);
}

.custom-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
    box-shadow:
        inset 0 0.125em 0.125em rgba(0, 0, 0, 0.05),
        inset 0 -0.125em 0.125em rgba(255, 255, 255, 0.5),
        0 0.75em 1.5em -0.4em rgba(0, 0, 0, 0.5),
        0 0 18px rgba(255, 255, 255, 0.12);
}

.custom-btn:active {
    transform: translateY(0);
    box-shadow:
        inset 0 0.2em 0.2em rgba(0, 0, 0, 0.12),
        inset 0 -0.1em 0.1em rgba(255, 255, 255, 0.25),
        0 0.3em 0.8em -0.4em rgba(0, 0, 0, 0.45);
}

.custom-btn:focus-visible {
    outline: 2px solid rgba(90, 169, 255, 0.6);
    outline-offset: 3px;
}

/* Special style for the premium action */
.custom-btn.is-premium {
    background: linear-gradient(135deg, rgba(90, 169, 255, 0.2), rgba(31, 107, 255, 0.2));
    border: 1px solid rgba(90, 169, 255, 0.35);
}

.custom-btn.is-premium:hover {
    background: linear-gradient(135deg, rgba(90, 169, 255, 0.35), rgba(31, 107, 255, 0.3));
    box-shadow:
        inset 0 -0.125em 0.125em rgba(255, 255, 255, 0.4),
        0 0 25px rgba(90, 169, 255, 0.35);
    border-color: rgba(90, 169, 255, 0.6);
}

/* Subtle Dotted Grid Overlay */
.grid-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.custom-btn span {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    user-select: none;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
    color: white;
    transition: all var(--anim--hover-time) var(--anim--hover-ease);
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28), 0 1px 0 rgba(255, 255, 255, 0.06);
}

.button-wrap .custom-btn span {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.06);
}

.custom-btn.is-premium span {
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.32), 0 1px 0 rgba(255, 255, 255, 0.07);
}

nav .button-wrap .custom-btn span {
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.22), 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero .custom-btn span {
    padding-inline: 2.5em;
    padding-block: 0.9em;
    font-size: 0.92rem;
}

nav .custom-btn span {
    padding-inline: 1.5em;
    padding-block: 0.6em;
    font-size: 0.78rem;
}

.custom-btn::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    border-radius: 999vw;
    width: calc(100% + var(--border-width));
    height: calc(100% + var(--border-width));
    top: calc(0% - var(--border-width) / 2);
    left: calc(0% - var(--border-width) / 2);
    padding: var(--border-width);
    box-sizing: border-box;
    background: conic-gradient(from var(--angle-1) at 50% 50%,
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0) 5% 40%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0) 60% 95%,
            rgba(0, 0, 0, 0.5)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    transition: all var(--anim--hover-time) var(--anim--hover-ease),
        --angle-1 500ms ease;
    box-shadow: inset 0 0 0 calc(var(--border-width) / 2) rgba(255, 255, 255, 0.5);
}

.custom-btn:hover::after {
    --angle-1: -125deg;
}

.button-wrap:has(button:hover) .button-shadow {
    filter: blur(clamp(2px, 0.0625em, 6px));
    transition: filter var(--anim--hover-time) var(--anim--hover-ease);
}

/* Main Layout */
body {
    font-family: 'Montserrat', sans-serif;
    background: radial-gradient(circle at 50% -20%, #1a2a44 0%, #0a111a 60%, #050505 100%);
    color: white;
    -webkit-font-smoothing: antialiased;
}

html[lang="ar"] body {
    font-family: 'Rubik', 'Montserrat', sans-serif;
    direction: rtl;
}

html[lang="en"] body {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.96rem;
}

html[lang="ar"] .section-title,
html[lang="ar"] .plan-name,
html[lang="ar"] .stat-item h3,
html[lang="ar"] .hero h2,
html[lang="ar"] .nav-left span,
html[lang="ar"] .plan-badge {
    font-family: 'Rubik', 'Montserrat', sans-serif;
    font-weight: 700;
}

html[lang="ar"] .section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4,
html[lang="ar"] h5,
html[lang="ar"] h6,
html[lang="ar"] p,
html[lang="ar"] span,
html[lang="ar"] a,
html[lang="ar"] button,
html[lang="ar"] input,
html[lang="ar"] textarea,
html[lang="ar"] select,
html[lang="ar"] label,
html[lang="ar"] li {
    font-family: 'Rubik', 'Montserrat', sans-serif;
}

.mask-wrapper {
    overflow: visible;
    display: flex;
    justify-content: center;
    width: 100%;
    line-height: 1.3;
}

#tubes-canvas {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    opacity: 0.9;
    mix-blend-mode: screen;
}

/* =============================================
   HERO SECTION — PREMIUM SAAS REDESIGN
   Inspired by: Vercel, Linear, Stripe, Framer
   ============================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 150px 24px 80px;
    z-index: 10;
    text-align: center;
    isolation: isolate;
    overflow: hidden;
    /* Deep Cosmic Blue Gradient - "Like Image" */
    background: 
        /* Central bottom glow */
        radial-gradient(circle at 50% 100%, rgba(59, 130, 246, 0.4) 0%, transparent 60%),
        /* Bottom-up fade */
        linear-gradient(to top, rgba(30, 58, 138, 0.6) 0%, rgba(2, 6, 23, 1) 100%);
    box-shadow: inset 0 -100px 100px -50px rgba(0,0,0,0.8);
}

/* ==== Flash Effect ==== */
.hero-flash {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
    filter: blur(80px);
    animation: heroFlashAnim 8s ease-in-out infinite;
}

@keyframes heroFlashAnim {
    0%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    5% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
    15% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

/* ==== Ambient Orbs ==== */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(90, 169, 255, 0.18) 0%, transparent 70%);
    animation: orbPulse 8s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    top: 30%;
    right: -100px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
    animation: orbPulse 10s ease-in-out infinite 2s;
}

.hero-orb-3 {
    width: 350px;
    height: 350px;
    top: 20%;
    left: -80px;
    background: radial-gradient(circle, rgba(31, 107, 255, 0.1) 0%, transparent 70%);
    animation: orbPulse 12s ease-in-out infinite 4s;
}

@keyframes orbPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1) translateX(var(--tx, -50%));
    }

    50% {
        opacity: 1;
        transform: scale(1.15) translateX(var(--tx, -50%));
    }
}

/* ==== Hero Content ==== */
.hero-content {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ==== Announcement Badge ==== */
.hero-announce {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 6px 14px 6px 6px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    margin-bottom: 32px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: heroFadeInDown 0.7s cubic-bezier(0.16, 1, 0.3, 1) both 0.05s;
    white-space: nowrap;
}

.hero-announce:hover {
    border-color: rgba(90, 169, 255, 0.4);
    background: rgba(90, 169, 255, 0.06);
    color: white;
    transform: translateY(-1px);
}

.hero-announce-badge {
    background: linear-gradient(135deg, #5aa9ff, #1f6bff);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.hero-announce-text {
    flex: 1;
}

.hero-announce-arrow {
    width: 14px;
    height: 14px;
    opacity: 0.5;
    transition: transform 0.2s ease, opacity 0.2s ease;
    flex-shrink: 0;
}

.hero-announce:hover .hero-announce-arrow {
    transform: translateX(-3px);
    opacity: 0.9;
}

@keyframes heroFadeInDown {
    from {
        opacity: 0;
        transform: translateY(-14px);
    }

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

/* ==== Main H1 ==== */
#hero-title {
    font-family: 'Rubik', sans-serif;
    font-size: clamp(2.2rem, 5.5vw, 4.2rem);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    color: #fff;
    -webkit-text-fill-color: #fff;
    filter: none;
    animation: heroFadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both 0.15s;
    white-space: pre-line;
}

#hero-title,
#hero-desc {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    section h1,
    section h2,
    section h3 {
        max-width: 600px;
    }
}
.hero-title-highlight {
    background: linear-gradient(135deg, #5aa9ff 0%, #a78bfa 50%, #34d399 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {

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

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

.mask-wrapper {
    overflow: visible;
    display: flex;
    justify-content: center;
    width: 100%;
    line-height: 1.15;
    margin-bottom: 4px;
}

/* ==== Hero Paragraph ==== */
#hero-desc {
    font-family: 'Rubik', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    max-width: 620px;
    margin: 0 auto 44px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.35s;
}

@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

/* ==== CTA Container ==== */
.hero .cta-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 52px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.55s;
    flex-wrap: wrap;
}

/* Primary CTA */
.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 999px;
    background: linear-gradient(135deg, #5aa9ff, #1f6bff);
    color: white;
    text-decoration: none;
    font-family: 'Rubik', 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 0 0 rgba(90, 169, 255, 0);
    position: relative;
    overflow: hidden;
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-btn-primary:hover::before {
    opacity: 1;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(90, 169, 255, 0.5), 0 0 0 1px rgba(90, 169, 255, 0.3);
}

.hero-btn-primary:active {
    transform: translateY(0);
}

.hero-btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.hero-btn-primary:hover svg {
    transform: translateX(-4px);
}

/* Secondary CTA */
.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: 'Rubik', 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    color: white;
    transform: translateY(-2px);
}

.hero-btn-secondary svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.7;
}

/* ==== Social Proof ==== */
.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    opacity: 0;
    transform: translateY(16px);
    animation: heroFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.75s;
    margin-bottom: 70px;
}

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

.proof-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #050d1f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    margin-left: -10px;
    font-family: 'Rubik', sans-serif;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease;
}

.proof-avatar:first-child {
    margin-left: 0;
}

.proof-avatars:hover .proof-avatar:hover {
    transform: translateY(-3px) scale(1.1);
    z-index: 5;
}

.proof-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.proof-stars {
    color: #f59e0b;
    font-size: 0.7rem;
    letter-spacing: 1px;
    line-height: 1;
}

.proof-text span {
    font-family: 'Rubik', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.3;
}

/* ==== Dashboard Preview Wrap ==== */
.hero-preview-wrap {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    perspective: 1800px;
}

.hero-preview-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse 80% 40% at 50% 100%, rgba(90, 169, 255, 0.25) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(30px);
}

.hero-preview-border {
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.04) 60%, transparent 100%);
    box-shadow:
        0 60px 120px rgba(0.0, 0, 0, 0.8),
        0 0 80px rgba(90, 169, 255, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: rotateX(8deg);
    transform-style: preserve-3d;
    transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    animation: heroPreviewIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) both 0.6s;
    position: relative;
    z-index: 1;
}

.hero-preview-wrap:hover .hero-preview-border {
    transform: rotateX(2deg) translateY(-10px);
}

@keyframes heroPreviewIn {
    from {
        opacity: 0;
        transform: rotateX(20deg) translateY(60px);
    }

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

.hero-preview-inner {
    background: #0a0f1e;
    border-radius: 19px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

/* ==== Browser Chrome ==== */
.hp-chrome {
    display: flex;
    align-items: center;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0 16px;
    gap: 10px;
}

.hp-chrome-dots {
    display: flex;
    gap: 7px;
    align-items: center;
    flex-shrink: 0;
}

.hp-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
    opacity: 0.85;
}

.hp-chrome-bar {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hp-url-bar {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    padding: 5px 14px;
    font-family: 'Montserrat', monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.02em;
    min-width: 200px;
    justify-content: center;
}

.hp-chrome-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.hp-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    display: block;
    box-shadow: 0 0 6px #10b981;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 6px #10b981;
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 12px #10b981;
    }
}

/* ==== Dashboard Layout ==== */
.hp-layout {
    display: flex;
    height: 440px;
}

/* Sidebar */
.hp-sidebar {
    width: 200px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.015);
    border-inline-end: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hp-sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 4px;
    margin-bottom: 8px;
}

.hp-logo-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #5aa9ff, #1f6bff);
    flex-shrink: 0;
}

.hp-logo-text {
    height: 10px;
    width: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
}

.hp-nav-items {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hp-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 10px;
    cursor: default;
    transition: background 0.2s ease;
    color: rgba(255, 255, 255, 0.35);
}

.hp-nav-item.hp-active {
    background: rgba(90, 169, 255, 0.12);
    color: #5aa9ff;
}

.hp-nav-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hp-nav-label {
    font-family: 'Rubik', sans-serif;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
}

/* Main area */
.hp-main {
    flex: 1;
    padding: 20px 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Stats Row */
.hp-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    flex-shrink: 0;
}

.hp-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: border-color 0.3s ease;
}

.hp-stat-card:hover {
    border-color: rgba(90, 169, 255, 0.2);
}

.hp-stat-label {
    font-family: 'Rubik', sans-serif;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hp-stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.hp-unit {
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    margin-right: 2px;
}

.hp-stat-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 999px;
    display: inline-block;
    width: fit-content;
}

.hp-up {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

.hp-neutral {
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.4);
}

/* Content Row */
.hp-content-row {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 14px;
    overflow: hidden;
}

/* Chart Panel */
.hp-chart-panel,
.hp-orders-panel {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
}

.hp-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Rubik', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

.hp-panel-tabs {
    display: flex;
    gap: 4px;
}

.hp-tab {
    font-family: 'Rubik', sans-serif;
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.35);
    cursor: default;
    background: transparent;
}

.hp-tab.hp-tab-active {
    background: rgba(90, 169, 255, 0.15);
    color: #5aa9ff;
}

/* Bar chart */
.hp-chart {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
    min-height: 0;
}

.hp-chart-bars {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding: 0 4px;
}

.hp-bar {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: flex-end;
    border-radius: 9999px 9999px 4px 4px;
    overflow: hidden;
}

.hp-bar-fill {
    width: 100%;
    height: var(--h, 50%);
    background: rgba(90, 169, 255, 0.18);
    border-radius: 4px 4px 2px 2px;
    transition: height 0.4s ease;
}

.hp-bar[data-active] .hp-bar-fill {
    background: linear-gradient(180deg, #5aa9ff 0%, rgba(90, 169, 255, 0.5) 100%);
    box-shadow: 0 0 12px rgba(90, 169, 255, 0.4);
}

.hp-chart-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

/* Orders Panel */
.hp-view-all {
    color: #5aa9ff;
    font-size: 10px;
    font-weight: 500;
    cursor: default;
    white-space: nowrap;
}

.hp-orders-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    overflow: hidden;
}

.hp-order-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: border-color 0.2s ease;
}

.hp-order-row:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.hp-order-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    font-family: 'Rubik', sans-serif;
}

.hp-order-info {
    flex: 1;
    min-width: 0;
}

.hp-order-name {
    font-family: 'Rubik', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hp-order-id {
    font-family: 'Montserrat', monospace;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 1px;
}

.hp-order-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    flex-shrink: 0;
}

.hp-order-status {
    font-family: 'Rubik', sans-serif;
    font-size: 9px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 999px;
    flex-shrink: 0;
    white-space: nowrap;
}

.hp-status-done {
    background: rgba(16, 185, 129, 0.12);
    color: #34d399;
}

.hp-status-pending {
    background: rgba(245, 158, 11, 0.12);
    color: #f59e0b;
}

.preview-slide {
    display: block;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    /* Subtle fade at bottom */
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    max-height: 500px;
    object-fit: cover;
    object-position: top;
}

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

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
}

/* Simplified Footer */
.footer-simplified {
    padding: 40px 20px;
    background-color: #0a192f;
    background-image: url('../all-images/2026.png');
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
}

.footer-simplified::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Overlay to make text more readable */
    z-index: 1;
}

.footer-simplified .footer-content,
.footer-simplified .footer-bottom {
    position: relative;
    z-index: 2;
}

.footer-simplified .footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 20px;
}

.footer-simplified .footer-col {
    max-width: 500px;
}

.footer-simplified .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-simplified .social-links {
    justify-content: center;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
    /* Prevent clicks when hidden */
}

.preview-slider:hover .slider-btn {
    opacity: 1;
    pointer-events: auto;
}

.slider-btn:hover {
    background: linear-gradient(135deg, #5aa9ff, #1f6bff);
    color: #061a3a;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 15px rgba(90, 169, 255, 0.4);
}

.slider-btn.prev {
    right: 20px;
}

.slider-btn.next {
    left: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.slider-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.slider-dot.active {
    background: #5aa9ff;
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(90, 169, 255, 0.4);
}

@keyframes floatPreview {

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

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

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.scroll-down {
    margin-top: 32px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.scroll-down-indicator {
    width: 26px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.scroll-down-indicator::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 10px;
    border-radius: 999px;
    background: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        transform: translate(-50%, -2px);
    }

    40% {
        opacity: 1;
    }

    80% {
        opacity: 0;
        transform: translate(-50%, 12px);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 12px);
    }
}

.proof-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 12px 18px;
    min-width: 150px;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.proof-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
}

.proof-label {
    margin-top: 4px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.08em;
}

@media (max-width: 700px) {
    .hero-proof {
        gap: 12px;
    }

    .proof-card {
        min-width: 130px;
        padding: 10px 14px;
    }
}

@media (max-width: 820px) {
    nav {
        width: 94%;
        padding: 10px 14px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .nav-center {
        order: 3;
        position: static;
        left: auto;
        transform: none;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 18px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        display: none;
    }

    nav.nav-open .nav-center {
        display: flex;
    }

    .nav-left img {
        width: 36px;
        height: 36px;
    }

    .nav-left {
        order: 1;
        gap: 10px;
        max-width: 40vw;
        flex-shrink: 0;
    }

    .nav-left span {
        display: inline-block;
        font-size: 1rem;
        font-weight: 800;
        color: rgba(255, 255, 255, 0.95);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-right {
        order: 2;
        gap: 10px;
    }

    .nav-right .button-wrap {
        display: none;
    }

    .hamburger {
        display: inline-flex;
    }

    .nav-links a {
        font-size: 0.86rem;
    }

    .nav-right .lang-toggle {
        padding: 6px 10px;
        font-size: 0.7rem;
    }

    .nav-right .custom-btn {
        min-height: 36px;
        padding-inline: 1.05em;
    }

    .nav-right .button-shadow {
        display: none;
    }
}

@media (max-width: 480px) {
    nav {
        top: 14px;
        padding: 10px 12px;
        border-radius: 18px;
    }

    .nav-left {
        max-width: 52vw;
    }

    .nav-left span {
        font-size: 0.95rem;
    }

    .nav-center {
        gap: 14px;
        padding-top: 8px;
    }

    .nav-links a {
        font-size: 0.82rem;
    }

    .nav-right {
        gap: 8px;
    }

    .nav-right .lang-toggle {
        padding: 6px 10px;
        font-size: 0.66rem;
    }

    nav .custom-btn span {
        padding-inline: 1.15em;
        padding-block: 0.55em;
        font-size: 0.72rem;
    }

    .hero .cta-container {
        gap: 14px;
        flex-wrap: wrap;
    }

    .hero .custom-btn {
        min-height: 42px;
    }

    .hero .custom-btn span {
        padding-inline: 1.85em;
        padding-block: 0.78em;
        font-size: 0.86rem;
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    justify-content: center;
    opacity: 1;
    transform: none;
}

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

.stat-item h3 {
    font-family: 'Arvo', serif;
    font-size: 1.8rem;
    margin: 0;
    color: white;
}

.stat-item p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 5px 0 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Bottom White Bar - Glass Effect */

/* =============================================
   AI FEATURES SECTION — PREMIUM AI MOCKUP
   ============================================= */
#ai-features {
    padding: 100px 5%;
    background: radial-gradient(circle at 50% 0%, rgba(90, 169, 255, 0.05) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999vw;
    background: rgba(90, 169, 255, 0.1);
    border: 1px solid rgba(90, 169, 255, 0.2);
    color: #5aa9ff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.ai-card {
    position: relative;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ai-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(90, 169, 255, 0.3);
    transform: translateY(-8px);
}

.ai-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 0%), rgba(90, 169, 255, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.ai-card:hover .ai-card-glow {
    opacity: 1;
}

.ai-icon-wrap {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(90, 169, 255, 0.2), transparent);
    border: 1px solid rgba(90, 169, 255, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #5aa9ff;
    box-shadow: 0 0 20px rgba(90, 169, 255, 0.1);
}

.ai-card h3 {
    font-family: 'Rubik', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.ai-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin: 0;
}

/* AI Visual Mockup */
.ai-visual-wrap {
    max-width: 900px;
    margin: 0 auto;
    perspective: 2000px;
}

.ai-visual-inner {
    position: relative;
    background: #0a0f1e;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 40px rgba(90, 169, 255, 0.1);
    overflow: hidden;
    /* transform: rotateX(5deg); */
    transition: transform 0.6s ease;
}

.ai-visual-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 100% 0%, rgba(90, 169, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 0% 100%, rgba(124, 58, 237, 0.05) 0%, transparent 40%);
}

.ai-visual-content {
    padding: 40px;
    position: relative;
    z-index: 1;
}

.ai-chat-mock {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.chat-msg {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    animation: chatMessageIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.chat-msg.bot {
    flex-direction: row;
}

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

.msg-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #5aa9ff, #1f6bff);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.msg-bubble {
    padding: 12px 18px;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.5;
    font-family: 'Rubik', sans-serif;
}

.chat-msg.bot .msg-bubble {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    border-bottom-left-radius: 4px;
}

.chat-msg.user .msg-bubble {
    background: rgba(90, 169, 255, 0.15);
    border: 1px solid rgba(90, 169, 255, 0.3);
    color: #fff;
    border-bottom-right-radius: 4px;
}

@keyframes chatMessageIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }

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

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

    .ai-card {
        padding: 30px;
    }

    .ai-visual-content {
        padding: 24px;
    }
}

.bottom-feature-bar {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.scroll-reveal-section {
    position: relative;
    background: transparent;
    z-index: 5;
    padding-top: 100px;
}

.bottom-feat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    opacity: 1;
    transform: none;
}

.bottom-feat-icon {
    width: 50px;
    height: 50px;
    background: rgba(90, 169, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5aa9ff;
    font-size: 1.3rem;
    border: 1px solid rgba(90, 169, 255, 0.1);
}

.bottom-feat-info h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
}

.bottom-feat-info p {
    margin: 2px 0 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Fixed Info Position Adjusted */
.info {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 90;
    display: none;
}

/* Reusable Section Styles */
.section-dark {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(38px) saturate(185%);
    -webkit-backdrop-filter: blur(38px) saturate(185%);
    padding: 60px 5%;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#contact.section-dark {
    padding-top: 140px;
}

.page-plans #pricing.section-dark {
    padding-top: 140px;
}

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Orbitron', 'Rubik', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
    max-width: 540px;
    line-height: 1.1;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 3px 16px rgba(90, 169, 255, 0.14), 0 1px 0 rgba(255, 255, 255, 0.05);
}

html[lang="en"] .section-title {
    font-family: 'Rubik', 'Montserrat', sans-serif;
    font-weight: 500 !important;
    -webkit-text-fill-color: initial;
    text-shadow: none;
}
@media (min-width: 1024px) {
    .section-title {
        max-width: 520px;
    }
}

.section-title.ml7 {
    background: none;
    -webkit-text-fill-color: unset;
    color: rgba(255, 255, 255, 0.95);
}

.section-title.ml7 .letter {
    color: rgba(255, 255, 255, 0.95);
    -webkit-text-fill-color: currentColor;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

#contact .section-subtitle {
    margin-top: 80px;
}

.page-plans #pricing-subtitle {
    margin-top: 18px;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
    border-color: rgba(90, 169, 255, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(90, 169, 255, 0.2), rgba(6, 26, 58, 0.2));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #5aa9ff;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-family: 'Arvo', serif;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    font-size: 0.95rem;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.capabilities-media {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.capabilities-media:hover {
    transform: translateY(-6px);
    border-color: rgba(90, 169, 255, 0.2);
}

.capabilities-image img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
    object-fit: cover;
}

.capabilities-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.capabilities-text h3 {
    font-family: 'Arvo', serif;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.capabilities-text p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .capabilities-text h3 {
        font-size: 1.5rem;
    }
}

/* How It Works Steps */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.step-number {
    font-family: 'Arvo', serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.step-content h3 {
    font-family: 'Arvo', serif;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .step-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* Testimonials */
.reviews-marquee {
    position: relative;
    display: grid;
    gap: 18px;
    overflow: visible;
    padding: 10px 0;
}

.marquee-row {
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee var(--duration, 28s) linear infinite;
    will-change: transform;
}

.marquee-set {
    display: flex;
    gap: 18px;
    padding-inline-end: 18px;
}

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

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

.review-card {
    width: 270px;
    min-height: 190px;
    background: transparent;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: none;
    padding: 18px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    background: transparent;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.review-meta figcaption {
    margin: 0;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
}

.review-meta p {
    margin: 2px 0 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.review-card blockquote {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
}

.marquee-blur {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 18%;
    pointer-events: none;
    z-index: 2;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.marquee-blur-left {
    left: 0;
    background: none;
}

.marquee-blur-right {
    right: 0;
    background: none;
}

.reviews-cta {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

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

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

@media (max-width: 768px) {
    .review-card {
        width: 230px;
        min-height: 180px;
    }
}

/* Pricing Upgrade - Enhanced Visibility */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 35px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 380px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 900px) {
    .pricing-card {
        min-height: auto;
    }
}

.pricing-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(90, 169, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 20px rgba(90, 169, 255, 0.1);
}

/* Staggered entrance delay for pricing cards */
.pricing-card:nth-child(1) {
    --delay: 0ms;
}

.pricing-card:nth-child(2) {
    --delay: 150ms;
}

.pricing-card:nth-child(3) {
    --delay: 300ms;
}

.pricing-card:nth-child(4) {
    --delay: 450ms;
}

/* Enhanced hover animations */
.pricing-card .plan-identity i.bg-icon {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

.pricing-card:hover .plan-identity i.bg-icon {
    transform: rotate(15deg) scale(1.2) translate(10px, -10px);
    opacity: 0.08;
}

.pricing-card .feature-item-mini i {
    transition: transform 0.3s ease, color 0.3s ease;
}

.pricing-card:hover .feature-item-mini i {
    transform: scale(1.2);
    color: #fff;
}

.pricing-card .custom-btn {
    width: 100%;
    justify-content: center;
    min-height: 46px;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        inset 0 0.08em 0.12em rgba(255, 255, 255, 0.12),
        0 0.6em 1.2em -0.6em rgba(0, 0, 0, 0.7);
}

.pricing-card .button-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

.pricing-card .custom-btn:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
    border-color: rgba(90, 169, 255, 0.35);
    box-shadow:
        inset 0 0.1em 0.16em rgba(255, 255, 255, 0.18),
        0 0.8em 1.6em -0.6em rgba(0, 0, 0, 0.75),
        0 0 16px rgba(90, 169, 255, 0.18);
    transform: translateY(-1px);
}

.pricing-card .custom-btn span {
    padding-inline: 2.1em;
    padding-block: 0.8em;
}

.pricing-card .custom-btn::after {
    opacity: 0.6;
}

.pricing-card .custom-btn:active {
    transform: translateY(0);
    box-shadow:
        inset 0 0.2em 0.25em rgba(0, 0, 0, 0.25),
        0 0.5em 1.2em -0.6em rgba(0, 0, 0, 0.6);
}

.plan-identity {
    width: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
}

@media (max-width: 900px) {
    .plan-identity {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 30px;
    }
}

.plan-identity i.bg-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 8rem;
    opacity: 0.03;
    transform: rotate(-10deg);
}

.plan-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.plan-name {
    font-family: 'Arvo', serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
    font-weight: 700;
}

.plan-price {
    font-family: 'Arvo', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.plan-price span {
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.plan-features-container {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 900px) {
    .plan-features-container {
        padding: 30px;
    }
}

.features-grid-mini {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.feature-item-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.feature-item-mini i {
    color: #5aa9ff;
    font-size: 1rem;
    width: 18px;
}

/* Plan-Specific Accent Colors */
.plan-free .plan-price {
    color: #5aa9ff;
}

.plan-basic .plan-price {
    color: #1f6bff;
}

.plan-pro .plan-price {
    color: #5aa9ff;
}

.plan-enterprise .plan-price {
    color: #7cc0ff;
}

.price-subtext {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-bottom: 25px;
    line-height: 1.4;
}

.pricing-card.featured::before {
    content: "MOST POPULAR";
    position: absolute;
    top: 25px;
    left: -30px;
    background: #5aa9ff;
    color: #061a3a;
    padding: 4px 35px;
    font-size: 0.6rem;
    font-weight: 900;
    transform: rotate(-45deg);
    z-index: 10;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    animation: badgePulse 2s infinite ease-in-out;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: rotate(-45deg) scale(1);
    }

    50% {
        transform: rotate(-45deg) scale(1.1);
    }
}

/* Section Background Glow */
#pricing {
    position: relative;
    overflow: hidden;
}

#pricing::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(90, 169, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Footer */
footer {
    background: rgba(5, 5, 5, 0.35);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    padding: 60px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: white;
    font-family: 'Arvo', serif;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #5aa9ff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.made-with-love {
    color: #e7eefc;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 1px;
    opacity: 1;
    z-index: 100;
    transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    margin-top: 8px;
    display: block;
    padding: 6px 12px;
    background: rgba(31, 107, 255, 0.18);
    border-radius: 20px;
    border: 1px solid rgba(231, 238, 252, 0.2);
    text-shadow: none;
    filter: none;
    transform: none;
}

@keyframes pulseLove {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.made-with-love:hover {
    opacity: 1;
    background: rgba(31, 107, 255, 0.28);
    border-color: rgba(231, 238, 252, 0.35);
}

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

.social-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #5aa9ff;
}

/* Helpers for Extracted Inline Styles */
.footer-logo-text {
    font-family: 'Arvo', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.6;
}

.section-title {
    font-family: 'Orbitron', 'Rubik', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 3px 16px rgba(90, 169, 255, 0.14), 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mb-20 {
    margin-bottom: 20px;
}

/* Plan Specific Helpers & Inline Replacements */
.badge-discovery {
    background: rgba(90, 169, 255, 0.1);
    color: #5aa9ff;
}

.btn-discovery {
    --spotlight-color: rgba(90, 169, 255, 0.3);
}

.badge-foundation {
    background: rgba(31, 107, 255, 0.1);
    color: #1f6bff;
}

.btn-foundation {
    --spotlight-color: rgba(31, 107, 255, 0.3);
}

.badge-professional {
    background: rgba(90, 169, 255, 0.1);
    color: #5aa9ff;
}

.btn-professional {
    --spotlight-color: rgba(90, 169, 255, 0.4);
}

.badge-enterprise {
    background: rgba(124, 192, 255, 0.1);
    color: #7cc0ff;
}

.btn-enterprise {
    --spotlight-color: rgba(124, 192, 255, 0.3);
}

.btn-start {
    --angle-1: -75deg;
}

.btn-explore {
    --angle-1: -45deg;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: start;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 36px;
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
    transition: all 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(90, 169, 255, 0.3);
}

.contact-kicker {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(90, 169, 255, 0.12);
    color: #5aa9ff;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-title {
    font-family: 'Arvo', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: white;
    margin-bottom: 12px;
}

.contact-text {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 24px;
}

.contact-list {
    display: grid;
    gap: 18px;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(31, 107, 255, 0.45);
    background: rgba(255, 255, 255, 0.06);
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(31, 107, 255, 0.18);
    color: #e7eefc;
    font-size: 1rem;
}

.contact-item-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-item-label {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
}

.contact-item-value {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.contact-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-social-links {
    display: flex;
    gap: 16px;
}

.contact-social-links a {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.contact-social-links a:hover {
    border-color: rgba(90, 169, 255, 0.4);
    color: #5aa9ff;
    transform: translateY(-2px);
}

.contact-form {
    display: grid;
    gap: 18px;
}

.contact-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-label {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.contact-input,
.contact-textarea {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 14px 16px;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-input:focus,
.contact-textarea:focus {
    border-color: rgba(31, 107, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
}

.contact-submit {
    width: 100%;
    margin-top: 6px;
}

.contact-submit .custom-btn {
    width: 100%;
    justify-content: center;
}

.contact-submit .custom-btn span {
    padding-inline: 1.25em;
    padding-block: 0.5em;
    font-size: 0.74rem;
}

.faq-section {
    margin-top: 50px;
    display: grid;
    gap: 24px;
}

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

.faq-title {
    font-family: 'Arvo', serif;
    color: white;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 10px;
}

.faq-subtitle {
    color: rgba(255, 255, 255, 0.55);
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    padding: 0 20px;
    transition: all 0.3s ease;
}

.faq-item[open] {
    border-color: rgba(90, 169, 255, 0.35);
    background: rgba(255, 255, 255, 0.06);
}

.faq-question {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    color: white;
    font-weight: 600;
}

.faq-question::marker,
.faq-question::-webkit-details-marker {
    display: none;
}

.faq-answer {
    padding-bottom: 18px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

@media (max-width: 768px) {
    body {
        background:
            radial-gradient(600px 420px at 50% -20%, rgba(90, 169, 255, 0.14), transparent 65%),
            linear-gradient(180deg, #0a1328 0%, #050812 55%, #020308 100%);
    }

    #tubes-canvas,
    .grid-overlay {
        display: none;
    }

    /* New Hero Responsive */
    .hero {
        padding: 120px 16px 60px;
    }

    .hero-orb-1 {
        width: 320px;
        height: 320px;
    }

    .hero-orb-2,
    .hero-orb-3 {
        display: none;
    }

    .hero-announce {
        font-size: 0.74rem;
        padding: 5px 10px 5px 5px;
        max-width: 90vw;
        white-space: normal;
        text-align: center;
    }

    .hero-announce-text {
        white-space: normal;
        text-align: center;
    }

    #hero-title {
        font-size: clamp(1.8rem, 9vw, 2.8rem);
        letter-spacing: -0.01em;
    }

    #hero-desc {
        font-size: 0.95rem;
    }

    .hero .cta-container {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        justify-content: center;
        width: 100%;
        padding: 15px 24px;
    }

    .hero-social-proof {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

    /* Dashboard preview responsive */
    .hero-preview-wrap {
        max-width: 100%;
        overflow: hidden;
    }

    .hero-preview-border {
        transform: none;
        animation: none;
        opacity: 1;
    }

    .hero-preview-wrap:hover .hero-preview-border {
        transform: none;
    }

    @keyframes heroPreviewIn {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

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

    .hp-layout {
        height: auto;
        min-height: 300px;
    }

    .hp-sidebar {
        display: none;
    }

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

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

    .hp-orders-panel {
        display: none;
    }

    .hp-main {
        padding: 14px;
    }

    /* Old responsive */
    .preview-card {
        transform: none;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
        backdrop-filter: none;
    }

    .slider-btn {
        opacity: 1;
        pointer-events: auto;
    }

    .slider-dots {
        backdrop-filter: none;
    }

    html[lang="en"] .hero h1 {
        max-width: 12ch;
        line-height: 1.05;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        text-align: center;
    }

    .footer-info {
        align-items: center;
    }

    .made-with-love {
        font-size: 0.95rem;
        padding: 6px 14px;
    }
}

/* =========================================
   New Content Sections (About, Stats, FAQ)
   ========================================= */

/* About Section */
.about-section {
    position: relative;
    background: radial-gradient(circle at top right, rgba(31, 107, 255, 0.08), transparent 40%),
                radial-gradient(circle at bottom left, rgba(90, 169, 255, 0.05), transparent 40%),
                #020308;
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.02), transparent);
    pointer-events: none;
}

/* Stats Section */
.stats-section {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-family: 'Arvo', serif;
    background: linear-gradient(135deg, #fff 0%, #5aa9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* FAQ Enhancements for Cards */
.faq-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    display: block;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(90, 169, 255, 0.3);
    transform: translateY(-5px);
}

.faq-item h3 {
    color: white;
    font-family: 'Arvo', serif;
    margin-bottom: 15px;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Utility Fallbacks */
.bg-darkBlue-900 {
    background-color: #020308 !important;
}

.bg-darkBlue-800 {
    background-color: #050812 !important;
}

@media (max-width: 768px) {
    .stats-section .grid {
        gap: 2rem;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
}
