/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Logo Colors - Primary Blue */
    --primary-color: #3b5aff;
    --primary-dark: #2f4ada;
    --primary-light: #5f75ff;
    --primary-glow: rgba(59, 90, 255, 0.3);

    /* Dark Theme - Matching Logo Background */
    --bg-dark: #0A0E1A;
    --bg-dark-secondary: #141824;
    --bg-dark-tertiary: #1C1F2E;

    /* Light Theme */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-tertiary: #F0F2F5;

    /* Text Colors */
    --text-primary: #1D1D1F;
    --text-secondary: #86868B;
    --text-light: #B8B8C0;
    --text-white: #FFFFFF;

    /* Accent Colors */
    --accent-color: #FF9500;
    --success-color: #34C759;
    --error-color: #FF3B30;
    --warning-color: #FFCC00;

    /* Gradients - Using Logo Colors */
    --gradient-primary: linear-gradient(135deg, #3b5aff 0%, #2f4ada 100%);
    --gradient-hero: linear-gradient(135deg, #3b5aff 0%, #5856D6 100%);
    --gradient-dark: linear-gradient(135deg, #0A0E1A 0%, #141824 100%);

    /* Material Design Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    --shadow-xl: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    --shadow-glow: 0 0 20px rgba(59, 90, 255, 0.4);

    /* Border */
    --border-color: #E5E7EB;
    --border-dark: rgba(255, 255, 255, 0.1);

    /* Spacing - Material Design 8px grid */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-white);
    background-color: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

/* Navigation - Material Design */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 26, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-dark);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
}

.logo-image {
    height: 72px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px var(--primary-glow));
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    transition: all 0.3s ease;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary:active {
    transform: translateY(0);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top left, rgba(79, 125, 255, 0.1) 0%, var(--bg-dark) 45%, var(--bg-dark-secondary) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-white);
}

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

.hero-description {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

/* Hero Image - Phone Mockup Slideshow */
.hero-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.phone-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
}

.phone-mockup {
    position: relative;
    width: 480px;
    height: 333px;
    flex-shrink: 0;
}

.phone-frame-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.phone-screen {
    position: absolute;
    top: 3.8%;
    left: 22.2%;
    width: 55.6%;
    height: 92.4%;
    z-index: 10;
    background: #030712;
    border-radius: 20px;
    /* Slightly reduced for better fit */
    overflow: hidden;
}

.phone-slideshow {
    width: 100%;
    height: 100%;
    position: relative;
}

.slideshow-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    border-radius: 24px;
}

.slideshow-image.active {
    opacity: 1;
}

.carousel-nav-btn {
    background: rgba(79, 125, 255, 0.2);
    border: 2px solid rgba(79, 125, 255, 0.4);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-white);
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.carousel-nav-btn:hover {
    background: rgba(79, 125, 255, 0.4);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.carousel-nav-btn:active {
    transform: scale(0.95);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 4px;
}

.hero-image .phone-mockup {
    width: 280px;
    aspect-ratio: 470 / 1024;
    height: auto;
    margin: 0;
}

.phone-mockup {
    width: 280px;
    aspect-ratio: 470 / 1024;
    height: auto;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(79, 125, 255, 0.3), 0 0 40px rgba(79, 125, 255, 0.2);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(79, 125, 255, 0.2);
}

.phone-mockup:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 40px var(--primary-glow);
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.phone-screen {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #030712;
    border-radius: 32px;
    overflow: hidden;
}

.app-preview {
    width: 100%;
    height: 100%;
    background: #000000;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.app-header {
    background: #1C1C1E;
    padding: 12px 16px;
}

.app-status-bar {
    height: 20px;
    background: #000000;
    margin-bottom: 8px;
}

.app-nav {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.app-content {
    padding: 20px 16px;
}

.app-card {
    background: #1C1C1E;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
}

.app-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.app-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2C2C2E;
    border-radius: 8px;
}

.app-text-bold {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.app-text-small {
    font-size: 14px;
    color: #8E8E93;
}

.app-progress {
    height: 4px;
    background: #2C2C2E;
    border-radius: 2px;
    overflow: hidden;
}

.app-progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--primary-glow);
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-hero);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
    opacity: 0.4;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #FF9500 0%, #FF3B30 100%);
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #34C759 0%, #30D158 100%);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Section Styles - Material Design Spacing */
section {
    padding: var(--spacing-3xl) 0;
    position: relative;
    background: var(--bg-dark);
}

