/* Base Styles */
:root {
    /* Main Colors */
    --bg-dark: #121212;
    --bg-dark-secondary: #1a1a2e;
    --bg-dark-tertiary: #1f1f3a;
    --text-white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.87);
    --text-muted: rgba(255, 255, 255, 0.6);
    
    /* Accent Colors */
    --primary: #6a11cb;
    --primary-gradient: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    --secondary: #ff0844;
    --secondary-gradient: linear-gradient(90deg, #ff0844 0%, #ffb199 100%);
    --accent: #00ffdd;
    --accent-gradient: linear-gradient(90deg, #00ffdd 0%, #3a47d5 100%);
    
    /* Feature Card Colors */
    --card-red: linear-gradient(135deg, #ff4b2b 0%, #ff416c 100%);
    --card-cyan: linear-gradient(135deg, #12c2e9 0%, #0f7ae5 100%);
    --card-orange: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
    --card-blue: linear-gradient(135deg, #3a47d5 0%, #00d2ff 100%);
    
    /* Utility Colors */
    --success: #13ca91;
    --warning: #ffbb00;
    --danger: #ff4c4c;
    --info: #0bbfe7;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(106, 17, 203, 0.5);
    
    /* Transitions */
    --transition-fast: 0.2s all ease;
    --transition-normal: 0.3s all ease;
    --transition-slow: 0.5s all ease;
    
    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Z-indices */
    --z-negative: -1;
    --z-normal: 1;
    --z-dropdown: 1000;
    --z-fixed: 1030;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
}

body.loading {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-white);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition-normal);
}

a:hover {
    color: var(--text-white);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    padding-left: 24px;
    padding-right: 24px;
}

section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

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

.loader-logo {
    width: 180px;
    margin-bottom: 30px;
    animation: pulse 1.5s infinite alternate;
}

.loader-bar {
    width: 240px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    position: relative;
}

.loader-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--primary-gradient);
    animation: loading 2s ease forwards;
}

@keyframes loading {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes pulse {
    0% { opacity: 0.6; transform: scale(0.98); }
    100% { opacity: 1; transform: scale(1); }
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background-color: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: var(--z-tooltip);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    mix-blend-mode: difference;
}

.cursor.active {
    width: 24px;
    height: 24px;
    background-color: var(--accent);
    opacity: 0.6;
}

.cursor.medium {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--accent);
}

.cursor.large {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--primary);
}

.cursor-follower {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: var(--z-tooltip);
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, border-color 0.2s, opacity 0.2s;
    mix-blend-mode: difference;
}

.cursor-follower.active {
    width: 50px;
    height: 50px;
    border-color: var(--primary);
    opacity: 0.6;
}

/* Particles Background */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-negative);
    opacity: 0.3;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    transition: var(--transition-normal);
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 15px 0;
}

.navbar-brand {
    opacity: 0.9;
    transition: var(--transition-normal);
}

.navbar-brand:hover {
    opacity: 1;
    transform: scale(1.05);
}

.navbar-brand img {
    height: 40px;
}

.navbar-toggler {
    border: none;
    background-color: transparent;
    color: var(--text-white);
    padding: 0;
}

.nav-link {
    color: var(--text-light);
    font-weight: 500;
    padding: 10px 18px !important;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
    opacity: 0.8;
}

.nav-link:before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 18px;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition-normal);
}

.nav-link:hover {
    color: var(--text-white);
    opacity: 1;
}

.nav-link:hover:before {
    width: calc(100% - 36px);
}

.nav-link.demo-btn {
    background: var(--primary-gradient);
    color: var(--text-white);
    border-radius: var(--radius-full);
    padding: 10px 20px !important;
    margin-left: 10px;
    opacity: 1;
}

.nav-link.demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.nav-link.demo-btn:before {
    display: none;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-dark);
}

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0;
    position: relative;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 40px;
    max-width: 500px;
}

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

/* 1) Allow overflow so negative margins show */
.hero-device,
.phone-wrapper,
.phone-1 {
    overflow: visible !important;
}

    /* 2) Only disable wrapper transforms (stop GSAP’s scale), but NOT .phone-1 */
.hero-device {
    position: relative;
    z-index: 1;
}

    /* 3) Restore transitions on the wrapper & phone so keyframes/GSAP can animate */
    .hero-device .phone-wrapper,
    .hero-device .phone-1 {
        transition: initial !important;
        transform-style: preserve-3d;
        animation: float 6s ease-in-out infinite !important;
    }

    /* 4) Drive size & position off the PNG itself */
    .hero-device .phone-screen {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }

    /* 5) Hide the frame */
    .hero-device .phone-frame {
        display: none !important;
    }
    /*.hero-device .phone-1 {
        position: absolute;
        width: 100%;
        height: auto;
        transform-style: preserve-3d;
        animation: float 6s ease-in-out infinite !important;
    }*/




