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

:root {
    /* Ultra Modern Dark Theme with Vibrant Neon Accents */
    --bg-primary: #000000;
    --bg-secondary: #0a0a0f;
    --bg-tertiary: #111118;
    --bg-card: rgba(20, 20, 30, 0.4);
    --bg-card-hover: rgba(30, 30, 45, 0.6);
    --bg-glass: rgba(255, 255, 255, 0.05);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b0b0c8;
    --text-tertiary: #707080;
    
    /* Vibrant Neon Accent Colors */
    --accent-cyan: #00f5ff;
    --accent-purple: #a855f7;
    --accent-pink: #ec4899;
    --accent-blue: #3b82f6;
    --accent-orange: #f97316;
    --accent-green: #10b981;
    
    /* Dynamic Animated Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --gradient-secondary: linear-gradient(135deg, #00f5ff 0%, #a855f7 50%, #ec4899 100%);
    --gradient-cyber: linear-gradient(135deg, #00f5ff 0%, #3b82f6 50%, #a855f7 100%);
    --gradient-warm: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #f97316 100%);
    --gradient-cool: linear-gradient(135deg, #00f5ff 0%, #3b82f6 100%);
    --gradient-neon: linear-gradient(135deg, #00f5ff 0%, #a855f7 50%, #ec4899 100%);
    
    /* Border Colors */
    --border-color: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(168, 85, 247, 0.5);
    
    /* Shadows with Neon Glow */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.6);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.7);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.8);
    --shadow-glow-cyan: 0 0 40px rgba(0, 245, 255, 0.5);
    --shadow-glow-purple: 0 0 40px rgba(168, 85, 247, 0.5);
    --shadow-glow-pink: 0 0 40px rgba(236, 72, 153, 0.5);
    --shadow-glow-blue: 0 0 40px rgba(59, 130, 246, 0.5);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Typography - Modern Font */
    --font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.5rem;
    --font-size-6xl: 4.5rem;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow: hidden;
}

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow: hidden;
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Animated Background Particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 245, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    animation: backgroundShift 20s ease infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes backgroundShift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

/* Navigation - Glassmorphism */
/* Integrated Navigation - Inside Page */
.navbar-integrated {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--spacing-md) var(--spacing-md);
    pointer-events: none;
}

@media (max-width: 968px) {
    .navbar-integrated {
        padding: var(--spacing-sm) var(--spacing-md);
    }
}

@media (max-width: 640px) {
    .navbar-integrated {
        padding: var(--spacing-xs) var(--spacing-sm);
    }
}

.nav-content-integrated {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: auto;
}

.navbar-integrated .logo {
    pointer-events: auto;
}

.navbar-integrated .nav-links {
    pointer-events: auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: var(--font-size-xl);
    font-weight: 800;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: all var(--transition-base);
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.5));
}

.logo-icon {
    font-size: var(--font-size-2xl);
    filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.6));
    animation: float 3s ease-in-out infinite;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: all var(--transition-base);
    position: relative;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 8px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 2px;
    background: var(--gradient-neon);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
    background: rgba(168, 85, 247, 0.1);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    opacity: 1;
}

.nav-links a.active {
    background: rgba(168, 85, 247, 0.15);
}

/* Single Screen Layout */
.single-screen {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Creative Hero Section - Out of the Box Design */
.hero-creative {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xl) 0 var(--spacing-md);
    min-height: 0;
    max-height: 100vh;
    box-sizing: border-box;
}

/* Animated Background Orbs */
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: 0;
    animation: floatOrb 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.4) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.3) 0%, transparent 70%);
    bottom: -150px;
    left: -50px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
    top: 50%;
    right: 20%;
    animation-delay: -14s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

.container-creative {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    max-height: calc(100vh - 80px);
    box-sizing: border-box;
}

/* Left Side - Content */
.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(var(--spacing-sm), 2vw, var(--spacing-lg));
    animation: fadeInLeft 1s ease;
    min-height: 0;
    overflow: hidden;
}

.badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    font-size: clamp(0.625rem, 1.5vw, var(--font-size-sm));
    font-weight: 600;
    color: var(--accent-purple);
    width: fit-content;
    backdrop-filter: blur(10px);
    animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(168, 85, 247, 0); }
}

.hero-title-creative {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1;
    margin: 0;
}

