/*//////////////////////////
////////////////////////////
NAVBAR
///////////////////////////*/
/* Base */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Orbitron:wght@700&family=Sora:wght@400;700&family=Space+Grotesk:wght@400;700&family=Rajdhani:wght@600;700&family=Exo+2:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');

:root {

    --bg: #10142a;
    --primary: #00f2ff;
    --accent: #7000ff;
    --text: #ffffff;
    --primary1: #2c6bf7;
    --primary2: #327ed4;
    --card: rgb(249, 249, 249);
    --muted: grey;
    --font: 'Inter';
    --extra-font: 'Poppins';
    --card-shadow: 25px 30px 55px #5557;
    --small-shadow: 4px 7px 10px #00000017;
    --trans: 0.3s ease;
    --primary-cyan: #00f2ff;
    --dark-bg: #060918;
    --card-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    /*--accent: #5B6EF5;*/
    --accent-light: rgba(91, 110, 245, 0.08);
    --card-border: rgba(255, 255, 255, 0.08);
    --card-bg: rgba(143, 167, 255, 0.045);
    --text-primary: #E8ECF8;
    --text-muted: #5A6480;
    --popup-w: 300px;
}

*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg);
    background-image: radial-gradient(circle at top, #0b1e49 0%, #000000 100%);
    color: var(--text);
    overflow-x: hidden;
    min-height: 100vh;
    align-items: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}



body.arabic-font {
    font-family: 'Cairo', sans-serif !important;
    font-size: 1.1rem;
    line-height: 1.8;
}

body.arabic-font *:not(i[class*="fa"]) {
    font-family: 'Cairo', sans-serif !important;
}

body.arabic-font h1,
body.arabic-font h2,
body.arabic-font h3 {
    font-family: 'Cairo', sans-serif !important;
    font-weight: 700;
}

body.arabic-font input,
body.arabic-font select,
body.arabic-font label,
body.arabic-font span,
body.arabic-font th,
body.arabic-font td,
body.arabic-font small,
body.arabic-font .image_text {
    font-family: 'Cairo', sans-serif !important;
}

body.arabic-font i {
    text-align: center;
}


body.arabic-font button {
    font-family: 'Cairo', sans-serif !important;
    margin-left: 0px;
}

body.arabic-font .diam_prem .premium-status,
body.arabic-font .gold_prem .premium-status {
    left: 20px;
    top: 20px;
    right: auto;
}

body.arabic-font .endingdate {
    left: 20px;
    bottom: 20px;
    right: auto;
}

body.arabic-font .dash-header,
body.arabic-font .header-right {
    flex-direction: row-reverse;
}

body.arabic-font .product-profit {
    left: 10px !important;
    right: auto;
}

body.arabic-font iframe {
    transform-origin: right top !important;
}


main {
    align-items: center;
    justify-content: center;
    width: 100vw;
}



.main-header {
    position: fixed;
    width: 100%;
    top: 0;
    /* Initial state: semi-transparent */
    background: rgba(3, 5, 8, 0);
    z-index: 10000;
    border-bottom: 1px solid rgba(24, 24, 24, 0);

    /* Prepares the browser for smooth blurring */
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);

    /* Smooth fallback if JS isn't used */
    transition: background 0.4s ease, backdrop-filter 0.2s ease, border-color 0.1s ease;
}

.container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

/* Logo */

.logo {
    width: 90px;

}

.logo img {
    width: 100%;
    height: auto;
    transition: 0.3s ease-in-out;
    filter: brightness(2.5);
}

.logo img:hover {
    filter: brightness(1.5) drop-shadow(0px 4px 15px #0565fe);
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    position: relative;
    text-decoration: none;
    color: #e4e4e4;
    font-weight: 400;
    font-size: 14px;
    transition: var(--trans);
}

/* Hover underline animation */
.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    border-radius: 50px;
    background: linear-gradient(-45deg, var(--primary) -31%, #15193900 99%);
    transition: 0.5s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary);
}

/* Actions */
.actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.lang select {
    border: none;
    background: transparent;
    cursor: pointer;
}

.account-btn {
    padding: 8px 14px !important;
    cursor: pointer;
    transition: 0.3s !important;
    border: none;
    font-size: 12px !important;
    letter-spacing: 0.5px !important;
    text-transform: none !important;
    font-family: Poppins;
    font-weight: 500 !important;
}

.account-btn:hover {
    transform: translateY(-2px) !important;
}


/* Burger */
.burger {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

/* Overlay */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -350px;
    width: 280px;
    height: 100%;
    background: radial-gradient(var(--bg), #03060fe8);
    padding: 20px;
    transition: left 0.3s ease-in-out, box-shadow 0.8s ease-in-out;
    z-index: 10000;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    left: 0;
    box-shadow: 78px -1px 52px #03060fa3;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.mobile-menu a {
    text-decoration: none;
    color: #f1f1f1;
    font-size: 16px;
    margin-bottom: 8px;
    transition: var(--trans);
}

.mobile-menu a:hover {
    color: var(--primary);
    text-shadow: 1px 1px 12px #00f2ff;
}

.mobile-top {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.close-menu {
    align-self: flex-end;
    border: none;
    background: none;
    font-size: 20px;
    color: white;
    cursor: pointer;
    text-shadow: 0px 0px 7px #00f2ff;
}

/* Responsive */
@media (max-width: 900px) {

    .nav-menu,
    .actions {
        display: none;
    }

    .burger {
        display: block;
    }

    .lang-dropdown {
        padding: 15px !important;
    }

    .account-btn {
        padding: 14px 14px !important;
        color: black !important;
    }
}

/*LANG DROP DOWN*/
.lang-dropdown {
    position: relative;
    cursor: pointer;
    padding: 7px;
    border-radius: 7px;
    border: 1px solid #00f2ff21;
    font-size: 13px;
    transition: var(--trans);
}

.lang-dropdown:hover {
    border: 1px solid #00f2ff87;
    box-shadow: 1px 5px 23px #04888f85;
}

.selected-lang {
    display: flex;
    align-items: center;
    gap: 6px;
}

.selected-lang img {
    width: 18px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
}

.lang-options {
    position: absolute;
    top: 120%;
    left: 0;
    background: var(--bg);
    border: 1px solid #00f2ff21;
    border-radius: 8px;
    display: none;
    flex-direction: column;
    min-width: 100px;
    overflow: hidden;
}

.lang-options div {
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}

.lang-options div img {
    width: 18px;
    height: 12px;
}

.lang-options div:hover {
    background: #00f2ff36;
}

/* Show dropdown */
.lang-dropdown.active .lang-options {
    display: flex;
}

.mobile-actions {
    display: flex;
    gap: 17px;
    flex-direction: column-reverse;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: stretch;
}





/* HERO GRID */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font);
}

/* GRID BACKGROUND */
.grid-bg {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 242, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    perspective: 1000px;
    transform: rotateX(20deg);
    z-index: -1;
}

/* LAYOUT */
.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
    margin-top: 80px;
    width: 100%;
    z-index: 2;

}

/* TEXT */
h1 {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 20px;
    font-family: var(--extra-font);
}

