/* ============================================
   EMISATHI LANDING PAGE – PREMIUM STYLES
   ============================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #6c3aff;
    --primary-light: #a78bfa;
    --secondary: #00d4aa;
    --accent: #ff6b6b;
    --dark: #0a0a14;
    --dark-2: #0f0f1e;
    --dark-3: #16162a;
    --card-bg: #1a1a30;
    --card-border: rgba(108, 58, 255, 0.2);
    --text: #e8e8f0;
    --text-muted: #8888a4;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #6c3aff 0%, #00d4aa 100%);
    --gradient-2: linear-gradient(135deg, #a78bfa 0%, #6c3aff 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(108, 58, 255, 0.3) 0%, transparent 70%);
    --radius: 14px;
    --shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Inter', system-ui, sans-serif;
    --font-display: 'Outfit', 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

/* ===== UTILITY ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-main);
    font-weight: 600;
    cursor: pointer;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: var(--transition);
}

.btn:hover::after {
    background: rgba(255, 255, 255, 0.08);
}

.btn-primary {
    background: var(--gradient-1);
    color: #fff;
    box-shadow: 0 0 20px rgba(108, 58, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(108, 58, 255, 0.6);
}

.btn-secondary {
    background: rgba(0, 212, 170, 0.15);
    color: var(--secondary);
    border: 1.5px solid var(--secondary);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(0, 212, 170, 0.25);
    transform: translateY(-2px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-light);
}

.btn-sm {
    padding: .5rem 1.1rem;
    font-size: .82rem;
}

.btn-lg {
    padding: .85rem 1.8rem;
    font-size: 1rem;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: .9rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 20, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(108, 58, 255, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: .7rem;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.nav-logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: .2rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    padding: .45rem .85rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
}

.nav-link.active {
    color: var(--primary-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-shrink: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .4rem;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    transform: scale(1.03);
    animation: zoomSlide 8s ease-in-out infinite alternate;
}

.slide.active {
    opacity: 1;
}

@keyframes zoomSlide {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.06);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(10, 10, 20, 0.5) 0%,
            rgba(10, 10, 20, 0.55) 50%,
            rgba(10, 10, 20, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 1.5rem;
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(108, 58, 255, 0.2);
    border: 1px solid rgba(108, 58, 255, 0.4);
    color: var(--primary-light);
    padding: .4rem 1.2rem;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    animation: fadeUp 1s ease 0.2s both;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.2rem;
    animation: fadeUp 1s ease 0.35s both;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(232, 232, 240, 0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
    animation: fadeUp 1s ease 0.5s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeUp 1s ease 0.65s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
    animation: fadeUp 1s ease 0.8s both;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    font-family: var(--font-display);
}

.stat-label {
    font-size: .8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Slider dots */
.slider-dots {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .6rem;
    z-index: 3;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-light);
    width: 24px;
    border-radius: 4px;
}

/* Slider arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: rgba(108, 58, 255, 0.4);
    border-color: var(--primary);
}

.prev-arrow {
    left: 1.5rem;
}

.next-arrow {
    right: 1.5rem;
}

/* Scroll indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    z-index: 3;
}

.scroll-down span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    animation: scrollBounce 1.4s ease infinite;
}

.scroll-down span:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-down span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes scrollBounce {

    0%,
    80%,
    100% {
        opacity: 0.3;
        transform: translateY(0);
    }

    40% {
        opacity: 1;
        transform: translateY(5px);
    }
}

/* ===== SECTIONS ===== */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-badge {
    display: inline-block;
    background: rgba(108, 58, 255, 0.15);
    border: 1px solid rgba(108, 58, 255, 0.3);
    color: var(--primary-light);
    padding: .35rem 1rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: .75rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto;
}

/* ===== ABOUT ===== */
.about-section {
    background: var(--dark-2);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.about-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    opacity: 0;
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(108, 58, 255, 0.4);
}

.about-card:hover::before {
    opacity: 1;
}

.about-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .6rem;
}

.about-card p {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.7;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.story-text p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin-top: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: var(--text);
    font-size: .95rem;
}

.highlight-item span {
    font-size: 1rem;
}

.image-glow-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 0 60px rgba(108, 58, 255, 0.3);
}