/*.hero-device {*/
    /*position: relative;*/
    /*z-index: 2;*/
    /*height: 500px;*/
    /*padding: 80px 0;
    height: auto !important;
    display: flex;
    justify-content: center;*/
    /*align-items: center;*/
    /*align-items: flex-end !important;
}

.phone-wrapper {
    position: relative;
    width: 300px;
    transform: scale(1.3);
    transform-origin: bottom center;
    margin-bottom: -20px;
    height: auto !important;*/
    /*margin: 0 auto;
    perspective: 1000px;*/
/*}

.phone-1 {
    position: absolute;
    width: 100%;
    height: auto !important;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

.phone-screen {
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
    border-radius: 30px;
}

.phone-overlay {*/
    /*position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 30%);
    border-radius: 30px;*/
/*}

.phone-frame {*/
    /*position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    box-shadow: var(--shadow-md);*/
    /*display: none !important;
}*/

@keyframes float {
    0% { transform: translateY(0) rotate3d(0, 1, 0, 0deg); }
    50% { transform: translateY(-15px) rotate3d(0, 1, 0, 5deg); }
    100% { transform: translateY(0) rotate3d(0, 1, 0, 0deg); }
}

/* Buttons */
.btn {
    padding: 12px 24px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
}

.btn i {
    margin-left: 8px;
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--text-white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-light {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

.btn-light:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.glow-btn {
    position: relative;
}

.glow-btn:after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-gradient);
    z-index: -1;
    filter: blur(15px);
    opacity: 0;
    transition: var(--transition-normal);
}

.glow-btn:hover:after {
    opacity: 0.7;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-white);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Tabs */
.features-tabs {
    padding-top: 120px;
    background-color: var(--bg-dark-secondary);
}

.feature-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    border: none;
}

    .feature-tabs .nav-link {
        background-color: transparent;
        border-radius: var(--radius-md);
        padding: 15px 20px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        color: var(--text-white);
        opacity: 1 !important;
        border: 1px solid transparent;
        transition: var(--transition-normal);
        min-width: 150px;
    }

.feature-tabs .nav-link:before {
    display: none;
}

.feature-tabs .nav-link.active {
    background-color: rgba(106, 17, 203, 0.1);
    color: var(--text-white);
    border-color: rgba(106, 17, 203, 0.3);
    box-shadow: var(--shadow-sm);
}

.feature-tabs .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.tab-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(0.8);
    transition: var(--transition-normal);
}

.feature-tabs .nav-link.active .tab-icon img {
    filter: brightness(1) invert(0);
}

.feature-tabs .nav-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-content {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-text p {
    margin-bottom: 24px;
    color: var(--text-white);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--success);
    margin-right: 12px;
}

.feature-image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(106, 17, 203, 0.2) 0%, rgba(255, 8, 68, 0.1) 100%);
    pointer-events: none;
}

/* Clients Carousel */
.clients-carousel {
    padding: 40px 0;
    margin-top: 80px;
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.02);
}

.logos-container {
    display: flex;
    white-space: nowrap;
    width: 200%;
}

.logos-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: 100%;
}

.logo-item {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
}

.logo-item img {
    height: 50px;
    max-width: 120px;
    object-fit: contain;
    /*filter: grayscale(100%) brightness(0) invert(0.8);*/
    filter: none;
    opacity: 0.8;
    transition: var(--transition-normal);
}

.logo-item:hover img {
    filter: grayscale(0) brightness(1.5) invert(0);
    opacity: 1;
    transform: scale(1.1);
}

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