h1 span {
    background: linear-gradient(90deg, #00f2ff, #7000ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    width: 380px;
}

.hero-p {
    font-size: 1.2rem;
    color: #8b95a5;
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-group {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 18px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-transform: uppercase;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 242, 255, 0.5);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #00f2ff70;

}

/* CAROUSEL */
.hero-visual {
    min-height: 600px;
    align-content: center;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(2px 15px 96px #002ba28d);
    transition: var(--trans);
}

.hero-visual img:hover {

    filter: drop-shadow(2px 4px 96px #0084ff);
}

[data-tilt] {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.hero-bg-im {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    /* Position it at the bottom 20% */
    top: 0;
    left: 0;
    opacity: 0.6;
    /* Initial state: pushed down slightly to start at that 20% mark */
    transform: scale(1.5) translateY(50%);
    pointer-events: none;
    will-change: transform, opacity, filter;
}

.hero-bg-im img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Keeps your aspect ratio as requested */
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        margin-top: 85px;
        overflow: hidden !important;

    }

    h1 span {
        width: auto;
    }

    .cta-group {
        justify-content: center;
    }

    .hero-p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        min-height: auto;
        margin-top: 25px;

    }

    .hero-visual img {
        filter: drop-shadow(0px -16px 35px #0084ff96);

    }

    .hero-visual img:hover {
        filter: drop-shadow(0px -26px 35px #0084ff96);
    }

    .hero-bg-im {
        width: 100vw;
        height: 100%;
        opacity: 0.1 !important;
        top: 0;
        transform: scale(2) translateY(-10%);
    }
}









/********************************CAROUSEL TEMPLATE******************/
.preview_temp_l {
    transition: var(--trans);
    position: absolute;
    right: 20px;
    top: 20px;
    background: #fefefe;
    color: var(--bg);
    padding: 6px;
    z-index: 22;
    opacity: 0.4;
    border-radius: 4px;
}

.preview_temp_l:hover {
    opacity: 1;
    box-shadow: 1px 0px 29px #00f2ff9e;
    background: #00f2ff;
}

.templates-section {
    background: linear-gradient(360deg, transparent, #10142a 66%, transparent 98%);
    padding: 60px 20px;
    overflow: hidden;
    color: white;
    font-family: var(--font);
    text-align: center;
    position: relative;
    z-index: 3;

}

/* Info Bar */
.info-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 15px;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.info-item {
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-item i {
    color: var(--primary-cyan);
}

/* Title */
.section-title {
    font-size: 2rem;
    margin-bottom: 50px;
    font-weight: 600;
}

/* Carousel Styles */
.carousel-container {
    max-width: 1400px;
    /* Increased to allow space for the "peeking" slides */
    margin: 0 auto;
    position: relative;
    padding: 0 60px;
    /* This creates the fade effect on the left and right edges */
    mask-image: linear-gradient(to right,
            transparent 0%,
            black 5%,
            black 95%,
            transparent 100%);
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 5%,
            black 95%,
            transparent 100%);
}

/* Ensure slides don't get cut off abruptly by parent containers */
.swiper {
    padding: 20px 0;
    overflow: visible !important;
    /* Critical for showing slides outside the box */
}

/* Navigation Arrows - Positioning them over the faded area */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-cyan) !important;
    background: rgba(0, 0, 0, 0.5);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    z-index: 100;
    top: 45% !important;
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: bold;
}

.swiper-button-prev {
    left: 10px !important;
}

.swiper-button-next {
    right: 10px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-cyan);
    color: #000 !important;
    box-shadow: 0 0 25px var(--primary-cyan);
    transform: scale(1);
}

/* Slight Fading for non-active slides (Optional extra touch) */
.swiper-slide {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.swiper-slide-active,
.swiper-slide-next,
.swiper-slide-next+.swiper-slide,
.swiper-slide-next+.swiper-slide+.swiper-slide {
    opacity: 1;
}

.template-card {
    background: linear-gradient(113deg, #3c52f93d, transparent);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.template-name {
    padding: 15px;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Hover Effects */
.template-card:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
}

.img-wrapper {
    overflow: hidden;
    max-height: 220px;
}

.template-card img {
    width: 100%;
    display: block;
    transition: none;
}

.template-card:hover img {
    animation: scrollDown 8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(calc(-100% + 220px));
    }

    100% {
        transform: translateY(0);
    }
}

/* Swiper Nav Customization */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-cyan) !important;
    transform: scale(0.7);
}

/* Button */
.explore-btn {
    margin-top: 50px;
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(37, 117, 252, 0.3);
}

.explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 117, 252, 0.5);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .info-bar {
        gap: 15px;
        display: none;
    }

    .section-title {
        font-size: 1rem;
        text-transform: uppercase;
    }

    .carousel-container {
        padding: 0 20px;
    }
}


/*FEATURES SECTION
 /* ─── KEYFRAMES ─── */
@keyframes wiggle {
    0% {
        transform: rotate(0deg) scale(1.08);
    }

    15% {
        transform: rotate(-8deg) scale(1.10);
    }

    30% {
        transform: rotate(8deg) scale(1.10);
    }

    45% {
        transform: rotate(-6deg) scale(1.09);
    }

    60% {
        transform: rotate(6deg) scale(1.09);
    }

    75% {
        transform: rotate(-3deg) scale(1.08);
    }

    90% {
        transform: rotate(3deg) scale(1.08);
    }

    100% {
        transform: rotate(0deg) scale(1.08);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-badge {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(91, 110, 245, .4);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(91, 110, 245, 0);
    }
}

/* ─── SECTION ─── */
.features-section {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 14px 40px;
    align-items: center;
}

.features-section::before {
    content: '';
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 50%;
    background: radial-gradient(ellipse at center top, rgba(80, 80, 255, .12) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* ─── HEADER ─── */
.section-header {
    text-align: center;
    margin-bottom: 48px;
    animation: fadeUp .7s ease both;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(120, 130, 255, .4);
    border-radius: 100px;
    padding: 7px 20px;
    font-size: 11px;
    font-weight: 500;
    color: #8899CC;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: pulse-badge 3s ease infinite;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

.headline {
    font-family: var(--font);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: .03em;
}

.headline .line1 {
    display: block;
    font-size: clamp(36px, 6vw, 60px);
    color: var(--text-primary);
}

.headline .line2 {
    display: block;
    font-size: clamp(36px, 6vw, 60px);
    color: var(--text-primary);
}

.headline .line2 span {
    color: var(--primary1);
}

/* ─── GRID ─── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
}

/* ─── CARD ─── */
.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 28px 20px 26px;
    text-align: center;
    cursor: default;
    position: relative;
    overflow: visible;
    transition:
        transform .3s cubic-bezier(.34, 1.56, .64, 1),
        border-color .25s, background .25s, box-shadow .25s;
    animation: fadeUp .6s ease both;
}

.feature-card:nth-child(1) {
    animation-delay: .05s
}

.feature-card:nth-child(2) {
    animation-delay: .10s
}

.feature-card:nth-child(3) {
    animation-delay: .15s
}

.feature-card:nth-child(4) {
    animation-delay: .20s
}

.card:nth-child(5) {
    animation-delay: .25s
}

.feature-card:nth-child(6) {
    animation-delay: .30s
}

.feature-card:nth-child(7) {
    animation-delay: .35s
}

.feature-card:nth-child(8) {
    animation-delay: .40s
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: radial-gradient(circle at 50% 0%, rgba(91, 110, 245, .10), transparent 70%);
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
}

.feature-card:hover,
.feature-card.active {
    transform: translateY(-7px);
    border-color: rgb(66 211 254 / 67%);
    background: var(--accent-light);
    box-shadow: 0 0 0 1px rgb(91 173 245 / 15%), 0 12px 40px rgb(91 140 245 / 18%), inset 0 0 30px rgba(91, 110, 245, .05);
}

.feature-card:hover::before,
.feature-card.active::before {
    opacity: 1;
}

.feature-card:hover .icon-wrap svg,
.feature-card.active .icon-wrap svg {
    filter: drop-shadow(0 0 8px rgba(29, 81, 253, 0.7)) hue-rotate(-26deg) brightness(1.5);
}

.feature-card:hover .card-title,
.feature-card.active .card-title {
    color: #11caff;
}

.feature-card:hover .card-desc,
.feature-card.active .card-desc {
    color: #6ca3c2;
}

/* ─── ICON ─── */
.icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 18px;
}

.icon-wrap svg {
    width: 80px;
    height: 80px;
    transition: filter .25s;
}

/* ─── TEXT ─── */
.card-title {
    font-family: var(--font);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.25;
    letter-spacing: .02em;
    transition: color .2s;
}

.card-desc {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.65;
    font-weight: 300;
}

/* ─── EXPLORE BTN ─── */

/* ═══════════════════════════════════════════
       VIDEO POPUP
    ═══════════════════════════════════════════ */
#video-popup {
    position: fixed;
    width: var(--popup-w);
    border-radius: 16px;
    border: 1px solid rgba(91, 150, 245, 0.55);
    background: #0d1628;
    box-shadow:
        0 0 0 1px rgba(91, 127, 245, 0.2),
        0 24px 60px rgba(0, 0, 0, .75),
        0 0 50px rgba(91, 160, 245, 0.2);
    overflow: hidden;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: scale(.88) translateY(8px);
    transition: opacity .2s ease, transform .22s cubic-bezier(.34, 1.4, .64, 1);
    will-change: transform, opacity;
}

#video-popup.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

/* fake browser chrome */
.popup-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    background: rgba(255, 255, 255, .04);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.popup-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.popup-dot-r {
    background: #FF5F57;
}

.popup-dot-y {
    background: #FEBC2E;
}

.popup-dot-g {
    background: #28C840;
}

.popup-bar-title {
    flex: 1;
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, .3);
    letter-spacing: .05em;
    text-transform: uppercase;
}

