:root {
    /* Premium Colors */
    --bg-color: #050505;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --primary-color: #3b82f6;
    --accent-color: #8b5cf6;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-text: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    --gradient-border: linear-gradient(to bottom right, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));

    /* Spacing & Layout */
    --container-width: 1280px;
    --section-padding: 120px 0;
    --border-radius-lg: 32px;
    --border-radius-md: 24px;

    /* Typography */
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Effects */
    --shadow-glow: 0 0 80px rgba(59, 130, 246, 0.25);
    --shadow-card: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    --backdrop-blur: blur(20px);
    --border-light: 1px solid rgba(255, 255, 255, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
}

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

.text-gradient {
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-primary {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 20px 40px;
    font-size: 1.2rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: var(--text-main);
    color: var(--bg-color);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    /* margin-top: 40px; */
}

.started {
    margin-top: 40px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    backdrop-filter: var(--backdrop-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    border-color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    background: var(--text-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 40px;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 24px;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--text-main);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

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

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.badge-pill:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.08);
}

.badge-new {
    background: var(--gradient-primary);
    color: white;
    padding: 4px 10px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: clamp(3.5rem, 5vw, 5rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 32px;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 540px;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 64px;
}

.trust-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 32px;
}

.trust-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 16px;
    opacity: 0.7;
}

.logos {
    display: flex;
    gap: 32px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.logos:hover {
    opacity: 0.8;
    filter: grayscale(0%);
}

.logo-text {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* 3D Phone Mockup */
.hero-visual {
    position: relative;
    perspective: 2000px;
    display: flex;
    justify-content: center;
}

.phone-wrapper {
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease-out;
    animation: float-3d 6s ease-in-out infinite;
}

.phone-mockup {
    width: 340px;
    height: 680px;
    /* background: #000;
    border-radius: 56px;
    border: 12px solid #2a2a2a; */
    position: relative;
    /* box-shadow:
        -20px 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 2px rgba(255, 255, 255, 0.1); */
    overflow: hidden;
    z-index: 2;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 30px;
    background: #2a2a2a;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    /* background: #0f0f0f; */
    position: relative;
    overflow: hidden;
}

.screen-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.screen-img.active {
    opacity: 1;
    z-index: 2;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transform-style: preserve-3d;
}

.float-card {
    position: absolute;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(20px);
    padding: 16px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 20;
}

.float-card.top-right {
    top: 100px;
    right: -60px;
    transform: translateZ(40px);
    animation: float-delay 5s ease-in-out infinite;
}

.float-card.bottom-left {
    bottom: 120px;
    left: -80px;
    transform: translateZ(60px);
    animation: float-delay 7s ease-in-out infinite reverse;
}

.float-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.float-text span {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
}

.float-text small {
    color: var(--text-muted);
    font-size: 0.75rem;
}

@keyframes float-3d {

    0%,
    100% {
        transform: rotateY(-15deg) rotateX(5deg) translateY(0);
    }

    50% {
        transform: rotateY(-12deg) rotateX(2deg) translateY(-20px);
    }
}

@keyframes float-delay {

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

    50% {
        transform: translateZ(40px) translateY(-15px);
    }
}

/* Showcase Section */
.showcase {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, var(--bg-color), #0a0a0a);
    position: relative;
}

.section-header {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.screenshots-scroll {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    perspective: 1000px;
}

.phone-frame {
    border-radius: 56px;
    border: 12px solid #2a2a2a;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    background: #000;
}

.phone-frame.sm {
    width: 300px;
    height: 600px;
    transform: scale(0.95);
    opacity: 1;
    filter: none;
}

.phone-frame.md {
    width: 300px;
    height: 600px;
    z-index: 10;
    border-color: #2a2a2a;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.phone-frame:hover {
    transform: translateY(-10px);
    z-index: 20;
    border-color: #333;
}

/* Features Section */
.features {
    padding: var(--section-padding);
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    /* Default to top */
    transition: object-position 0.5s ease;
}

/* Positioning Utilities for Long Screenshots */
.img-pos-top {
    object-position: top center !important;
}

.img-pos-center {
    object-position: center center !important;
}

.img-pos-bottom {
    object-position: bottom center !important;
}

/* Custom positions if needed */
.img-pos-top-20 {
    object-position: 0% 20% !important;
}

.img-pos-top-40 {
    object-position: 0% 40% !important;
}

.img-pos-top-45 {
    object-position: 0% 45% !important;
}

.img-pos-top-60 {
    object-position: 0% 60% !important;
}

.img-pos-top-80 {
    object-position: 0% 80% !important;
}

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

.feature-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 32px;
    border: var(--border-light);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Pricing Section */
.pricing {
    padding: var(--section-padding);
    background: linear-gradient(to top, var(--bg-color), #080808);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 16px;
    border-radius: 99px;
    border: var(--border-light);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.toggle-label {
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.3s;
    font-size: 0.95rem;
}

.toggle-label.active {
    color: var(--text-main);
}

.switch {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 32px;
}

.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: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

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

.save-badge {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 99px;
    font-weight: 600;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 80px;
    align-items: stretch;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.pricing-card {
    background: var(--bg-card);
    padding: 32px 20px;
    border-radius: 32px;
    border: var(--border-light);
    position: relative;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.popular {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 0 60px rgba(59, 130, 246, 0.1);
}

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

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    width: 200px;
    text-align: center;
}

.card-header {
    text-align: center;
    margin-bottom: 40px;
}

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

.price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 16px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 8px;
    color: var(--text-muted);
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
    align-self: flex-end;
    margin-bottom: 8px;
}

.features-list li {
    margin-bottom: 20px;
    font-size: 1rem;
}

.check {
    color: var(--primary-color);
    background: rgba(59, 130, 246, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
}

/* Testimonials */
.testimonials {
    padding: var(--section-padding);
}

.testimonial-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 24px;
    border: var(--border-light);
}

.stars {
    color: #fbbf24;
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 1.15rem;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* FAQ */
.faq {
    padding: var(--section-padding);
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-header {
    font-size: 1.25rem;
    padding: 32px 0;
}

/* Final CTA */
.final-cta {
    padding: 160px 0;
    background: radial-gradient(circle at center, #111 0%, var(--bg-color) 70%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: var(--gradient-primary);
    filter: blur(120px);
    opacity: 0.15;
    border-radius: 50%;
    pointer-events: none;
}

.final-cta h2 {
    font-size: 4rem;
    margin-bottom: 24px;
    letter-spacing: -2px;
    position: relative;
}

/* Footer */
.footer {
    /* padding: 80px 0 40px; */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #020202;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        /* gap: 60px; */
        gap: 0;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .phone-wrapper {
        transform: rotateY(0) rotateX(0);
        animation: none;
    }

    .floating-elements {
        display: none;
    }

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

@media (max-width: 768px) {

    .nav-links,
    .btn-sm {
        display: none;
        border-radius: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

    .pricing-card.popular {
        transform: scale(1);
    }

    .hero {
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
    }

    .hero-content {
        display: contents;
    }

    .hero-title {
        order: 1;
        font-size: 2rem;
        letter-spacing: -1px;
    }

    .section-header h2,
    .final-cta h2 {
        font-size: 2rem;
        text-align: center;
    }

    .hero-subtitle {
        order: 2;
        font-size: 1.1rem;
    }

    .hero-visual {
        order: 3;
        margin: 20px 0 40px;
    }

    .hero-cta-group {
        order: 4;
    }

    .store-badges {
        order: 5;
        justify-content: center;
    }

    .phone-mockup {
        width: 280px;
        height: 560px;
    }

    .phone-wrapper {
        transform: scale(0.9);
    }

    .screenshots-scroll {
        display: flex;
        flex-direction: row;
        gap: 15px;
        justify-content: center;
        align-items: center;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 20px 10px;
    }

    .screenshots-scroll::-webkit-scrollbar {
        display: none;
    }

    .phone-frame {
        scroll-snap-align: center;
        flex-shrink: 0;
    }

    .phone-frame.sm {
        display: block;
        width: 200px;
        height: 400px;
        opacity: 0.6;
        transform: scale(0.85);
        filter: none;
    }

    .phone-frame.md {
        width: 260px;
        height: 520px;
        transform: scale(1);
        z-index: 10;
    }

    .store-badges {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        margin-bottom: 50px;
    }
}

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

    .hero-title {
        font-size: 2rem;
    }

    .phone-mockup {
        width: 240px;
        height: 480px;
    }

    .slider-controls {
        gap: 16px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .btn-primary {
        font-size: 12px;
        /* margin-top: 30px; */
    }

    .btn-secondary {
        font-size: 12px;
    }
}

/* Polished FAQ */
.faq-container {
    max-width: 800px;
}

.accordion {
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: var(--bg-card-hover);
}

.accordion-header {
    width: 100%;
    padding: 24px 32px;
    background: none;
    border: none;
    text-align: left;
    color: var(--text-main);
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.accordion-header:hover {
    color: var(--primary-color);
}

.icon-wrapper {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.accordion-header.active .icon-wrapper {
    transform: rotate(45deg);
    background: var(--primary-color);
    color: white;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.content-inner {
    padding: 0 32px 32px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Polished Footer */
.footer {
    background: #020202;
    /* padding-top: 100px; */
    padding-bottom: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 24px;
    font-size: 1rem;
    max-width: 300px;
    line-height: 1.6;
}

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

.social-links a {
    color: var(--text-muted);
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.05);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-links a:hover {
    color: white;
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

    .footer-brand {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .footer-links a:hover {
        transform: none;
    }
}

/* Store Badges */
.store-badges {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 12px;
    color: white;
    transition: all 0.3s ease;
    min-width: 200px;
}

.store-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.store-btn svg {
    width: 28px;
    height: 28px;
    opacity: 0.9;
}

.store-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.store-btn-text span:first-child {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.7;
    letter-spacing: 0.5px;
}

.store-btn-text .store-name {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 1;
    text-transform: none;
    letter-spacing: 0;
}

/* Testimonial Slider */
.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    background: var(--bg-card);
    border-radius: 32px;
    border: var(--border-light);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.testimonial-card p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-main);
    font-style: italic;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.slider-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* UI Navigation Controls */
.ui-nav-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.ui-nav-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 12px 24px;
    border-radius: 99px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--font-family);
}

.ui-nav-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-main);
    transform: translateY(-2px);
}

.ui-nav-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.view-label {
    display: block;
}

@media (max-width: 768px) {
    .ui-nav-controls {
        margin-top: 40px;
        gap: 12px;
    }

    .ui-nav-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}