section:nth-child(even) {
    background: var(--bg-dark-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-white);
}

.section-description {
    font-size: 20px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    background: var(--bg-dark-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--bg-dark-tertiary);
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-dark);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-white);
}

.feature-description {
    color: var(--text-light);
    margin-bottom: 0px;
    line-height: 1.5;
    font-size: 15px;
}

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

.feature-list li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 24px;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

/* How It Works Section */
.how-it-works {
    background: var(--bg-dark);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    padding: var(--spacing-xl);
    background: var(--bg-dark-tertiary);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.step:hover {
    background: var(--bg-dark-tertiary);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transform: translateX(8px);
    border-color: var(--primary-color);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-hero);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: var(--shadow-md), var(--shadow-glow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-white);
}

.step-description {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 15px;
}

.step-visual {
    display: flex;
    justify-content: center;
}

.step-icon {
    font-size: 64px;
}

/* App Screenshots Section */
.app-screenshots {
    background: var(--bg-dark-secondary);
    padding: var(--spacing-3xl) 0;
}

.screenshots-container {
    margin-top: var(--spacing-2xl);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-xl) 0;
}

.single-phone-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    position: relative;
}

.screenshot-nav-btn {
    background: rgba(79, 125, 255, 0.2);
    border: 2px solid rgba(79, 125, 255, 0.4);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-white);
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.screenshot-nav-btn:hover {
    background: rgba(79, 125, 255, 0.4);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.screenshot-nav-btn:active {
    transform: scale(0.95);
}

.screenshot-nav-btn svg {
    width: 24px;
    height: 24px;
}

.screenshot-indicators {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.screenshot-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.screenshot-indicator.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 4px;
}

.single-phone-wrapper .phone-mockup {
    width: 320px;
    height: 640px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(79, 125, 255, 0.3), 0 0 40px rgba(79, 125, 255, 0.2);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(79, 125, 255, 0.2);
}

.single-phone-wrapper .phone-mockup:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 40px var(--primary-glow);
}

.single-phone-wrapper .phone-screen {
    width: 100%;
    height: 100%;
    background: #030712;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.screenshot-scroll-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.screenshot-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    animation: scrollScreenshots 30s ease-in-out infinite;
    will-change: transform;
}

.screenshot-image {
    width: 100%;
    min-height: 616px;
    height: 616px;
    object-fit: contain;
    object-position: top center;
    display: block;
    flex-shrink: 0;
    background: #030712;
}