/* video area */
.popup-video-wrap {
    position: relative;
    width: 100%;
    padding-top: 60%;
    background: #060818;
    overflow: hidden;
}

.popup-video-wrap video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1) contrast(1.3) saturate(0.9) hue-rotate(2deg);
}

/* scanlines */
.popup-video-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg,
            transparent 0px, transparent 3px,
            rgba(0, 0, 0, .06) 3px, rgba(0, 0, 0, .06) 4px);
    pointer-events: none;
}

/* placeholder */
.popup-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.play-ring {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(91, 153, 245, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(91, 153, 245, 0.1);
    animation: pulse-badge 2s ease infinite;
}

.play-ring svg {
    width: 16px;
    height: 16px;
    margin-left: 2px;
}

.popup-placeholder p {
    font-size: 11px;
    color: rgba(255, 255, 255, .28);
    text-align: center;
    padding: 0 20px;
    line-height: 1.55;
}

.popup-placeholder .popup-feature-tag {
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    color: rgba(91, 135, 245, 0.7);
    letter-spacing: .05em;
}

/* footer */
.popup-footer {
    padding: 10px 14px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.popup-label {
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    color: #aacdff;
    letter-spacing: .03em;
}

.popup-learn-btn {
    font-size: 10px;
    color: rgba(91, 110, 245, .8);
    border: 1px solid rgba(91, 110, 245, .35);
    border-radius: 6px;
    padding: 4px 10px;
    cursor: pointer;
    background: transparent;
    font-family: var(--font);
    transition: background .15s, color .15s;
}

.popup-learn-btn:hover {
    background: rgba(91, 110, 245, .2);
    color: #c0caff;
}

/* arrow */
#popup-arrow {
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
    transition: opacity .2s;
    width: 0;
    height: 0;
}

#popup-arrow.visible {
    opacity: 1;
}

/* We draw the arrow via a tiny inline SVG positioned by JS */
#popup-arrow-svg {
    position: fixed;
    pointer-events: none;
    z-index: 9997;
    opacity: 0;
    transition: opacity .2s;
}

#popup-arrow-svg.visible {
    opacity: 1;
}

/* ─── CTA ─── */
.cta-wrap {
    text-align: center;
    margin-top: 44px;
    animation: fadeUp .7s .45s ease both;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #4A5FE8 0%, #7B6EF5 100%);
    border: none;
    border-radius: 50px;
    padding: 17px 52px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    font-family: var(--font);
    letter-spacing: .02em;
    box-shadow: 0 4px 28px rgba(91, 110, 245, .4);
    transition: transform .2s cubic-bezier(.34, 1.56, .64, 1), box-shadow .2s;
    position: relative;
    overflow: hidden;
}

.cta-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .15), transparent);
    opacity: 0;
    transition: opacity .2s;
}

.cta-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 36px rgba(91, 110, 245, .55);
}

.cta-btn:hover::after {
    opacity: 1;
}

.cta-btn:active {
    transform: scale(.98);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .card {
        padding: 20px 14px 18px;
    }

    .icon-wrap,
    .icon-wrap svg {
        width: 60px;
        height: 60px;
    }

    .card-title {
        font-size: 11px;
        font-weight: 500;
    }

    .card-desc {
        font-size: 9.5px;
    }

    .feature-card {

        padding: 9px 10px 10px;

    }

    .cta-btn {
        padding: 14px 36px;
        font-size: 14px;
    }

    #video-popup,
    #popup-arrow-svg {
        /*display: none !important;*/
    }
}

@media (max-width: 400px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}













/****************** PREVIEW TEMPLATE *************************/


.section-header {
    margin-bottom: 0;
    margin-top: 25px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 242, 255, 0.08);
    border: 1px solid rgba(0, 242, 255, 0.25);
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #00f2ff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00f2ff;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.showcase-wrapper {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


#showcase {
    background: none;
    border-radius: 20px;
    padding: 24px 40px;
    font-family: 'Inter', sans-serif;
    display: flex;
    gap: 18px;
    max-width: 1200px;
    width: 100%;
    min-height: 606px;
    align-items: stretch;
    overflow: hidden;
    position: relative;
}

/* ── CURSOR ── */
#svg-cursor {
    position: absolute;
    pointer-events: none;
    z-index: 9999;
    /* cursor glides in 400ms */
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1), top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-4px, -2px);
}

.cursor-click-ring {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #00f2ff;
    top: -12px;
    left: -12px;
    opacity: 0;
    transform: scale(0.3);
    pointer-events: none;
    z-index: 9998;
}

.cursor-click-ring.pop {
    animation: ringpop 0.4s ease-out forwards;
}

@keyframes ringpop {
    0% {
        opacity: 1;
        transform: scale(0.3);
    }

    60% {
        opacity: 0.6;
        transform: scale(1.4);
    }

    100% {
        opacity: 0;
        transform: scale(2.0);
    }
}

/* ── EDITOR PANEL ── */
.editor-panel {
    width: 210px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.panel-title {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #00f2ff;
    text-align: center;
    text-transform: uppercase;
}

.widget-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 11px;
    padding: 9px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.widget-card.active {
    border-color: #00f2ff;
    box-shadow: 0 0 14px rgba(0, 242, 255, 0.18);
}

.widget-label {
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #5A6480;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.color-row {
    display: flex;
    gap: 7px;
    align-items: center;
}

.color-wheel {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: conic-gradient(red, yellow, lime, cyan, blue, magenta, red);
    flex-shrink: 0;
    position: relative;
}

.color-wheel::after {
    content: '';
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: white;
    border: 2px solid #333;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.showcase-wrapper .swatches {
    display: flex;
    gap: 5px;
    flex: 1;
}

.showcase-wrapper .swatch-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    flex: 1;
}

.showcase-wrapper .swatch {
    width: 100%;
    height: 22px;
    border-radius: 6px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.5s ease;
}

.showcase-wrapper .swatch.pulse {
    animation: swatchpop 0.35s ease-out;
}

@keyframes swatchpop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
        box-shadow: 0 0 18px rgba(0, 242, 255, 0.8);
    }

    100% {
        transform: scale(1);
    }
}

.showcase-wrapper .swatch-label {
    font-size: 7.5px;
    color: #5A6480;
}

.font-select-mock {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 7px;
    padding: 6px 8px;
    font-size: 11px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.3s;
}

.font-select-mock.active {
    border-color: #00f2ff;
}

.text-input-mock {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 7px;
    padding: 6px 8px;
    font-size: 9.5px;
    color: rgba(255, 255, 255, 0.8);
    transition: border-color 0.3s;
    word-break: break-word;
    line-height: 1.4;
}

.text-input-mock.active {
    border-color: #00f2ff;
}

.text-format-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 6px;
}

.fmt-label {
    font-size: 10px;
    color: #5A6480;
}

.slider-track {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
}

.slider-thumb {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #2c6bf7;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 40%;
    transition: left 0.5s ease;
}

.fmt-btn {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    background: #2c6bf7;
    color: white;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fmt-btn.italic {
    font-style: italic;
    background: rgba(255, 255, 255, 0.08);
}

.img-changer-row {
    display: flex;
    gap: 7px;
    align-items: flex-start;
}

.img-thumb {
    width: 54px;
    height: 42px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1.5px solid rgba(0, 242, 255, 0.35);
}

.img-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.8;
}