/* Gradient Text */
.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Glitch Text */
.glitch-text {
    position: relative;
    animation: glitch 5s infinite;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch-text::before {
    animation: glitch-effect 3s infinite;
    color: var(--primary);
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-effect 2s infinite reverse;
    color: var(--secondary);
    z-index: -2;
}

@keyframes glitch-effect {
    0% {
        left: -3px;
        top: -3px;
    }
    25% {
        left: 3px;
        top: 0px;
    }
    50% {
        left: -3px;
        top: 3px;
    }
    75% {
        left: 0px;
        top: -3px;
    }
    100% {
        left: -3px;
        top: -3px;
    }
}

/* Digital Glitch */
.digital-glitch {
    position: relative;
    animation: digitalGlitch 8s infinite;
}

@keyframes digitalGlitch {
    0% { transform: skew(0deg); }
    20% { transform: skew(0deg); }
    21% { transform: skew(2deg); }
    22% { transform: skew(-1deg); }
    23% { transform: skew(0deg); }
    60% { transform: skew(0deg); }
    61% { transform: skew(-1deg); filter: hue-rotate(90deg); }
    62% { transform: skew(1deg); filter: hue-rotate(0deg); }
    63% { transform: skew(0deg); }
    100% { transform: skew(0deg); }
}

/* Devices Showcase */
.devices-showcase {
    padding: 150px 0;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.devices-container {
    display: flex;
    align-items: center;
    position: relative;
    min-height: 500px;
}

.device-left, .device-right {
    flex: 0 0 30%;
    position: relative;
}

.device-content {
    flex: 0 0 40%;
    padding: 0 30px;
}

.device-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.device-content p {
    color: var(--text-white);
    margin-bottom: 30px;
}

.feature-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.point-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.point-icon i {
    color: var(--text-white);
    font-size: 1.2rem;
}

.point-text h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.point-text p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.phone-mockup, .tablet-mockup {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.phone-inner, .tablet-inner {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--bg-dark);
    transform-style: preserve-3d;
}

.phone-inner {
    width: 250px;
    height: 500px;
    animation: floatPhone 6s ease-in-out infinite;
}

.tablet-inner {
    width: 340px;
    height: 240px;
    animation: floatTablet 6s ease-in-out infinite reverse;
}

.device-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes floatPhone {
    0% { transform: translateY(0) rotate3d(0, 1, 0, -5deg); }
    50% { transform: translateY(-15px) rotate3d(0, 1, 0, 0deg); }
    100% { transform: translateY(0) rotate3d(0, 1, 0, -5deg); }
}

@keyframes floatTablet {
    0% { transform: translateY(0) rotate3d(0, 1, 0, 5deg); }
    50% { transform: translateY(-15px) rotate3d(0, 1, 0, 0deg); }
    100% { transform: translateY(0) rotate3d(0, 1, 0, 5deg); }
}

/* Top Features */
.top-features {
    background-color: var(--bg-dark-secondary);
    padding: 120px 0;
}

.feature-card {
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--card-red);
    z-index: -1;
    opacity: 0.8;
}

.feature-card.red::before {
    background: var(--card-red);
}

.feature-card.cyan::before {
    background: var(--card-cyan);
}

.feature-card.orange::before {
    background: var(--card-orange);
}

.feature-card.blue::before {
    background: var(--card-blue);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-card p {
    margin-bottom: 0;
}

.pulsing-btn {
    margin-top: 20px;
    animation: pulse 2s infinite;
}

.fingerprint-feature {
    margin-top: 80px;
}

.fingerprint-card {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.fingerprint-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(106, 17, 203, 0.2), rgba(37, 117, 252, 0.2));
    z-index: -1;
}

.fingerprint-image {
    position: relative;
    text-align: center;
}

.fingerprint-image img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(106, 17, 203, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    0% { opacity: 0.4; transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.fingerprint-content {
    padding: 20px;
}

.fingerprint-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.fingerprint-content p {
    color: var(--text-white);
    margin-bottom: 30px;
}

/* Pricing Section */
.pricing-section {
    background-color: var(--bg-dark);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.pricing-toggle span {
    font-size: 1rem;
    margin: 0 15px;
    color: var(--text-white);
}

.discount {
    background-color: rgba(106, 17, 203, 0.2);
    color: var(--accent);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    margin-left: 6px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: var(--text-white);
    transition: var(--transition-normal);
}

input:checked + .slider {
    background: var(--primary-gradient);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.pricing-cards {
    justify-content: center;
}

.pricing-card {
    background-color: var(--bg-dark-tertiary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: rgba(106, 17, 203, 0.3);
    z-index: 2;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.1) 0%, rgba(37, 117, 252, 0.1) 100%);
    z-index: -1;
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-gradient);
    color: var(--text-white);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.card-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 0 0 0 100%;
    z-index: -1;
}

.card-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-white);
}

.period, .contact {
    font-size: 1rem;
    color: var(--text-white);
}

.contact {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
}

.card-body {
    padding: 30px;
}

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

.features-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.features-list li i {
    color: var(--success);
    margin-right: 12px;
    font-size: 1rem;
}

.card-footer {
    padding: 0 30px 30px;
    text-align: center;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--bg-dark-secondary);
    padding: 120px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    /*margin-bottom: 50px;*/
    padding 40px 0;
    grid-auto-rows: auto;
    align-items: start;
}