@keyframes scrollScreenshots {

    0%,
    18% {
        transform: translateY(0);
    }

    20%,
    38% {
        transform: translateY(-20%);
    }

    40%,
    58% {
        transform: translateY(-40%);
    }

    60%,
    78% {
        transform: translateY(-60%);
    }

    80%,
    98% {
        transform: translateY(-80%);
    }

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

/* Pause animation on hover */
.single-phone-wrapper:hover .screenshot-content {
    animation-play-state: paused;
}

.screenshot-scroll-wrapper::-webkit-scrollbar {
    width: 4px;
}

.screenshot-scroll-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.screenshot-scroll-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.screenshot-image {
    width: 100%;
    height: auto;
    display: block;
    min-height: 536px;
    object-fit: cover;
    object-position: top;
}

/* Responsive styles for screenshots */
@media (max-width: 768px) {
    .screenshot-content {
        animation: none !important;
    }

    .screenshot-nav-btn {
        display: flex;
    }

    .screenshot-indicators {
        display: flex;
    }

    .single-phone-wrapper .phone-mockup {
        width: 280px;
        height: 560px;
        padding: 10px;
        border-radius: 36px;
    }

    .single-phone-wrapper .phone-screen {
        border-radius: 28px;
    }

    .screenshot-image {
        min-height: 540px;
        height: 540px;
    }
}

@media (max-width: 480px) {
    .screenshot-content {
        animation: none !important;
    }

    .screenshot-nav-btn {
        display: flex;
        width: 40px;
        height: 40px;
    }

    .screenshot-nav-btn svg {
        width: 20px;
        height: 20px;
    }

    .screenshot-indicators {
        display: flex;
    }

    .single-phone-wrapper {
        gap: 8px;
    }

    .single-phone-wrapper .phone-mockup {
        width: 200px;
        height: 400px;
        padding: 6px;
        border-radius: 28px;
    }

    .single-phone-wrapper .phone-screen {
        border-radius: 20px;
    }

    .screenshot-image {
        min-height: 388px;
        height: 388px;
    }

    .hero-image .phone-mockup {
        width: 200px;
        aspect-ratio: 470 / 1024;
        height: auto;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.5;
    }

    .btn-large {
        padding: 12px 20px;
        font-size: 16px;
    }
}

/* 360px overrides moved to bottom for proper CSS specificity */

/* Benefits Section */
.benefits {
    background: var(--bg-dark);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    margin-top: var(--spacing-2xl);
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.benefit-item {
    display: flex;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--bg-dark-tertiary);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-dark);
}

.benefit-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
    border-color: var(--primary-color);
}

.benefit-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-white);
}

.benefit-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: var(--bg-dark-tertiary);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-dark);
}

.dashboard-header {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-dark);
}

.dashboard-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-white);
}

.dashboard-stats {
    display: flex;
    gap: 32px;
}

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

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-light);
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dashboard-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px;
    padding: 16px;
    background: var(--bg-dark-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-dark);
}

.chart-bar {
    flex: 1;
    background: var(--gradient-hero);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chart-bar:hover {
    opacity: 0.8;
    transform: scaleY(1.05);
}

.dashboard-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dashboard-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-dark-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-dark);
}

.item-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark-tertiary);
    border-radius: 8px;
    border: 1px solid var(--border-dark);
}

.item-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
    color: var(--text-white);
}

.item-subtitle {
    font-size: 12px;
    color: var(--text-light);
}

/* Pricing Section */
.pricing {
    background: var(--bg-dark);
}

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

.pricing-card {
    background: var(--bg-dark-tertiary);
    border: 2px solid var(--border-dark);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-white);
}

.pricing-price {
    margin-bottom: 8px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
}

.price-period {
    font-size: 18px;
    color: var(--text-light);
}

.pricing-description {
    color: var(--text-light);
    font-size: 14px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-dark);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-dark-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.testimonial-card {
    background: var(--bg-dark-tertiary);
    padding: var(--spacing-xl);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.testimonial-rating {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-hero);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: var(--shadow-sm);
}

.author-name {
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--text-white);
}

.author-role {
    font-size: 14px;
    color: var(--text-light);
}

/* CTA Section */
.cta {
    background: var(--gradient-hero);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.cta-description {
    font-size: 20px;
    margin-bottom: 48px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid var(--border-dark);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    background: var(--bg-dark-tertiary);
    color: var(--text-white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-dark-tertiary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-light);
}

.contact-form textarea {
    resize: vertical;
    margin-bottom: 24px;
}

.form-note {
    margin-top: 16px;
    font-size: 14px;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #030712;
    color: white;
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(79, 125, 255, 0.2));
}