.img-buttons {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.img-btn {
    background: rgba(0, 242, 255, 0.08);
    border: 1px solid rgba(0, 242, 255, 0.25);
    border-radius: 6px;
    color: #00f2ff;
    font-size: 8.5px;
    font-weight: 600;
    padding: 5px 6px;
    text-align: center;
}

.img-btn.secondary {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* template switcher */
.template-mini-grid {
    display: flex;
    gap: 4px;
    margin-top: 4px;
}

.template-thumb {
    flex: 1;
    height: 32px;
    border-radius: 5px;
    overflow: hidden;
    border: 1.5px solid transparent;
    transition: border-color 0.2s, transform 0.2s;
}

.template-thumb.selected {
    border-color: #00f2ff;
    transform: scale(1.06);
}

.template-thumb-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
}

/* ── PREVIEW ── */
.preview-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 9px;
    min-width: 0;
}

.preview-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    text-align: center;
}

.hero-preview {
    flex: 1;
    border-radius: 13px;
    overflow: hidden;
    position: relative;
    min-height: 320px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
}

.preview-nav {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: rgba(6, 9, 24, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    flex-shrink: 0;
}

.nav-logo {
    font-size: 13px;
    font-weight: 700;
    color: #00f2ff;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.6s;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 10px;
}

.nav-link {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.nav-link.active-link {
    color: #00f2ff;
    transition: color 0.6s;
}

.nav-cta {
    font-size: 9px;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 20px;
    border: 1.5px solid #00f2ff;
    color: #00f2ff;
    background: transparent;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: border-color 0.6s, color 0.6s;
    white-space: nowrap;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 2px;
}

.burger-line {
    width: 18px;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #060918, #0d1035 60%, #060918);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #060918 0%, rgba(6, 9, 24, 0.55) 50%, rgba(6, 9, 24, 0.25) 100%);
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.28;
    transition: background 0.6s ease;
}

/* template overlay */
.template-overlay {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: flex;

    flex-direction: column;
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.template-overla .hero-body {
    padding: 0 20px;
}

.template-overlay.visible {
    opacity: 1;
    transform: translateX(0);
}

.hero-body {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 16px 10px;
    text-align: center;
    gap: 9px;
}

.hero-badge {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(0, 242, 255, 0.3);
    color: #00f2ff;
    background: rgba(0, 242, 255, 0.08);
    transition: color 0.6s, border-color 0.6s, background 0.6s;
    white-space: nowrap;
}

.hero-title {
    font-weight: 700;
    font-size: clamp(17px, 3vw, 32px);
    line-height: 1.1;
    color: #00f2ff;
    transition: color 0.6s, opacity 0.25s;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.hero-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 260px;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-btn {
    padding: 9px 20px;
    border-radius: 28px;
    background: #7000ff;
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.6s, box-shadow 0.6s, color 0.3s;
    box-shadow: 0 4px 20px rgba(112, 0, 255, 0.45);
}

.hero-btn-ghost {
    padding: 9px 16px;
    border-radius: 28px;
    background: transparent;
    color: rgba(255, 255, 255, 0.65);
    font-size: 10px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.stats-bar {
    position: relative;
    z-index: 2;
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    flex-shrink: 0;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 8px 4px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-size: 13px;
    font-weight: 700;
    color: #00f2ff;
    transition: color 0.6s;
    line-height: 1;
}

.stat-label {
    font-size: 7.5px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
    letter-spacing: 0.5px;
}

.step-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
}

.dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transition: background 0.3s, transform 0.3s;
}

.dot.active {
    background: #00f2ff;
    transform: scale(1.4);
}

/* narrow */
.hero-preview.narrow .nav-links,
.hero-preview.narrow .nav-cta {
    display: none;
}

.hero-preview.narrow .nav-burger {
    display: flex;
}

.hero-preview.narrow .hero-sub,
.hero-preview.narrow .hero-btn-ghost {
    display: none;
}

.hero-preview.narrow .hero-badge {
    font-size: 8px;
    padding: 3px 9px;
}

.hero-preview.narrow .hero-title {
    font-size: 16px !important;
}

.hero-preview.narrow .preview-nav {
    padding: 8px 10px;
}

.hero-preview.narrow .stat-label {
    display: none;
}

.hero-preview.narrow .stat-num {
    font-size: 11px;
}

.hero-preview.narrow .stat-item {
    padding: 6px 2px;
}

@media(max-width:600px) {
    #showcase {
        flex-direction: column;
        padding: 16px 27px;
        gap: 14px;
    }

    .editor-panel {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        padding: 12px 10px;
    }

    .panel-title {
        width: 100%;
    }

    .widget-card {
        flex: 1 1 calc(50% - 4px);
        min-width: 130px;
    }

    .hero-preview {
        min-height: 260px;
    }

    .nav-links,
    .hero-btn-ghost {
        display: none;
    }

    .preview-nav {
        padding: 9px 12px;
    }

    .hero-body {
        padding: 16px 14px 8px;
    }
}












/* TESTEMONIALS */
.testimonials {
    background: linear-gradient(0deg, var(--bg) 64%, transparent 91%);
    padding: 40px 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Background glow effects */
.testimonials::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(112, 0, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* Section header */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 242, 255, 0.06);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--primary-cyan);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-cyan);
    box-shadow: 0 0 8px var(--primary-cyan);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-family: var(--extra-font);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header h2 span {
    background: linear-gradient(90deg, var(--primary-cyan), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Star rating */
.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.star {
    color: #f5c518;
    font-size: 14px;
}

/* Marquee wrapper */
.marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    max-width: 1200px;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

.marquee-row {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll-left 35s linear infinite;
}

.marquee-row:nth-child(2) {
    animation: scroll-right 30s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.marquee-row:hover {
    animation-play-state: paused;
}

/* Testimonial card */
.tcard {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 26px 28px;
    width: 320px;
    flex-shrink: 0;
    backdrop-filter: blur(12px);
    transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.tcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity var(--trans);
}

.tcard:hover {
    border-color: rgba(0, 242, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 242, 255, 0.05);
}

.tcard:hover::before {
    opacity: 1;
}

.quote-icon {
    font-size: 40px;
    line-height: 1;
    color: var(--primary-cyan);
    opacity: 0.2;
    font-family: Georgia, serif;
    position: absolute;
    top: 14px;
    right: 20px;
}

.tcard-text {
    font-size: 0.875rem;
    color: var(--text-primary);
    line-height: 1.75;
    margin-bottom: 22px;
    opacity: 0.85;
}

.tcard-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
}

.author-info .name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.author-info .role {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Bottom stats strip */
.testimonials-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 70px;
    width: 100%;
    padding-top: 50px;
    border-top: 1px solid var(--card-border);
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--extra-font);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.stat-number span {
    color: var(--primary-cyan);
    filter: drop-shadow(0px 0px 12px #00f2ff);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--card-border);
}

@media (max-width : 1000px) {
    .testimonials {
        display: block;
        align-items: auto;
    }

    .testimonials-stats {
        gap: 15px;
    }
}








/* PLANS */
.plans-section {
    background: linear-gradient(180deg, var(--bg) 0%, #060918 45%);
    padding: 0px 30px 40px;
    position: relative;
    overflow: hidden;
}

/* spotlight */
.spotlight {
    position: absolute;
    top: 39%;
    left: 3%;
    filter: blur(30px);
    opacity: 1;
    transform: scale(1.5) translateX(-37%);
    width: 50%;
    height: 557px;
    pointer-events: none;
    z-index: 0;
}

.spotlight2 {
    position: absolute;
    top: 40%;
    right: 3%;
    filter: blur(30px);
    opacity: 1;
    transform: scale(1.5) translateX(37%);
    width: 50%;
    height: 557px;
    pointer-events: none;
    z-index: 0;
}

.spotlight-cone {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 280px solid transparent;
    border-right: 280px solid transparent;
    border-top: 480px solid rgba(80, 20, 200, 0.06);
    filter: blur(35px);
}

.spotlight-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse at 50% 0%, rgba(112, 0, 255, 0.22) 0%, rgba(44, 107, 247, 0.08) 40%, transparent 70%);
    filter: blur(18px);
}

.spotlight-flare {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(180, 120, 255, 0.8) 0%, rgba(112, 0, 255, 0.3) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(7px);
}

/* header */
.section-header {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 44px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(112, 0, 255, 0.1);
    border: 1px solid rgba(112, 0, 255, 0.3);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #a66fff;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-tag::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #a66fff;
    box-shadow: 0 0 7px #a66fff;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.4
    }
}

.section-header h2 {
    font-family: var(--extra-font);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 10px;
}

.section-header h2 span {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-muted);
    font-size: 0.85rem;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ── DESKTOP grid ── */
.plans-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto;
}

/* ── MOBILE swiper ── */
.swiper-outer {
    display: none;
    position: relative;
    z-index: 2;
}

.swiper-track-wrap {
    overflow: hidden;
}

.swiper-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s cubic-bezier(.4, 0, .2, 1);
    padding: 10px 4px 20px;
}