.story-img {
    width: 100%;
    display: block;
    border-radius: var(--radius);
}

/* ===== LEGAL ===== */
.legal-section {
    background: var(--dark-3);
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.legal-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.legal-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(108, 58, 255, 0.5);
}

.legal-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.legal-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .6rem;
}

.legal-card p {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.legal-badge {
    display: inline-block;
    padding: .35rem .9rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
}

.legal-badge.coming-soon {
    background: rgba(255, 107, 107, 0.15);
    color: var(--accent);
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.legal-notice {
    text-align: center;
    background: rgba(108, 58, 255, 0.1);
    border: 1px solid rgba(108, 58, 255, 0.2);
    border-radius: var(--radius);
    padding: 1.2rem 2rem;
    font-size: .95rem;
    color: var(--text-muted);
}

.legal-notice a {
    color: var(--primary-light);
    text-decoration: none;
}

.legal-notice a:hover {
    text-decoration: underline;
}

/* ===== SCREENS ===== */
.screens-section {
    background: var(--dark-2);
}

.screens-showcase {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.screen-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.screen-frame {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(108, 58, 255, 0.2);
    transition: var(--transition);
}

.screen-frame img {
    width: 200px;
    display: block;
}

.screen-frame.featured img {
    width: 240px;
}

.screen-frame:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(108, 58, 255, 0.3);
}

.screen-label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
}

.floating-1 {
    transform: translateY(-20px);
}

.floating-2 {
    transform: translateY(-10px);
}

.screen-download-cta {
    text-align: center;
}

.screen-download-cta p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== DEMO VIDEO ===== */
.demo-section {
    background: var(--dark-3);
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto 3rem;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.video-bg-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(108, 58, 255, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 0 40px rgba(108, 58, 255, 0.5);
    transition: var(--transition);
    position: relative;
    z-index: 2;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 40px rgba(108, 58, 255, 0.5);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 60px rgba(108, 58, 255, 0.8);
        transform: scale(1.05);
    }
}

.play-button:hover {
    transform: scale(1.1) !important;
}

.play-icon {
    margin-left: 5px;
}

.video-overlay-text {
    text-align: center;
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
}

.video-overlay-text h3 {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: .4rem;
}

.video-overlay-text p {
    color: var(--text-muted);
    font-size: .9rem;
}

.video-coming-label {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 107, 107, 0.15);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: var(--accent);
    padding: .3rem .9rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    z-index: 2;
}

.video-iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
}

.demo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.demo-feature {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.demo-feature:hover {
    border-color: rgba(108, 58, 255, 0.5);
    transform: translateY(-3px);
}

.demo-feature span {
    font-size: 1.8rem;
    display: block;
    margin-bottom: .6rem;
}

.demo-feature p {
    color: var(--text-muted);
    font-size: .9rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: var(--dark-2);
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 1.5rem;
    transition: transform .5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 2rem;
    min-width: 100%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    color: rgba(108, 58, 255, 0.12);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    color: #fff;
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    font-size: .95rem;
    color: var(--white);
}

.author-info span {
    font-size: .85rem;
    color: var(--text-muted);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.t-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.t-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.t-dots {
    display: flex;
    gap: .5rem;
    align-items: center;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.t-dot.active {
    background: var(--primary-light);
    width: 20px;
    border-radius: 4px;
}

/* ===== DOWNLOAD CTA BANNER ===== */
.download-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0a2e 0%, #0a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.download-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    pointer-events: none;
}

.cta-banner {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(108, 58, 255, 0.25);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    backdrop-filter: blur(10px);
}

.cta-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: .4rem;
}

.cta-text p {
    color: var(--text-muted);
    font-size: .95rem;
}

.cta-download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.8rem;
    border-radius: 16px;
    text-decoration: none;
    position: relative;
    transition: var(--transition);
    min-width: 220px;
}

.retailer-btn {
    background: var(--gradient-1);
    box-shadow: 0 8px 30px rgba(108, 58, 255, 0.4);
}

.retailer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(108, 58, 255, 0.6);
}

.service-btn {
    background: rgba(0, 212, 170, 0.15);
    border: 1.5px solid var(--secondary);
}

.service-btn:hover {
    background: rgba(0, 212, 170, 0.25);
    transform: translateY(-3px);
}