.footer-logo .logo-text {
    color: white;
    -webkit-text-fill-color: white;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 1;
    }

    .hero-image {
        order: 2;
        margin-top: var(--spacing-2xl);
    }

    .hero-image .phone-mockup {
        width: 280px;
        aspect-ratio: 470 / 1024;
        height: auto;
    }

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

    .benefits-content {
        grid-template-columns: 1fr;
    }

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

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

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    .hero-content {
        gap: 32px;
    }

    .logo-image {
        height: 56px;
    }

    .phone-carousel-wrapper {
        gap: 16px;
    }

    .carousel-nav-btn {
        width: 36px;
        height: 36px;
    }

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

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

    .hero-title {
        font-size: 36px;
        word-wrap: break-word;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-cta .btn-large {
        width: 100%;
        max-width: 320px;
        padding: 14px 24px;
        font-size: 16px;
    }

    .hero-image .phone-mockup {
        width: 280px;
        aspect-ratio: 470 / 1024;
        height: auto;
        margin: 0;
    }

    .feature-card {
        padding: var(--spacing-md);
    }

    .feature-icon {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .step {
        padding: var(--spacing-md);
    }

    .benefit-item {
        padding: var(--spacing-md);
    }

    .testimonial-card {
        padding: var(--spacing-md);
    }

    .testimonial-text {
        font-size: 15px;
    }

    .hero-stats {
        justify-content: center;
    }

    .section-title {
        font-size: 32px;
        word-wrap: break-word;
        hyphens: auto;
    }

    .section-description {
        font-size: 16px;
        margin-bottom: 24px;
        line-height: 1.5;
    }

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

    .step {
        grid-template-columns: 1fr;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-description {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 40px 0 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
    }

    .footer-title {
        margin-bottom: 12px;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.feature-card,
.pricing-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: white;
}

/* Download Section */
.download {
    background: var(--gradient-hero);
    color: var(--text-white);
    padding: var(--spacing-3xl) 0;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.download-text {
    text-align: left;
}

.download-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-white);
}

.download-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-2xl);
}

.download-buttons {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.download-btn {
    display: inline-block;
    transition: transform 0.2s ease;
}

.download-btn:hover {
    transform: scale(1.05);
}

.download-btn img {
    height: 60px;
    width: auto;
    border-radius: 8px;
}

.download-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--spacing-md);
}

.download-visual {
    display: none;
}

@media (max-width: 768px) {
    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .download-title {
        font-size: 36px;
    }

    .download-buttons {
        justify-content: center;
    }
}

/* Reordered Specificity */
@media (max-width: 360px) {
    .container {
        padding: 0 8px;
    }

    .hero-title {
        font-size: 24px;
        word-wrap: break-word;
        hyphens: auto;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .hero-cta {
        width: 100%;
        max-width: 100%;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-cta .btn-large {
        width: 100%;
        max-width: 100%;
        padding: 10px 12px;
        font-size: 13px;
        white-space: normal;
        text-align: center;
    }

    .hero-image .phone-mockup {
        width: 220px;
        aspect-ratio: 470 / 1024;
        height: auto;
        margin: 0;
    }

    .screenshot-image {
        min-height: 280px;
        height: 280px;
    }

    .logo-text {
        font-size: 18px;
    }

    .logo-image {
        height: 48px;
    }

    .section-title {
        font-size: 24px;
    }

    .nav-content {
        height: 60px;
    }

    .feature-card {
        padding: var(--spacing-sm);
    }

    .feature-icon {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .step {
        padding: var(--spacing-md);
        gap: 12px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .benefit-item {
        padding: var(--spacing-sm);
    }

    .testimonial-card {
        padding: var(--spacing-md);
    }

    .testimonial-text {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 10px;
        font-size: 14px;
    }

    .footer {
        padding: 32px 0 16px;
    }

    .footer-content {
        gap: 24px;
        margin-bottom: 24px;
    }

    .footer-logo-image {
        height: 64px;
    }

    .footer-description {
        font-size: 14px;
        line-height: 1.4;
    }

    .footer-title {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .footer-links a,
    .footer-contact li {
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 13px;
        flex-direction: column;
        gap: 12px;
    }

    .carousel-nav-btn {
        width: 28px;
        height: 28px;
    }

    .phone-carousel-wrapper {
        gap: 12px;
    }

}

/* Extra small phones (320px and below) - prevent button overflow */
@media (max-width: 320px) {
    .hero-text {
        min-width: 0;
    }

    .hero-cta {
        min-width: 0;
    }

    .hero-cta .btn-large {
        padding: 8px 10px;
        font-size: 12px;
    }

    .phone-carousel-wrapper {
        gap: 8px;
    }
}