/* dots */
.swiper-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--card-border);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all var(--trans);
}

.dot.active {
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
    width: 20px;
    border-radius: 100px;
}

/* arrows */
.swiper-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all var(--trans);
    backdrop-filter: blur(8px);
}

.swiper-arrow:hover {
    background: rgba(0, 242, 255, 0.1);
    border-color: rgba(0, 242, 255, 0.3);
}

.arrow-prev {
    left: -14px;
}

.arrow-next {
    right: -14px;
}

/* ── CARD ── */
.plan-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 24px 22px;
    width: 265px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
    backdrop-filter: blur(16px);
}

.plan-card:hover {
    transform: translateY(-5px);
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    border-radius: 100px;
    opacity: 0.6;
}

/* FREE */
.plan-free:hover {
    border-color: rgba(0, 242, 255, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 242, 255, 0.05);
}

.plan-free::before {
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.plan-free .card-glow {
    background: radial-gradient(ellipse at 50% -20%, rgba(0, 242, 255, 0.07) 0%, transparent 60%);
}

.plan-free .badge-icon {
    background: rgba(0, 242, 255, 0.1);
    color: var(--primary);
    border-color: rgba(0, 242, 255, 0.2);
}

.plan-free .price-val {
    color: var(--text-primary);
}

.plan-free .plan-cta-btn {
    background: transparent;
    border: 1px solid rgba(0, 242, 255, 0.4);
    color: var(--primary);
}

.plan-free .plan-cta-btn:hover {
    background: rgba(0, 242, 255, 0.08);
}

.plan-free .check {
    color: var(--primary);
}

.plan-free .tier-label {
    color: var(--text-muted);
}

.plan-free .duration-badge {
    background: rgba(0, 242, 255, 0.08);
    color: var(--primary);
    border-color: rgba(0, 242, 255, 0.15);
}

.plan-free .total-price {
    color: rgba(0, 242, 255, 0.6);
}

/* GOLD */
.plan-gold {
    border-color: rgba(245, 193, 80, 0.35);
    background: linear-gradient(160deg, rgba(245, 193, 80, 0.07) 0%, rgba(143, 167, 255, 0.04) 100%);
    transform: scale(1.04);
    box-shadow: 0 0 50px rgba(245, 193, 80, 0.1), 0 20px 50px rgba(0, 0, 0, 0.5);
}

.plan-gold:hover {
    transform: scale(1.04) translateY(-5px);
    border-color: rgba(245, 193, 80, 0.5);
    box-shadow: 0 0 70px rgba(245, 193, 80, 0.16), 0 30px 60px rgba(0, 0, 0, 0.5);
}

.plan-gold::before {
    background: linear-gradient(90deg, transparent, #f5c150, transparent);
}

.plan-gold .card-glow {
    background: radial-gradient(ellipse at 50% -20%, rgba(245, 193, 80, 0.13) 0%, transparent 65%);
}

.plan-gold .badge-icon {
    background: rgba(245, 193, 80, 0.12);
    color: #f5c150;
    border-color: rgba(245, 193, 80, 0.3);
}

.plan-gold .price-val {
    background: linear-gradient(135deg, #f5c150, #e8a820);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-gold .plan-cta-btn {
    background: linear-gradient(135deg, #f5c150, #e8a820);
    color: #1a1000;
    font-weight: 700;
    border: none;
    box-shadow: 0 6px 24px rgba(245, 193, 80, 0.35);
}

.plan-gold .plan-cta-btn:hover {
    box-shadow: 0 10px 32px rgba(245, 193, 80, 0.5);
    filter: brightness(1.05);
}

.plan-gold .check {
    color: #f5c150;
}

.plan-gold .tier-label {
    color: #f5c150;
}

.plan-gold .duration-badge {
    background: rgba(245, 193, 80, 0.1);
    color: #f5c150;
    border-color: rgba(245, 193, 80, 0.25);
}

.plan-gold .total-price {
    color: rgba(245, 193, 80, 0.7);
}

/* DIAMOND */
.plan-diamond {
    border-color: rgba(120, 200, 255, 0.25);
    background: linear-gradient(160deg, rgba(112, 0, 255, 0.08) 0%, rgba(44, 107, 247, 0.06) 100%);
}

.plan-diamond:hover {
    border-color: rgba(120, 200, 255, 0.45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(112, 0, 255, 0.1);
}

.plan-diamond::before {
    background: linear-gradient(90deg, transparent, #78c8ff, transparent);
}

.plan-diamond .card-glow {
    background: radial-gradient(ellipse at 50% -20%, rgba(112, 0, 255, 0.1) 0%, transparent 60%);
}

.plan-diamond .badge-icon {
    background: rgba(120, 200, 255, 0.1);
    color: #78c8ff;
    border-color: rgba(120, 200, 255, 0.2);
}

.plan-diamond .price-val {
    background: linear-gradient(135deg, #78c8ff, #2c6bf7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-diamond .plan-cta-btn {
    background: linear-gradient(135deg, #2c6bf7, #7000ff);
    color: #fff;
    border: none;
    box-shadow: 0 6px 24px rgba(112, 0, 255, 0.3);
}

.plan-diamond .plan-cta-btn:hover {
    box-shadow: 0 10px 32px rgba(112, 0, 255, 0.45);
    filter: brightness(1.1);
}

.plan-diamond .check {
    color: #78c8ff;
}

.plan-diamond .tier-label {
    color: #78c8ff;
}

.plan-diamond .duration-badge {
    background: rgba(120, 200, 255, 0.08);
    color: #78c8ff;
    border-color: rgba(120, 200, 255, 0.15);
}

.plan-diamond .total-price {
    color: rgba(120, 200, 255, 0.6);
}

.popular-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, #f5c150, #e8a820);
    color: #1a1000;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
    box-shadow: 0 3px 12px rgba(245, 193, 80, 0.4);
}

.card-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 20px;
}

.badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 14px;
}

.tier-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.plan-name {
    font-family: var(--extra-font);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.plan-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 18px;
}

.price-block {
    margin-bottom: 4px;
}

.price-val {
    font-family: var(--extra-font);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.price-suffix {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 3px;
}

.total-price {
    font-size: 0.78rem;
    font-weight: 600;
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.total-price span {
    color: var(--text-muted);
    font-weight: 400;
}

.duration-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid;
    border-radius: 100px;
    padding: 4px 11px;
    font-size: 10px;
    font-weight: 600;
    margin: 12px 0 20px;
}

.divider {
    height: 1px;
    background: var(--card-border);
    margin-bottom: 18px;
}

.features-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    flex: 1;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.77rem;
    color: var(--text-primary);
    opacity: 0.88;
    line-height: 1.35;
}

.check {
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 1px;
}

.plan-cta-btn {
    width: 100%;
    padding: 11px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--trans);
    font-family: var(--font);
}

.plans-note {
    text-align: center;
    margin-top: 40px;
    color: var(--text-muted);
    font-size: 0.78rem;
    position: relative;
    z-index: 2;
}

.plans-note a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
    .plans-grid {
        display: none;
    }

    .swiper-outer {
        display: block;
    }

    .plans-section {
        padding: 0px 20px 20px;
    }

    /* reset gold scale on mobile so all cards same size */
    .swiper-track .plan-gold {
        transform: none !important;
    }

    .swiper-track .plan-gold:hover {
        transform: translateY(-5px) !important;
    }

    .swiper-track .plan-card {
        width: calc(100vw - 80px);
        max-width: 300px;
    }

    .spotlight2 {
        display: none;
    }
}









/*hiw****/
/* ── SECTION ── */
.hiw-section {
    position: relative;
    overflow: hidden;
    padding: 40px 40px 40px;
    background: linear-gradient(180deg, #060918 0%, #0d1028 50%, #060918 100%);
}

/* ── AMBIENT BACKGROUND ── */
.hiw-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 400px at 15% 60%, rgba(0, 242, 255, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse 500px 350px at 85% 30%, rgba(112, 0, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* grid overlay */
.grid-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* ── HEADER ── */
.hiw-header {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0, 242, 255, 0.06);
    border: 1px solid rgba(0, 242, 255, 0.18);
    border-radius: 100px;
    padding: 5px 16px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-tag::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

.hiw-header h2 {
    font-family: var(--extra-font);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 14px;
}

.hiw-header h2 em {
    font-style: normal;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hiw-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 420px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── STEPS LAYOUT ── */
.steps-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 80px 1fr 80px 1fr;
    align-items: start;
    gap: 0;
}

/* ── CONNECTOR ── */
.connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 52px;
}

.connector-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 242, 255, 0.3), rgba(112, 0, 255, 0.3));
    position: relative;
}

.connector-line::after {
    content: '›';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.2);
    background: #0d1028;
    padding: 0 6px;
}

/* ── STEP CARD ── */
.step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    font-family: var(--extra-font);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-number::before {
    content: attr(data-num);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* step accent colors */
.step:nth-child(1) .step-number::before {
    background: rgba(0, 242, 255, 0.1);
    color: var(--primary);
    border: 1px solid rgba(0, 242, 255, 0.25);
}

.step:nth-child(3) .step-number::before {
    background: rgba(112, 0, 255, 0.12);
    color: #a66fff;
    border: 1px solid rgba(112, 0, 255, 0.3);
}

.step:nth-child(5) .step-number::before {
    background: rgba(44, 107, 247, 0.12);
    color: #78c8ff;
    border: 1px solid rgba(44, 107, 247, 0.3);
}

/* Visual card */
.step-visual {
    width: 100%;
    border-radius: 18px;
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    overflow: hidden;
    margin-bottom: 28px;
    position: relative;
    transition: border-color 0.4s, box-shadow 0.4s;
    aspect-ratio: 4/3;
}

.step-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    border-radius: 100px;
    opacity: 0.7;
}

.step:nth-child(1) .step-visual {
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.04), rgba(0, 242, 255, 0.01));
}