.gallery-item {
    /*perspective: 1000px;*/
    width: 351px;
    background-color: #ffffff !important;
}

.social-card {
    background-color: var(--bg-dark-tertiary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    transform-style: preserve-3d;
}

.social-card:hover {
    transform: translateY(-10px) rotateX(3deg) rotateY(3deg);
    box-shadow: var(--shadow-lg);
}

.card-header {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
}

.profile-info {
    flex: 1;
}

.profile-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.profile-info span {
    font-size: 0.8rem;
    color: var(--text-white);
}

.social-icon {
    width: 30px;
    height: 30px;
    background-color: #4267B2;
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-card .card-body {
    padding: 20px;
}

.post-image {
    width: 100%;
    border-radius: var(--radius-md);
    margin-top: 15px;
}

.social-card .card-footer {
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.engagement {
    display: flex;
    gap: 15px;
}

.engagement span {
    font-size: 0.8rem;
    color: var(--text-white);
}

.engagement i {
    margin-right: 5px;
}

.date {
    font-size: 0.8rem;
    color: var(--text-white);
}

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

/* Contact Section */
.contact-section {
    background-color: var(--bg-dark);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.contact-form {
    background-color: var(--bg-dark-tertiary);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}
.form-control::placeholder {
    color: white;
    opacity: 0.5;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-white);
    transition: var(--transition-normal);
}

.form-control:focus {
    outline: none;
    border-color: rgba(106, 17, 203, 0.5);
    background-color: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.2);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition-normal);
}

.form-control:focus ~ .focus-border {
    width: 100%;
}

.contact-info {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.map-container {
    width: 100%;
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(135deg, rgba(106, 17, 203, 0.2) 0%, rgba(255, 8, 68, 0.1) 100%);*/
    background: transparent;
    pointer-events: none;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-card {
    background-color: var(--bg-dark-tertiary);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-card .card-icon {
    width: 50px;
    height: 50px;
    margin: 0;
    background: var(--primary-gradient);
}

.info-card .card-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-card .card-content p {
    margin-bottom: 0;
    color: var(--text-white);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    opacity: 1 !important;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /*background-color: var(--bg-dark-tertiary);*/
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition-normal);
    /*border: 1px solid rgba(255, 255, 255, 0.1);*/
    color: #ffffff !important;
    opacity: 1 !important;
}

.social-links a:hover {
    transform: translateY(-5px);
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-glow);
    border-color: transparent;
}

/* Footer */
.footer {
    background-color: var(--bg-dark-tertiary);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.footer-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(0deg, var(--bg-dark) 0%, transparent 100%);
    z-index: 1;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: var(--z-fixed);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* Modals */
.modal-content {
    background-color: var(--bg-dark-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    color: var(--text-light);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 30px;
}

.modal-title {
    font-size: 1.5rem;
    color: white;
}

.btn-close {
    color: var(--text-white);
    opacity: 0.7;
    filter: invert(1);
}

.modal-body {
    padding: 30px;
}

.modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 30px;
}

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

.device-info h4 {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.device-info p {
    color: var(--text-white);
    margin-bottom: 24px;
}

.device-features {
    text-align: left;
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.device-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.device-features li i {
    color: var(--success);
    margin-right: 12px;
}

.hero-section,
.features-tabs,
.top-features,
.gallery-section,
.contact-section {
    background-color: var(--bg-dark-secondary); /* #1a1a2e */
}

/* === Static two-device showcase with centered text === */
.devices-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem; /* space between the three columns */
    padding: 80px 0; /* vertical breathing room */
}

/* images on the left/right */
.device-left,
.device-right {
    flex: 0 1 30%; /* ~30% width each */
    text-align: center;
}

/* center column for your header + points */
.device-content {
    flex: 0 1 40%; /* ~40% width */
    max-width: 500px;
    color: var(--text-light);
}

/* size & style the screenshots */
.device-screen {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    /*box-shadow: var(--shadow-lg);*/
    object-fit: contain;
}

/* remove any leftover “mockup” frames or inner wrappers */
.phone-mockup,
.tablet-mockup,
.phone-inner,
.tablet-inner {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    overflow: visible !important;
}

/* kill any transform/animation on those wrappers */
.phone-inner,
.tablet-inner {
    transform: none !important;
    animation: none !important;
}
@media (max-width: 575.98px) {
    .Gimage1 {
        margin-top: 120px !important;
    }
}
@media (max-width: 700.00px) {
    .Gimage1 {
        margin-top: 120px !important;
    }
}