:root {
    /* Adobe-inspired Clean Light Theme */
    --color-bg-main: #ffffff;
    --color-bg-alt: #f8f9fa;
    --color-text-main: #111111;
    --color-text-muted: #555555;

    /* Branding Colors */
    --color-primary: #0047FF;
    /* vibrant creative blue */
    --color-primary-hover: #0033cc;
    --color-secondary: #ff007f;
    /* energetic pink accent */

    /* UI Elements */
    --color-border: #e2e4e8;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 48px rgba(0, 71, 255, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--color-bg-main);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.mb-large {
    margin-bottom: 4rem;
}

.light-gray-bg {
    background-color: var(--color-bg-alt);
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 71, 255, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 71, 255, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-main);
}

.btn-secondary:hover {
    color: var(--color-primary);
}

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

.btn-outline:hover {
    border-color: var(--color-primary);
    background-color: var(--color-bg-alt);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-icon-small {
    width: 24px;
    height: 24px;
}

.logo-text {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.03em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

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

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

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--color-text-main);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 4rem;
    text-align: center;
    background: radial-gradient(circle at 50% -20%, rgba(0, 71, 255, 0.05), transparent 70%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: rgba(0, 71, 255, 0.1);
    color: var(--color-primary);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.hero p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-subtext {
    font-size: 0.9rem !important;
    color: #888;
}

/* Hero Slider System */
.hero-slider-container {
    max-width: 1100px;
    margin: 4rem auto 0;
    padding: 0 2rem;
    position: relative;
    overflow: visible;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    perspective: 1200px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform: scale(0.9) translateY(40px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slide.slide-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
    z-index: 10;
}

.slide-content-group {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.app-mockup.slide-main {
    width: 85%;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--color-border);
    transform: rotateX(5deg);
    transition: transform 0.8s ease;
}

.app-mockup.slide-main:hover {
    transform: rotateX(0deg);
}

.slide-mobile {
    position: absolute;
    right: 5%;
    bottom: -40px;
    width: 25%;
    max-width: 250px;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    border: 4px solid white;
}

.app-mockup.slide-island {
    max-height: 520px;
    width: auto;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.slide-caption {
    margin-top: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text-main);
    background: white;
    padding: 0.5rem 2rem;
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: var(--color-primary);
    border: 1px solid var(--color-border);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s;
}

.slider-btn:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: -1rem;
}

.slider-btn.next {
    right: -1rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    position: absolute;
    bottom: -60px;
    width: 100%;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--color-primary);
    width: 30px;
    border-radius: 10px;
}

/* Social Cloud */
.social-cloud {
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.social-cloud p {
    color: var(--color-text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.brand-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.6;
    font-weight: 700;
    font-size: 1.5rem;
    color: #999;
}

/* Feature Blocks */
.feature-block {
    padding: 8rem 0;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    font-weight: 400;
    margin-bottom: 2rem;
}

.text-content p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list .check {
    color: var(--color-primary);
    font-weight: bold;
    background: rgba(0, 71, 255, 0.1);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.export-tags {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.tag {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-weight: 500;
    color: var(--color-text-main);
}

.image-content {
    flex: 1;
    position: relative;
}

.feature-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

/* Floating Animations */
.floating {
    animation: float 6s ease-in-out infinite;
}

.floating-slow {
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

/* Features Grid */
.grid-section {
    padding: 8rem 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.card {
    background-color: var(--color-bg-main);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: transparent;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--color-bg-alt);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--color-text-muted);
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
    color: white;
    padding: 6rem 2rem;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.cta-section .btn-primary {
    background-color: white;
    color: var(--color-primary);
}

.cta-section .btn-primary:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    padding: 6rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    margin-top: 1.5rem;
    color: var(--color-text-muted);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.link-group h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.link-group a {
    display: block;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
    transition: color 0.2s;
}

.link-group a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        text-align: center;
        gap: 4rem;
    }

    .feature-list li {
        justify-content: center;
    }

    .export-tags {
        justify-content: center;
    }

    .image-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .image-content .floating.back-device,
    .image-content [style*="position: absolute"] {
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        width: 90% !important;
        max-width: 400px;
        margin-top: -80px;
        z-index: 1 !important;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .features-grid-small {
        grid-template-columns: 1fr !important;
    }
}

.store-badge:hover {
    transform: translateY(-5px) scale(1.05);
}

/* Add Dropdown styles for the new Navbar */
.dropdown {
    position: relative;
}

.arrow {
    font-size: 0.7rem;
    margin-left: 5px;
    opacity: 0.7;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: -20px;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 1rem;
    z-index: 10;
    border: 1px solid var(--color-border);
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.2s ease;
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--color-text-main);
    border-radius: 8px;
    transition: background 0.2s;
}

.dropdown-content a:hover {
    background-color: var(--color-bg-alt);
    color: var(--color-primary);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.tag-label {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: rgba(0, 71, 255, 0.1);
    color: var(--color-primary);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}