.step:nth-child(1) .step-visual::before {
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.step:nth-child(1) .step-visual:hover {
    border-color: rgba(0, 242, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 242, 255, 0.07);
}

.step:nth-child(3) .step-visual {
    background: linear-gradient(135deg, rgba(112, 0, 255, 0.05), rgba(112, 0, 255, 0.01));
}

.step:nth-child(3) .step-visual::before {
    background: linear-gradient(90deg, transparent, #a66fff, transparent);
}

.step:nth-child(3) .step-visual:hover {
    border-color: rgba(112, 0, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(112, 0, 255, 0.08);
}

.step:nth-child(5) .step-visual {
    background: linear-gradient(135deg, rgba(44, 107, 247, 0.05), rgba(44, 107, 247, 0.01));
}

.step:nth-child(5) .step-visual::before {
    background: linear-gradient(90deg, transparent, #78c8ff, transparent);
}

.step:nth-child(5) .step-visual:hover {
    border-color: rgba(44, 107, 247, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(44, 107, 247, 0.07);
}

/* ── VISUAL INNER CONTENT ── */
.visual-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

/* Step 1 - template picker */
.template-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
}

.tmpl-card {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.03);
    aspect-ratio: 3/2;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 5px;
}

.tmpl-card:hover,
.tmpl-card.active {
    border-color: rgba(0, 242, 255, 0.4);
    background: rgba(0, 242, 255, 0.04);
}

.tmpl-card.active::after {
    content: '✓';
    position: absolute;
    top: 6px;
    right: 8px;
    font-size: 10px;
    color: var(--primary);
}

.tmpl-bar {
    height: 4px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.08);
}

.tmpl-bar.c1 {
    background: rgba(0, 242, 255, 0.35);
    width: 70%;
}

.tmpl-bar.c2 {
    background: rgba(112, 0, 255, 0.35);
    width: 55%;
}

.tmpl-bar.c3 {
    background: rgba(44, 107, 247, 0.35);
    width: 80%;
}

.tmpl-dot-row {
    display: flex;
    gap: 4px;
    margin-top: auto;
}

.tmpl-dot {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
}

/* Step 2 - editor */
.editor-ui {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.editor-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: var(--text-muted);
}

.editor-label {
    width: 52px;
    flex-shrink: 0;
    font-size: 10px;
}

.editor-track {
    flex: 1;
    height: 4px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: visible;
}

.editor-fill {
    height: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
}

.editor-fill.purple {
    background: linear-gradient(90deg, #7000ff, #a66fff);
    width: 65%;
}

.editor-fill.cyan {
    background: linear-gradient(90deg, #00b4cc, #00f2ff);
    width: 45%;
}

.editor-fill.blue {
    background: linear-gradient(90deg, #2c6bf7, #78c8ff);
    width: 80%;
}

.editor-knob {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
}

.color-swatches {
    display: flex;
    gap: 6px;
}

.swatch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
}

.swatch:hover,
.swatch.active {
    transform: scale(1.25);
    outline: 2px solid rgba(255, 255, 255, 0.4);
    outline-offset: 2px;
}

.font-pick {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.fpill {
    padding: 3px 9px;
    border-radius: 100px;
    font-size: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.fpill.active,
.fpill:hover {
    border-color: rgba(112, 0, 255, 0.5);
    color: #a66fff;
    background: rgba(112, 0, 255, 0.08);
}

/* Step 3 - go live */
.live-ui {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.domain-bar {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 9px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
}

.domain-lock {
    color: rgba(0, 242, 255, 0.6);
    font-size: 12px;
}

.domain-text {
    color: var(--text-primary);
    flex: 1;
}

.domain-text span {
    color: var(--primary);
}

.domain-btn {
    padding: 5px 12px;
    border-radius: 7px;
    font-size: 10px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary1), var(--accent));
    color: #fff;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.status-row {
    display: flex;
    gap: 10px;
    width: 100%;
}

.status-pill {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 10px;
    color: var(--text-muted);
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-dot.green {
    background: #00c98d;
    box-shadow: 0 0 6px #00c98d;
}

.status-dot.cyan {
    background: var(--primary);
    box-shadow: 0 0 6px var(--primary);
}

.status-dot.purple {
    background: #a66fff;
    box-shadow: 0 0 6px #a66fff;
}

.order-bar {
    width: 100%;
    background: rgba(0, 242, 255, 0.05);
    border: 1px solid rgba(0, 242, 255, 0.15);
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    color: var(--primary);
}

.order-ping {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
    animation: ping 1.5s infinite;
}

@keyframes ping {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5
    }
}

/* ── TEXT ── */
.step-title {
    font-family: var(--extra-font);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.2;
}

.step-desc {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── BOTTOM CTA ── */
.hiw-cta {
    text-align: center;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary1), var(--accent));
    color: #fff;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(112, 0, 255, 0.3);
    transition: all 0.3s;
}

.cta-btn:hover {
    box-shadow: 0 12px 40px rgba(112, 0, 255, 0.45);
    transform: translateY(-2px);
}

.cta-btn .arrow {
    font-size: 1rem;
    transition: transform 0.3s;
}

.cta-btn:hover .arrow {
    transform: translateX(4px);
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {
    .steps-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 48px;
    }

    .connector {
        display: none;
    }

    .step {
        opacity: 1 !important;
        transform: none !important;
    }

    .hiw-section {
        padding: 40px 24px 20px;
    }
}

@media(max-width:500px) {
    .hiw-header h2 {
        font-size: 1.8rem;
    }
}









/*FAQ*/

.faq-section {
    position: relative;
    overflow: hidden;
    padding: 40px 40px 80px;
    background: linear-gradient(180deg, #060918 0%, #0a0f22 50%, #060918 100%);
}

/* cyan wash — the "entering a new world" feel */
.faq-section::before {

    content: '';
    position: absolute;
    top: 30%;
    left: 0;
    filter: blur(132px);
    width: 100%;
    height: 700px;
    background: radial-gradient(ellipse at 50% 0%, rgb(0 242 255 / 10%) 0%, rgb(0 242 255 / 6%) 40%, #9800f073 70%);
    pointer-events: none;
    z-index: 0;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: 0%;
    right: 0;
    filter: blur(80px);
    /* transform: translateX(-50%); */
    width: 100%;
    height: 406px;
    background: radial-gradient(ellipse at 50% 100%, rgb(0 132 240 / 99%) 0%, #0095f159 70%);
    pointer-events: none;
    z-index: 0;
}

/* horizontal cyan line at top */
.cyan-rule {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.5), transparent);
}

/* ── HEADER ── */
.faq-header {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 72px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0, 242, 255, 0.07);
    border: 1px solid rgba(0, 242, 255, 0.22);
    border-radius: 100px;
    padding: 5px 16px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-tag::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

.faq-header h2 {
    font-family: var(--extra-font);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 14px;
}

.faq-header h2 em {
    font-style: normal;
    color: var(--primary);
    text-shadow: 0 0 40px rgba(0, 242, 255, 0.35);
}

.faq-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 440px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── LAYOUT ── */
.faq-body {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 0;
}

/* ── CATEGORY LABEL ── */
.faq-category {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin: 36px 0 14px;
    opacity: 0.7;
}

.faq-category:first-child {
    margin-top: 0;
}

.faq-category::before,
.faq-category::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 242, 255, 0.25), transparent);
}

.faq-category::before {
    background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.25));
}