.title-line-1,
.title-line-3 {
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    color: var(--text-primary);
    line-height: 0.9;
}

.title-line-2 {
    font-size: clamp(2.5rem, 10vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.9;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 3s ease infinite;
    filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.5));
}

.gradient-text-creative {
    display: inline-block;
}

.hero-subtitle-creative {
    font-size: clamp(0.875rem, 1.8vw, 1.125rem);
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
    max-width: 500px;
    margin-bottom: var(--spacing-xs);
}

.download-section {
    margin-top: clamp(var(--spacing-xs), 1.5vw, var(--spacing-md));
}

.download-buttons-creative {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    max-width: 320px;
    width: 100%;
}

.download-btn-creative {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 16px;
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-btn-creative::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-neon);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
}

.download-btn-creative:hover::before {
    opacity: 0.2;
}

.download-btn-creative:hover {
    transform: translateX(8px);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.3);
}

.btn-icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.download-btn-creative:hover .btn-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.btn-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.btn-label {
    font-size: var(--font-size-xs);
    color: var(--text-tertiary);
    font-weight: 500;
}

.btn-platform {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--text-primary);
}

.android-btn {
    background: rgba(0, 245, 255, 0.05);
}

.ios-btn {
    background: rgba(236, 72, 153, 0.05);
}

/* Right Side - Phone with Floating Icons */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeInRight 1s ease;
}

.phone-container {
    position: relative;
    width: 100%;
    max-width: 350px;
    height: clamp(400px, 60vh, 700px);
    max-height: calc(100vh - 120px);
}

.phone-mockup-creative {
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 20px;
    box-shadow: var(--shadow-lg), var(--shadow-glow-purple);
    border: 2px solid var(--border-glow);
    position: relative;
    animation: floatPhone 6s ease-in-out infinite;
    z-index: 2;
}

.phone-notch {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 35px;
    background: var(--bg-primary);
    border-radius: 0 0 25px 25px;
    z-index: 3;
}

.phone-screen-creative {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 50%, #1a1a2e 100%);
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

.screen-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 60px 20px 20px;
}

.chat-bubble {
    position: absolute;
    width: 60%;
    height: 50px;
    background: rgba(168, 85, 247, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    animation: bubbleFloat 4s ease-in-out infinite;
}

.bubble-1 {
    top: 80px;
    left: 20px;
    animation-delay: 0s;
}

.bubble-2 {
    top: 150px;
    right: 20px;
    animation-delay: 1s;
    width: 50%;
}

.bubble-3 {
    top: 220px;
    left: 20px;
    animation-delay: 2s;
    width: 45%;
}

@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0px); opacity: 0.7; }
    50% { transform: translateY(-10px); opacity: 1; }
}

/* Floating Feature Icons */
.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 2px solid var(--border-glow);
    box-shadow: var(--shadow-md), var(--shadow-glow-purple);
    z-index: 1;
    animation: floatIcon 6s ease-in-out infinite;
}

.icon-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 30%;
    right: -15%;
    animation-delay: -2s;
}

.icon-3 {
    bottom: 30%;
    left: -10%;
    animation-delay: -4s;
}

.icon-4 {
    bottom: 10%;
    right: -15%;
    animation-delay: -6s;
}

@keyframes floatIcon {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -10px) rotate(5deg); }
    50% { transform: translate(-5px, 5px) rotate(-5deg); }
    75% { transform: translate(5px, 10px) rotate(3deg); }
}

/* Removed Features and CTA sections for single screen */

/* Footer removed - no longer needed */

/* Legal Pages Styles - Single Screen */
.legal-page {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: var(--spacing-md) 0;
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    padding: var(--spacing-xl);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-purple) transparent;
    margin-top: var(--spacing-xl);
}

.legal-content::-webkit-scrollbar {
    width: 6px;
}

.legal-content::-webkit-scrollbar-track {
    background: transparent;
}

.legal-content::-webkit-scrollbar-thumb {
    background: var(--accent-purple);
    border-radius: 3px;
}

.legal-content::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}

.legal-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.03em;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-meta {
    color: var(--text-tertiary);
    font-size: var(--font-size-xs);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--border-color);
}

