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

:root {
    --bg-primary: #0a0a0b;
    --bg-secondary: #111113;
    --bg-tertiary: #1a1a1d;
    --bg-card: rgba(255, 255, 255, 0.02);
    --bg-card-hover: rgba(255, 255, 255, 0.04);
    
    --text-primary: #ffffff;
    --text-secondary: #a8a8b3;
    --text-tertiary: #6e6e7a;
    
    --accent-primary: #0763BF;
    --accent-secondary: #54FFF1;
    --accent-gradient: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
    --accent-gradient-reverse: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    --accent-glow: 0 0 30px rgba(84, 255, 241, 0.3);
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.12);
    --border-gradient: linear-gradient(90deg, transparent, var(--accent-secondary), transparent);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px rgba(84, 255, 241, 0.2);
    
    --transition-fast: 200ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all var(--transition-normal);
}

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

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

.nav-logo {
    width: 32px;
    height: 32px;
    transition: transform var(--transition-fast);
}

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

.nav-title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width var(--transition-normal);
}

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

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

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

.gradient-orb-1 {
    background: radial-gradient(circle, var(--accent-secondary) 0%, transparent 70%);
    top: -300px;
    left: -300px;
}

.gradient-orb-2 {
    background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
    bottom: -300px;
    right: -300px;
    animation-delay: -10s;
}

/* ASCII Background System */
.ascii-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    font-family: monospace;
    font-size: 14px;
    line-height: 1.2;
    color: rgba(84, 255, 241, 0.03);
    white-space: pre;
}

.ascii-particles {
    position: absolute;
    animation: asciiFloat 30s linear infinite;
}

@keyframes asciiFloat {
    from { transform: translateY(100vh) translateX(-50px); }
    to { transform: translateY(-100vh) translateX(50px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-30px) translateX(10px); }
    50% { transform: translateY(10px) translateX(-20px); }
    75% { transform: translateY(-20px) translateX(15px); }
}

.hero-content {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.hero-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orbit-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: 120px;
    height: 116px;
    opacity: 0.95;
    transition: all var(--transition-slow);
    filter: drop-shadow(0 8px 32px rgba(84, 255, 241, 0.4)) drop-shadow(0 4px 16px rgba(7, 99, 191, 0.2));
    animation: iconPulse 4s ease-in-out infinite;
}

.hero-logo:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 12px 48px rgba(84, 255, 241, 0.7)) drop-shadow(0 8px 24px rgba(7, 99, 191, 0.4));
    animation-play-state: paused;
}

@keyframes iconPulse {
    0%, 100% { 
        opacity: 0.95;
        filter: drop-shadow(0 8px 32px rgba(84, 255, 241, 0.4)) drop-shadow(0 4px 16px rgba(7, 99, 191, 0.2));
    }
    50% { 
        opacity: 1;
        filter: drop-shadow(0 10px 40px rgba(84, 255, 241, 0.6)) drop-shadow(0 6px 20px rgba(7, 99, 191, 0.3));
    }
}

.orbit-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-gradient);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(84, 255, 241, 0.8), 0 0 24px rgba(84, 255, 241, 0.4);
    animation: orbit 6s linear infinite;
    transform-origin: 80px 60px; /* Distance from center of the icon */
}

@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(80px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(80px) rotate(-360deg);
    }
}

.hero-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.hero-subtitle {
    display: block;
    font-size: clamp(36px, 5vw, 56px);
    color: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
}

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 24px auto 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all var(--transition-normal);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn i {
    font-size: 20px;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(84, 255, 241, 0.3);
    position: relative;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gradient-reverse);
    border-radius: 12px;
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--accent-glow);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-hover);
    transform: translateY(-1px);
}

/* Hero Image */
.hero-image {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
}

.app-screenshot {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: transform var(--transition-slow);
}