/* ── ACCORDION ITEM ── */
.faq-item {
    border-bottom: 1px solid var(--card-border);
    transition: border-color var(--trans);
}

.faq-item:first-of-type {
    border-top: 1px solid var(--card-border);
}

.faq-item.open {
    border-color: rgba(0, 242, 255, 0.2);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 4px;
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font);
    transition: all var(--trans);
}

.faq-q:hover .faq-q-text {
    color: var(--primary);
}

.faq-q-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    transition: color var(--trans);
    flex: 1;
}

.faq-item.open .faq-q-text {
    color: var(--primary);
}

/* icon */
.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--trans);
    background: var(--card-bg);
}

.faq-icon svg {
    width: 12px;
    height: 12px;
    stroke: var(--text-muted);
    transition: transform var(--trans), stroke var(--trans);
}

.faq-item.open .faq-icon {
    background: rgba(0, 242, 255, 0.1);
    border-color: rgba(0, 242, 255, 0.35);
    box-shadow: 0 0 12px rgba(0, 242, 255, 0.12);
}

.faq-item.open .faq-icon svg {
    stroke: var(--primary);
    transform: rotate(45deg);
}

/* answer panel */
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 4px;
}

.faq-a-inner {
    padding-bottom: 22px;
    font-size: 0.875rem;
    color: #aeb5c9;
    line-height: 1.8;
    border-left: 2px solid rgba(0, 200, 255, 0.25);
    padding-left: 18px;
    margin-left: 2px;
}

.faq-a-inner a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.faq-a-inner a:hover {
    text-decoration: underline;
}

.faq-item.open .faq-a {
    max-height: 400px;
}

/* highlight tag inside answer */
.ans-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 242, 255, 0.08);
    border: 1px solid rgba(0, 242, 255, 0.18);
    border-radius: 100px;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    margin: 0 3px;
    vertical-align: middle;
}

/* ── BOTTOM CTA ── */
.faq-cta {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: 64px;
    padding: 40px 32px;
    background: rgba(0, 242, 255, 0.03);
    border: 1px solid rgba(0, 242, 255, 0.12);
    border-radius: 24px;
    max-width: 600px;
    margin: 64px auto 0;
}

.faq-cta p {
    color: #e4e4e49e;
    font-size: 0.875rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.faq-cta p strong {
    color: var(--text-primary);
}

.cta-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #060918;
    font-family: var(--font);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all var(--trans);
    box-shadow: 0 0 24px rgba(0, 242, 255, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 0 36px rgba(0, 242, 255, 0.4);
    transform: translateY(-2px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--primary);
    font-family: var(--font);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 10px;
    border: 1px solid rgba(0, 242, 255, 0.3);
    cursor: pointer;
    transition: all var(--trans);
}

.btn-ghost:hover {
    background: rgba(0, 242, 255, 0.06);
    border-color: rgba(0, 242, 255, 0.5);
}

/* responsive */
@media(max-width:600px) {
    .faq-section {
        padding: 40px 20px 40px;
    }

    .faq-header h2 {
        font-size: 1.8rem;
    }

    .faq-q-text {
        font-size: 0.875rem;
    }
}









/*FOOTER*/
footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #091237 0%, #000108 100%);
    border-top: 1px solid rgb(0 242 255 / 13%);
}

footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.6), transparent);
    pointer-events: none;
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 300px;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 242, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* ── MAIN GRID ── */
.footer-main {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 64px 56px 52px;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

/* ── BRAND ── */
.tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 26px;
    max-width: 210px;
}

.socials {
    display: flex;
    gap: 9px;
    margin-bottom: 26px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--trans);
    backdrop-filter: blur(8px);
}

.social-btn:hover {
    background: rgba(0, 242, 255, 0.08);
    border-color: rgba(0, 242, 255, 0.3);
    box-shadow: 0 0 14px rgba(0, 242, 255, 0.1);
}

.social-btn svg {
    width: 15px;
    height: 15px;
    transition: all var(--trans);
}

.social-btn:hover svg {
    filter: drop-shadow(0 0 4px rgba(0, 242, 255, 0.6));
}

.status-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 200, 100, 0.07);
    border: 1px solid rgba(0, 200, 100, 0.18);
    border-radius: 100px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 500;
    color: #4ade80;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00c98d;
    flex-shrink: 0;
    box-shadow: 0 0 6px #00c98d;
    animation: statusPulse 2.5s infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 6px #00c98d
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 10px #00c98d
    }
}

/* ── NAV COLS ── */
.nav-col h4 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 18px;
    opacity: 0.8;
}

.nav-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-col ul li a {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--trans), gap var(--trans);
}

.nav-col ul li a:hover {
    color: var(--text-primary);
}

.nav-col ul li a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width var(--trans);
    flex-shrink: 0;
}

.nav-col ul li a:hover::before {
    width: 10px;
}

.badge-new {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #060918;
    background: var(--primary);
    border-radius: 4px;
    padding: 1px 5px;
    line-height: 1.5;
}

/* ── LOCAL COL ── */
.local-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.info-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    flex-shrink: 0;
    background: rgba(0, 242, 255, 0.07);
    border: 1px solid rgba(0, 242, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.info-icon svg {
    width: 13px;
    height: 13px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.info-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.info-text strong {
    color: var(--text-primary);
    display: block;
    font-size: 0.78rem;
    margin-bottom: 3px;
}

.lang-badges {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.lang-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
}

.newsletter-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    display: block;
}

.newsletter-sub {
    font-size: 0.73rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    transition: border-color var(--trans);
}

.newsletter-form:focus-within {
    border-color: rgba(0, 242, 255, 0.35);
}

.newsletter-form input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-family: var(--font);
    font-size: 0.8rem;
    color: var(--text-primary);
    padding: 10px 13px;
    min-width: 0;
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form button {
    background: rgba(0, 242, 255, 0.1);
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--trans);
    flex-shrink: 0;
}