.legal-content h2 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 800;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    background: var(--gradient-cool);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-content h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    font-weight: 700;
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.legal-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.legal-content ul,
.legal-content ol {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    padding-left: var(--spacing-md);
    line-height: 1.7;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.legal-content li {
    margin-bottom: var(--spacing-xs);
}

.legal-content strong {
    color: var(--text-primary);
    font-weight: 700;
}

.legal-content a {
    color: var(--accent-purple);
    text-decoration: none;
    transition: all var(--transition-base);
    border-bottom: 1px solid transparent;
}

.legal-content a:hover {
    color: var(--accent-cyan);
    border-bottom-color: var(--accent-cyan);
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

@keyframes floatPhone {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-creative {
        padding: var(--spacing-lg) 0 var(--spacing-sm);
        align-items: flex-start;
    }
    
    .container-creative {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        text-align: center;
        max-height: calc(100vh - 60px);
        align-items: flex-start;
        padding-top: var(--spacing-xl);
    }
    
    .hero-right {
        order: -1;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .phone-container {
        max-width: 280px;
        height: clamp(350px, 40vh, 500px);
        max-height: 500px;
    }
    
    .floating-icon {
        display: none;
    }
    
    .download-buttons-creative {
        max-width: 100%;
        width: 100%;
    }
    
    .hero-left {
        align-items: center;
        text-align: center;
        gap: var(--spacing-sm);
    }
    
    .hero-subtitle-creative {
        max-width: 100%;
    }
    
    .nav-links {
        gap: var(--spacing-md);
        font-size: var(--font-size-sm);
    }
    
    .navbar-integrated {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .badge {
        font-size: var(--font-size-xs);
        padding: 4px var(--spacing-sm);
    }
    
    .download-btn-creative {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .btn-icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .btn-icon-wrapper svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 640px) {
    .hero-creative {
        padding: var(--spacing-md) 0 var(--spacing-xs);
    }
    
    .container-creative {
        gap: var(--spacing-sm);
        padding: 0 var(--spacing-sm);
        max-height: calc(100vh - 50px);
        padding-top: var(--spacing-lg);
    }
    
    .hero-left {
        gap: var(--spacing-xs);
    }
    
    .title-line-1,
    .title-line-3 {
        font-size: clamp(1.75rem, 10vw, 2.5rem);
    }
    
    .title-line-2 {
        font-size: clamp(2rem, 12vw, 3rem);
    }
    
    .hero-subtitle-creative {
        font-size: clamp(0.75rem, 3vw, 1rem);
        margin-bottom: var(--spacing-xs);
    }
    
    .download-btn-creative {
        padding: var(--spacing-sm) var(--spacing-md);
        gap: var(--spacing-sm);
    }
    
    .btn-icon-wrapper {
        width: 36px;
        height: 36px;
    }
    
    .btn-icon-wrapper svg {
        width: 18px;
        height: 18px;
    }
    
    .btn-label {
        font-size: 10px;
    }
    
    .btn-platform {
        font-size: var(--font-size-sm);
    }
    
    .phone-container {
        max-width: 200px;
        height: clamp(300px, 35vh, 400px);
        max-height: 400px;
    }
    
    .phone-mockup-creative {
        border-radius: 35px;
        padding: 12px;
    }
    
    .phone-screen-creative {
        border-radius: 28px;
    }
    
    .phone-notch {
        width: 100px;
        height: 25px;
        top: 12px;
    }
    
    .nav-links {
        gap: var(--spacing-xs);
        font-size: var(--font-size-xs);
    }
    
    .logo {
        font-size: var(--font-size-base);
    }
    
    .logo-icon {
        font-size: var(--font-size-lg);
    }
    
    .legal-content {
        padding: var(--spacing-md);
        max-height: calc(100vh - 80px);
        margin-top: var(--spacing-md);
    }
    
    .navbar-integrated {
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .orb-1, .orb-2, .orb-3 {
        display: none;
    }
    
    .badge {
        font-size: 10px;
        padding: 3px var(--spacing-xs);
    }
}

@media (max-width: 480px) {
    .container-creative {
        padding: 0 var(--spacing-xs);
    }
    
    .phone-container {
        max-width: 180px;
        height: clamp(280px, 30vh, 360px);
    }
    
    .title-line-1,
    .title-line-3 {
        font-size: 1.5rem;
    }
    
    .title-line-2 {
        font-size: 1.75rem;
    }
    
    .download-buttons-creative {
        gap: var(--spacing-xs);
    }
}