.app-screenshot:hover {
    transform: scale(1.02);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 300;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

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

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-secondary) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.feature-card:hover {
    background: rgba(84, 255, 241, 0.02);
    border-color: rgba(84, 255, 241, 0.1);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

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

.feature-card:hover::after {
    opacity: 0.05;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    box-shadow: var(--accent-glow);
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--accent-gradient);
    border-radius: 12px;
    opacity: 0.5;
    filter: blur(10px);
    z-index: -1;
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Editor Section */
.editor-section {
    padding: 80px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.editor-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.editor-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.editor-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.editor-feature i {
    font-size: 24px;
    color: var(--accent-primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.editor-feature h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.editor-feature p {
    color: var(--text-secondary);
    font-size: 15px;
}

.editor-preview {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.editor-screenshot {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: transform var(--transition-slow);
}

.editor-screenshot:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-glow);
}

/* Connection Canvas */
.connection-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Professional Section */
.professional {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.professional::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: radial-gradient(ellipse at bottom center, rgba(7, 99, 191, 0.3) 0%, rgba(7, 99, 191, 0.15) 30%, transparent 70%);
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.3; }
}

.pro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.pro-feature {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.pro-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-gradient);
    opacity: 0.5;
    transition: all var(--transition-normal);
}

.pro-feature:hover {
    background: rgba(84, 255, 241, 0.02);
    border-color: rgba(84, 255, 241, 0.1);
    transform: translateX(4px);
}

.pro-feature:hover::before {
    width: 4px;
    opacity: 1;
}

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

.pro-feature-header i {
    font-size: 20px;
    color: var(--accent-secondary);
}

.pro-feature h3 {
    font-size: 18px;
    font-weight: 600;
}

.pro-feature p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

/* Download Section */
.download {
    padding: 80px 0;
    background: var(--bg-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        rgba(84, 255, 241, 0.05) 60deg,
        transparent 120deg,
        rgba(7, 99, 191, 0.05) 180deg,
        transparent 240deg,
        rgba(84, 255, 241, 0.05) 300deg,
        transparent 360deg
    );
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

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

.download-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.download-requirements {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin: 40px 0;
}

.download-requirements p {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 15px;
}

.download-requirements i {
    font-size: 18px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-store-badge {
    height: 60px;
    width: auto;
    transition: transform var(--transition-fast);
}

.app-store-badge:hover {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.contact-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(84, 255, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(84, 255, 241, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.contact-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.contact-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-secondary);
    top: -200px;
    right: -200px;
    animation: floatContact 15s ease-in-out infinite;
}

.contact-orb-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-primary);
    bottom: -150px;
    left: -150px;
    animation: floatContact 20s ease-in-out infinite reverse;
}

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

.contact-content {
    position: relative;
    z-index: 1;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gradient);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    transition: all var(--transition-normal);
}

.form-control:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-secondary);
    box-shadow: 0 0 0 3px rgba(84, 255, 241, 0.1);
}

.form-control::placeholder {
    color: var(--text-tertiary);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

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

.btn-submit:active::after {
    width: 300px;
    height: 300px;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    width: 24px;
    height: 24px;
}

.footer-brand p {
    color: var(--text-tertiary);
    font-size: 14px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--text-primary);
}

.footer-link i {
    font-size: 20px;
}

/* Screenshot Carousel */
.screenshot-carousel {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.screenshot-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(84, 255, 241, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.carousel-track {
    display: flex;
    transition: transform var(--transition-slow);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform var(--transition-normal);
}

.carousel-slide:hover img {
    transform: scale(1.02);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
    transition: all var(--transition-normal);
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(10, 10, 11, 0.95);
    border-color: var(--accent-secondary);
    box-shadow: 0 0 20px rgba(84, 255, 241, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: -25px;
}

.carousel-btn-next {
    right: -25px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-tertiary);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
}

.carousel-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--accent-gradient);
    transition: all var(--transition-normal);
}

.carousel-indicator.active,
.carousel-indicator:hover {
    background: var(--accent-secondary);
    box-shadow: 0 0 15px rgba(84, 255, 241, 0.5);
}

.carousel-indicator.active::before,
.carousel-indicator:hover::before {
    width: 20px;
    height: 20px;
    opacity: 0.3;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-icon {
        margin-bottom: 24px;
    }
    
    .hero-logo {
        width: 80px;
        height: 78px;
    }
    
    .orbit-particle {
        width: 6px;
        height: 6px;
        transform-origin: 55px 40px; /* Adjusted for smaller icon */
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .editor-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .editor-info {
        order: 2;
    }
    
    .editor-preview {
        order: 1;
    }
    
    .features-grid,
    .pro-features {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .contact-orb-1 {
        width: 200px;
        height: 200px;
        top: -100px;
        right: -100px;
    }
    
    .contact-orb-2 {
        width: 150px;
        height: 150px;
        bottom: -75px;
        left: -75px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .carousel-btn-prev {
        left: -15px;
    }
    
    .carousel-btn-next {
        right: -15px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-indicators {
        gap: 8px;
        margin-top: 24px;
    }
    
    .carousel-indicator {
        width: 10px;
        height: 10px;
    }
}

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

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

/* Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.1);
}