.newsletter-form button:hover {
    background: rgba(0, 242, 255, 0.2);
}

.newsletter-form button svg {
    width: 15px;
    height: 15px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── BOTTOM BAR ── */
.footer-bottom-wrap {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom {
    border-top: 1px solid var(--card-border);
    padding: 18px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.copy {
    font-size: 0.73rem;
    color: var(--text-muted);
}

.copy span {
    color: var(--text-primary);
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 3px;
}

.lang-opt {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 5px;
    cursor: pointer;
    color: var(--text-muted);
    transition: all var(--trans);
    border: none;
    background: none;
    font-family: var(--font);
}

.lang-opt.active,
.lang-opt:hover {
    background: rgba(0, 242, 255, 0.1);
    color: var(--primary);
}

/* payment logos row */
.payments {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pay-label {
    font-size: 10px;
    color: var(--text-muted);
    margin-right: 2px;
    white-space: nowrap;
}

.pay-logo {
    height: 26px;
    padding: 5px 5px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--trans);
    cursor: default;
    filter: brightness(0.7);
}

.pay-logo:hover {
    filter: grayscale(0) brightness(1);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

/* SVG payment logos */
.pay-logo img {
    max-height: 19px;
    width: auto;
}

/* ── TABLET FIX ── */
@media(max-width:1100px) {
    .footer-main {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 36px;
        padding: 52px 40px 44px;
    }

    .brand-col {
        grid-column: 1/-1;
    }

    .local-col {
        grid-column: 1/-1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        align-items: start;
    }

    .footer-bottom {
        padding: 16px 40px;
    }
}

@media(max-width:768px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        padding: 44px 28px 36px;
        gap: 28px;
    }

    .brand-col {
        grid-column: 1/-1;
    }

    .local-col {
        grid-column: 1/-1;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-bottom {
        padding: 14px 28px;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .payments {
        gap: 6px;
    }
}

@media(max-width:480px) {
    .footer-main {
        grid-template-columns: 1fr;
        padding: 36px 20px 28px;
        gap: 24px;
    }

    .nav-col {
        border-top: 1px solid var(--card-border);
        padding-top: 20px;
    }

    .footer-bottom {
        padding: 12px 20px;
    }

    .pay-logo {
        height: 22px;
        padding: 0 8px;
    }
}







/*about */

.about-section {
    background: linear-gradient(45deg, #04256f, #040714, #0072ff36);
    color: var(--text, #ffffff);
    font-family: var(--font, 'Inter'), sans-serif;
    overflow: hidden;
    position: relative;
}

/* ── Ambient glow blobs ── */
.about-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.about-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.08) 0%, transparent 70%);
    top: -120px;
    left: -180px;
}

.about-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.1) 0%, transparent 70%);
    bottom: 0;
    right: -100px;
}

.about-glow-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(44, 107, 247, 0.07) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ── Section wrapper ── */
.about-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 110px 40px;
}

/* ── Badge pill ── */
.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(0, 242, 255, 0.25);
    background: rgba(0, 242, 255, 0.06);
    border-radius: 999px;
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-cyan, #00f2ff);
    margin-bottom: 28px;
}

.about-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-cyan, #00f2ff);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

/* ── Story / Hero Layout ── */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

@media (max-width: 900px) {
    .about-hero {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-inner {
        padding: 80px 24px;
    }
}

.about-hero-left h2 {
    font-family: var(--extra-font, 'Poppins'), sans-serif;
    font-size: clamp(36px, 4.5vw, 54px);
    font-weight: 700;
    line-height: 1.12;
    margin: 0 0 24px;
    color: #fff;
}

.about-hero-left h2 .cyan {
    color: var(--primary-cyan, #00f2ff);
}

.about-hero-left h2 .purple {
    color: var(--accent, #7000ff);
}

.about-hero-left p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.62);
    margin: 0 0 20px;
    max-width: 480px;
}

/* Inline stat row */
.about-mini-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-mini-stat-num {
    font-family: var(--extra-font, 'Poppins'), sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.about-mini-stat-num span {
    color: var(--primary-cyan, #00f2ff);
}

.about-mini-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 4px;
}

/* ── Right side: Visual card stack ── */
.about-hero-right {
    position: relative;
}

.about-visual-card {
    background: var(--card-bg, rgba(143, 167, 255, 0.045));
    border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.1));
    border-radius: 20px;
    padding: 28px 32px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.about-visual-card-main {
    margin-bottom: 16px;
}

.about-visual-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-cyan, #00f2ff);
    margin-bottom: 14px;
}

.about-visual-title {
    font-family: var(--extra-font, 'Poppins'), sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.about-visual-desc {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.about-year-pill {
    display: inline-block;
    background: rgba(0, 242, 255, 0.08);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 999px;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-cyan, #00f2ff);
}

/* Timeline list inside card */
.about-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-timeline li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.55);
}

.about-timeline li:last-child {
    border-bottom: none;
}

.about-timeline-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-timeline-icon svg {
    width: 14px;
    height: 14px;
}

.about-timeline-year {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-cyan, #00f2ff);
    margin-bottom: 2px;
}

.about-timeline-text {
    color: rgba(255, 255, 255, 0.65);
}

/* ── Values / Why Choose Us ── */
.about-values-header {
    text-align: center;
    margin-bottom: 64px;
}

.about-values-header h3 {
    font-family: var(--extra-font, 'Poppins'), sans-serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
}

.about-values-header h3 .highlight {
    background: linear-gradient(90deg, var(--primary-cyan, #00f2ff), var(--accent, #7000ff));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-values-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 960px) {
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .about-values-grid {
        grid-template-columns: 1fr;
    }
}

.about-value-card {
    position: relative;
    background: var(--card-bg, rgba(143, 167, 255, 0.045));
    border: 1px solid var(--card-border, rgba(255, 255, 255, 0.08));
    border-radius: 20px;
    padding: 32px 28px;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
    cursor: default;
}

.about-value-card:hover {
    border-color: rgba(0, 242, 255, 0.3);
    transform: translateY(-4px);
}

.about-value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.about-value-card:hover::before {
    opacity: 1;
}

.about-value-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.about-value-icon svg {
    width: 22px;
    height: 22px;
}

.icon-cyan {
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.2);
}

.icon-purple {
    background: rgba(112, 0, 255, 0.12);
    border: 1px solid rgba(112, 0, 255, 0.3);
}

.icon-blue {
    background: rgba(44, 107, 247, 0.12);
    border: 1px solid rgba(44, 107, 247, 0.25);
}

.icon-cyan svg {
    stroke: #00f2ff;
}

.icon-purple svg {
    stroke: #9f50ff;
}

.icon-blue svg {
    stroke: #5b8fff;
}

.about-value-title {
    font-family: var(--extra-font, 'Poppins'), sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.about-value-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.48);
    position: relative;
    z-index: 1;
}

/* ── CTA strip ── */
.about-cta {
    margin-top: 80px;
    border-radius: 24px;
    background: linear-gradient(120deg, rgba(0, 242, 255, 0.07) 0%, rgba(112, 0, 255, 0.09) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 56px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

@media (max-width: 700px) {
    .about-cta {
        flex-direction: column;
        text-align: center;
        padding: 40px 28px;
    }

    .about-mini-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.about-cta-text h4 {
    font-family: var(--extra-font, 'Poppins'), sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}

.about-cta-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    max-width: 380px;
}

.about-cta-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.btn-primary-cyan {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 10px;
    background: var(--primary-cyan, #00f2ff);
    color: #060918;
    font-weight: 600;
    font-size: 14px;
    font-family: var(--font, 'Inter'), sans-serif;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.25s ease, transform 0.25s ease;
    white-space: nowrap;
}

.btn-primary-cyan:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    font-family: var(--font, 'Inter'), sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease;
    white-space: nowrap;
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.05);
}