.download-btn-icon {
    color: #fff;
    flex-shrink: 0;
}

.service-btn .download-btn-icon {
    color: var(--secondary);
}

.download-btn-text {
    flex: 1;
}

.download-btn-text span {
    display: block;
    font-size: .78rem;
    color: rgba(255, 255, 255, 0.7);
}

.service-btn .download-btn-text span {
    color: rgba(0, 212, 170, 0.7);
}

.download-btn-text strong {
    font-size: 1.05rem;
    color: #fff;
    font-weight: 700;
}

.service-btn .download-btn-text strong {
    color: var(--secondary);
}

.download-badge {
    position: absolute;
    top: -10px;
    right: -6px;
    background: var(--accent);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: .2rem .6rem;
    border-radius: 50px;
}

.retailer-btn .download-badge {
    background: rgba(255, 255, 255, 0.2);
}

/* ===== FOOTER ===== */
.footer {
    background: #05050f;
    border-top: 1px solid rgba(108, 58, 255, 0.15);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: .7rem;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 7px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: .75rem;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.footer-links-col h4 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.footer-links-col ul a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: .9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: .4rem;
}

.footer-links-col ul a:hover {
    color: var(--primary-light);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: var(--text-muted);
    font-size: .9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: .85rem;
    color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-story {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: .2rem;
    }

    .nav-links.open {
        display: flex;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 20, 0.97);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(108, 58, 255, 0.15);
        padding: 1.5rem;
        z-index: 999;
    }

    .nav-actions {
        display: none;
    }

    .nav-actions.open {
        display: flex;
        position: fixed;
        top: auto;
        flex-direction: column;
        padding: 0 1.5rem 1.5rem;
        left: 0;
        right: 0;
        background: rgba(10, 10, 20, 0.97);
        backdrop-filter: blur(20px);
        z-index: 999;
    }

    .hamburger {
        display: flex;
    }

    .nav-link {
        width: 100%;
        padding: .75rem 1rem;
        border-radius: 10px;
    }

    .hero-stats {
        gap: 1.2rem;
    }

    .stat-num {
        font-size: 1.3rem;
    }

    .screens-showcase {
        flex-direction: column;
        align-items: center;
    }

    .floating-1,
    .floating-2 {
        transform: none;
    }

    .screen-frame img,
    .screen-frame.featured img {
        width: 180px;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
    }

    .cta-download-buttons {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .download-btn {
        min-width: auto;
        width: 100%;
    }

    .cta-download-buttons {
        flex-direction: column;
        width: 100%;
    }
}

/* ===== KEY FEATURES ===== */
.features-section {
    background: var(--dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(108, 58, 255, 0.4);
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(108, 58, 255, 0.15);
    border: 1px solid rgba(108, 58, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrap {
    background: rgba(108, 58, 255, 0.25);
    transform: rotate(-5deg) scale(1.05);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .6rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.75;
}

/* ===== COMPANY INFO IN ABOUT ===== */
.company-name-tag {
    display: inline-block;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.25);
    color: var(--secondary);
    padding: .3rem 1rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .4px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.company-info-block {
    margin-top: 1.8rem;
    padding: 1.4rem;
    background: rgba(108, 58, 255, 0.07);
    border: 1px solid rgba(108, 58, 255, 0.18);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.company-info-item {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
}

.company-info-item>span {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: .1rem;
}

.company-info-item strong {
    display: block;
    font-size: .85rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: .2rem;
}

.company-info-item p {
    color: var(--text-muted);
    font-size: .85rem;
    line-height: 1.5;
    margin: 0;
}

.company-info-item a {
    color: var(--primary-light);
    text-decoration: none;
}

.company-info-item a:hover {
    text-decoration: underline;
}

/* ===== LEGAL LINK BUTTON ===== */
.legal-link-btn {
    display: inline-flex;
    align-items: center;
    background: rgba(108, 58, 255, 0.12);
    border: 1px solid rgba(108, 58, 255, 0.25);
    color: var(--primary-light);
    text-decoration: none;
    padding: .5rem 1.1rem;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    transition: var(--transition);
}

.legal-link-btn:hover {
    background: rgba(108, 58, 255, 0.25);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}