:root {
    /* Dark Mode (Default) */
    --background-primary: #0a0a0f;
    --background-secondary: #12121a;
    --background-tertiary: #1a1a24;
    --background-grouped: #12121a;
    --accent-color: #0A84FF;
    --success-color: #32D74B;
    --warning-color: #FF9F0A;
    --destructive-color: #FF453A;
    --text-color: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.7);
    --border-color: rgba(255, 255, 255, 0.08);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);

    /* Mode Colors */
    --mode-similar-start: #FF9500;
    --mode-similar-end: #FF6B00;
    --mode-videos-start: #FF3B30;
    --mode-videos-end: #FF2D55;
    --mode-screenshots-start: #5856D6;
    --mode-screenshots-end: #007AFF;
    --mode-whatsapp-start: #34C759;
    --mode-whatsapp-end: #30D158;

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

@media (prefers-color-scheme: light) {
    :root {
        /* Light Mode */
        --background-primary: #FFFFFF;
        --background-secondary: #F2F2F7;
        --background-tertiary: #E5E5EA;
        --background-grouped: #F2F2F7;
        --accent-color: #007AFF;
        --success-color: #34C759;
        --warning-color: #FF9500;
        --destructive-color: #FF3B30;
        --text-color: #000000;
        --text-muted: rgba(0, 0, 0, 0.6);
        --border-color: rgba(0, 0, 0, 0.1);
        --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
        --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
        --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);

        /* Glass Effect Light */
        --glass-bg: rgba(255, 255, 255, 0.7);
        --glass-border: rgba(0, 0, 0, 0.1);
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

@media (max-width: 1400px) {
    .container {
        padding: 0 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* Header styles */
.header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(10, 10, 15, 0.85);
    z-index: -1;
}

@supports (backdrop-filter: blur(20px)) {
    .header::before {
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        background-color: rgba(10, 10, 15, 0.7);
    }
}

@media (prefers-color-scheme: light) {
    .header::before {
        background-color: rgba(255, 255, 255, 0.85);
    }

    @supports (backdrop-filter: blur(20px)) {
        .header::before {
            background-color: rgba(255, 255, 255, 0.7);
        }
    }
}

.header .container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0;
    position: relative;
}

.logo-img {
    height: 32px;
    width: auto;
    margin-right: -4px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
    transform: translateY(-1px);
}

.logo-img.light-mode {
    display: none;
}

.logo-img.dark-mode {
    display: block;
}

.logo-img {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

@media (prefers-color-scheme: light) {
    .logo-img.light-mode {
        display: block;
    }

    .logo-img.dark-mode {
        display: none;
    }

    .logo-img {
        filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
    }
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

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

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

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

/* Language visibility */
.lang-es {
    display: block;
}

.lang-en {
    display: none;
}

html[lang="en"] .lang-es {
    display: none;
}

html[lang="en"] .lang-en {
    display: block;
}

/* Hero section styles */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--background-primary);
    overflow: hidden;
    padding: 6rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(255, 149, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(255, 59, 48, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 70% 80%, rgba(88, 86, 214, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 10% 90%, rgba(52, 199, 89, 0.08) 0%, transparent 50%);
    z-index: 0;
}

@media (prefers-color-scheme: light) {
    .hero::before {
        background:
            radial-gradient(ellipse 80% 50% at 20% 40%, rgba(255, 149, 0, 0.08) 0%, transparent 50%),
            radial-gradient(ellipse 60% 40% at 80% 20%, rgba(255, 59, 48, 0.06) 0%, transparent 50%),
            radial-gradient(ellipse 50% 50% at 70% 80%, rgba(88, 86, 214, 0.05) 0%, transparent 50%),
            radial-gradient(ellipse 40% 30% at 10% 90%, rgba(52, 199, 89, 0.04) 0%, transparent 50%);
    }
}

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

.hero-text {
    position: relative;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: var(--text-color);
    position: relative;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 500px;
}

.hero-cta {
    margin-top: 3rem;
}

.app-store-button {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-top: 1rem;
}

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

.app-store-badge {
    height: 54px;
    width: auto;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-preview {
    position: relative;
    max-width: 100%;
    height: auto;
    border-radius: 40px;
    box-shadow: var(--shadow-lg);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
    will-change: transform;
    backface-visibility: hidden;
}

.app-preview:hover {
    transform: rotate(0deg);
}

.app-preview {
    display: block;
}

.app-preview.light-mode {
    display: none;
}

.app-preview.dark-mode {
    display: block;
}

@media (prefers-color-scheme: light) {
    .app-preview.light-mode {
        display: block;
    }

    .app-preview.dark-mode {
        display: none;
    }
}

/* Section headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: var(--text-color);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-muted);
}

/* ============================================
   CLEANING MODES SECTION - NEW
   ============================================ */
.cleaning-modes {
    padding: 6rem 0 8rem;
    background-color: var(--background-secondary);
    position: relative;
}

.cleaning-modes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 60% 40% at 30% 20%, rgba(255, 149, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 80% 70%, rgba(52, 199, 89, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.mode-card {
    position: relative;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.mode-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.mode-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 24px 24px 0 0;
}

.mode-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-lg);
}

.mode-card.mode-similar::before {
    background: linear-gradient(90deg, var(--mode-similar-start), var(--mode-similar-end));
}

.mode-card.mode-videos::before {
    background: linear-gradient(90deg, var(--mode-videos-start), var(--mode-videos-end));
}

.mode-card.mode-screenshots::before {
    background: linear-gradient(90deg, var(--mode-screenshots-start), var(--mode-screenshots-end));
}

.mode-card.mode-whatsapp::before {
    background: linear-gradient(90deg, var(--mode-whatsapp-start), var(--mode-whatsapp-end));
}

.mode-card:hover.mode-similar {
    box-shadow: 0 20px 40px rgba(255, 149, 0, 0.15);
}

.mode-card:hover.mode-videos {
    box-shadow: 0 20px 40px rgba(255, 59, 48, 0.15);
}

.mode-card:hover.mode-screenshots {
    box-shadow: 0 20px 40px rgba(88, 86, 214, 0.15);
}

.mode-card:hover.mode-whatsapp {
    box-shadow: 0 20px 40px rgba(52, 199, 89, 0.15);
}

.mode-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.mode-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-tertiary);
    border-radius: 16px;
    font-size: 1.75rem;
}

.mode-similar .mode-icon { background: linear-gradient(135deg, rgba(255, 149, 0, 0.2), rgba(255, 107, 0, 0.1)); }
.mode-videos .mode-icon { background: linear-gradient(135deg, rgba(255, 59, 48, 0.2), rgba(255, 45, 85, 0.1)); }
.mode-screenshots .mode-icon { background: linear-gradient(135deg, rgba(88, 86, 214, 0.2), rgba(0, 122, 255, 0.1)); }
.mode-whatsapp .mode-icon { background: linear-gradient(135deg, rgba(52, 199, 89, 0.2), rgba(48, 209, 88, 0.1)); }

.mode-title-group {
    flex: 1;
}

.mode-title-group h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.mode-stats {
    font-size: 0.9rem;
    font-weight: 600;
}

.mode-similar .mode-stats { color: var(--mode-similar-start); }
.mode-videos .mode-stats { color: var(--mode-videos-start); }
.mode-screenshots .mode-stats { color: var(--mode-screenshots-start); }
.mode-whatsapp .mode-stats { color: var(--mode-whatsapp-start); }

.mode-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.mode-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.mode-features li {
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
    background: var(--background-tertiary);
    border-radius: 100px;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

/* Mode card animation delays */
.mode-card:nth-child(1) { transition-delay: 0s; }
.mode-card:nth-child(2) { transition-delay: 0.1s; }
.mode-card:nth-child(3) { transition-delay: 0.2s; }
.mode-card:nth-child(4) { transition-delay: 0.3s; }

/* Cleaning modes responsive */
@media (max-width: 1024px) {
    .modes-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .cleaning-modes {
        padding: 4rem 0 5rem;
    }

    .mode-card {
        padding: 1.5rem;
    }

    .mode-header {
        flex-direction: column;
        gap: 1rem;
    }

    .mode-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    .mode-title-group h3 {
        font-size: 1.25rem;
    }
}

/* ============================================
   CTA SECTION - NEW
   ============================================ */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--background-tertiary) 0%, var(--background-secondary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background:
        radial-gradient(ellipse 30% 40% at 50% 50%, rgba(0, 122, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

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

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

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

/* ============================================
   VIDEO SPOTLIGHT SECTION
   ============================================ */
.video-spotlight {
    padding: 8rem 0;
    background-color: var(--background-secondary);
    position: relative;
    overflow: hidden;
}

.video-spotlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(255, 59, 48, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 40% 60% at 10% 30%, rgba(255, 45, 85, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.video-spotlight-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.video-spotlight-text {
    max-width: 520px;
}

/* Badge con icono */
.spotlight-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.spotlight-icon-large {
    font-size: 2.5rem;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.2), rgba(255, 45, 85, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(255, 59, 48, 0.3);
}

.spotlight-badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.spotlight-tag {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--mode-videos-start);
    text-transform: uppercase;
}

.spotlight-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Título con gradiente */
.video-spotlight-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.text-gradient {
    background: linear-gradient(135deg, var(--mode-videos-start), var(--mode-videos-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-spotlight-text > p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* Stats row */
/* Video Features Strip */
.video-features-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.feature-chip:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.feature-chip .chip-icon {
    font-size: 1rem;
}

.feature-chip.accent {
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.15), rgba(255, 45, 85, 0.1));
    border-color: rgba(255, 59, 48, 0.3);
    color: var(--text-color);
}

.feature-chip.accent:hover {
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.25), rgba(255, 45, 85, 0.15));
    border-color: rgba(255, 59, 48, 0.5);
}

/* Compression Card - Premium Design */
.compression-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg,
        rgba(255, 59, 48, 0.06) 0%,
        rgba(255, 45, 85, 0.03) 50%,
        rgba(18, 18, 26, 0.8) 100%
    );
    border: 1px solid rgba(255, 59, 48, 0.15);
    border-radius: 20px;
    overflow: hidden;
}

.compression-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--mode-videos-start), var(--mode-videos-end), transparent);
}

.compression-card-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 59, 48, 0.15) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(40px);
}

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

.compression-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.compression-new {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    background: linear-gradient(135deg, var(--mode-videos-start), var(--mode-videos-end));
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: white;
    text-transform: uppercase;
}

.compression-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.compression-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.compression-content p strong {
    color: var(--mode-videos-start);
    font-weight: 700;
}

/* Size Comparison Visual */
.compression-visual {
    position: relative;
    z-index: 1;
}

.size-comparison {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 120px;
}

.size-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.size-bar.original {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
}

.size-bar.compressed {
    width: 50%;
    background: linear-gradient(90deg, var(--mode-videos-start), var(--mode-videos-end));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 59, 48, 0.3);
}

.compression-card:hover .size-bar.compressed {
    box-shadow: 0 4px 20px rgba(255, 59, 48, 0.5);
}

/* Phone frame con glow */
.video-spotlight-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-notch {
    display: none;
}

.video-ui-preview {
    max-width: 280px;
    height: auto;
    border-radius: 40px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 25px 60px rgba(255, 59, 48, 0.25),
        0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone-frame:hover .video-ui-preview {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.15),
        0 35px 80px rgba(255, 59, 48, 0.3),
        0 15px 40px rgba(0, 0, 0, 0.5);
}

.phone-glow {
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(255, 59, 48, 0.4) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: -1;
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

.phone-frame:hover .phone-glow {
    opacity: 1;
}

/* Video spotlight responsive */
@media (max-width: 1024px) {
    .video-spotlight-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .video-spotlight-text {
        max-width: 100%;
        order: 1;
    }

    .spotlight-badge {
        justify-content: center;
    }

    .video-spotlight-image {
        order: 2;
    }

    .video-features-strip {
        justify-content: center;
    }

    .compression-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .compression-header {
        justify-content: center;
    }

    .size-comparison {
        margin: 0 auto;
        max-width: 180px;
    }
}

@media (max-width: 768px) {
    .video-spotlight {
        padding: 5rem 0;
    }

    .video-spotlight-text h2 {
        font-size: 1.9rem;
    }

    .video-spotlight-text > p {
        font-size: 1rem;
    }

    .video-ui-preview {
        max-width: 240px;
        border-radius: 32px;
    }

    .spotlight-icon-large {
        width: 52px;
        height: 52px;
        font-size: 2rem;
    }

    .feature-chip {
        padding: 0.5rem 0.85rem;
        font-size: 0.8rem;
    }

    .compression-card {
        padding: 1.25rem 1.5rem;
    }

    .compression-header h4 {
        font-size: 1rem;
    }

    .compression-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .video-features-strip {
        gap: 0.5rem;
    }

    .feature-chip {
        padding: 0.45rem 0.75rem;
        font-size: 0.75rem;
    }

    .compression-card {
        padding: 1rem 1.25rem;
        margin-top: 1.5rem;
    }

    .size-comparison {
        max-width: 140px;
    }

    .size-bar {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
    }
}

/* Hero stat badge */
.hero-stat {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.hero-stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--mode-similar-start), var(--mode-videos-start));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Features section styles */
.features {
    padding: 8rem 0;
    background-color: var(--background-primary);
    position: relative;
}

.features .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 2rem 0;
}

.features .feature-card {
    position: relative;
    padding: 2rem;
    background: var(--background-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.3s ease;
}

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

.features .feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-secondary);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.features .feature-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.features .feature-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid var(--accent-color);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.features .feature-card:hover .feature-icon::after {
    opacity: 1;
}

.features .feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.features .feature-card p {
    color: var(--text-color);
    opacity: 0.8;
}

/* Language switcher styles */
.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.lang-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.lang-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 122, 255, 0.2);
}

.lang-btn:hover::before {
    left: 100%;
}

.lang-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: scale(1.05);
}

.lang-btn:active {
    transform: scale(0.98);
}

/* How it works section styles */
.how-it-works {
    padding: 8rem 0;
    background-color: var(--background-secondary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem 0;
    position: relative;
}

.steps-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.step-card {
    position: relative;
    padding: 2rem;
    background: transparent;
    border: none;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.step-card:hover::before {
    border-color: var(--accent-color);
    transform: translateY(-10px);
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.step-card p {
    color: var(--text-color);
    opacity: 0.8;
}

/* Download section styles */
.download {
    padding: 8rem 0;
    background-color: var(--background-primary);
    text-align: center;
    position: relative;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(var(--accent-color), 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(var(--warning-color), 0.1) 0%, transparent 50%);
    z-index: 0;
}

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

/* Footer styles */
.footer {
    background-color: var(--background-primary);
    padding: 6rem 0 2rem;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    margin-top: 1rem;
    color: var(--text-color);
    opacity: 0.8;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    color: var(--text-color);
    position: relative;
}

.footer-logo .logo-img {
    height: 24px;
    width: auto;
    margin-right: -3px;
    transform: translateY(-1px);
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
    opacity: 1;
    transform: translateY(-2px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .features .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

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

    .steps-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 0 2rem;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .hero-text {
        max-width: 100%;
        order: 1;
    }

    .hero-image {
        order: 2;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero h1::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-description {
        font-size: 1rem;
        margin: 0 auto 1.5rem;
        max-width: 350px;
    }

    .hero-features {
        gap: 1rem;
    }

    .hero-feature {
        font-size: 0.95rem;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .features .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .steps-grid,
    .steps-grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }

    /* Better mobile spacing */
    .features,
    .how-it-works,
    .unique-approach,
    .download,
    .about {
        padding: 4rem 0;
    }

    .speed-section {
        padding: 4rem 0;
    }

    /* Mobile-specific feature cards */
    .feature-card,
    .step-card,
    .approach-feature {
        padding: 1.5rem;
    }

    .feature-card h3,
    .step-card h3,
    .approach-feature h3 {
        font-size: 1.2rem;
    }

    .feature-card p,
    .step-card p,
    .approach-feature p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0 1.5rem;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.1;
    }

    .hero-description {
        font-size: 0.95rem;
        margin: 0 auto 1rem;
        max-width: 300px;
    }

    .hero-feature {
        font-size: 0.9rem;
        gap: 0.6rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .features,
    .how-it-works,
    .unique-approach,
    .download,
    .about,
    .speed-section {
        padding: 3rem 0;
    }

    .feature-card,
    .step-card,
    .approach-feature {
        padding: 1.2rem;
    }

    .app-store-badge {
        height: 36px;
    }

    .stat-title {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

/* Improved touch targets for mobile */
@media (hover: none) {
    .feature-card:hover,
    .step-card:hover,
    .approach-feature:hover {
        transform: none;
    }

    .app-store-button:hover {
        transform: none;
        filter: none;
    }

    .lang-btn:hover {
        transform: none;
        box-shadow: none;
    }
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px var(--accent-color);
    }
    50% {
        box-shadow: 0 0 20px var(--accent-color), 0 0 30px var(--accent-color);
    }
    100% {
        box-shadow: 0 0 5px var(--accent-color);
    }
}

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

/* Enhanced animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply animations to elements */
.hero-text h1 {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-description {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-features {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-cta {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-image {
    animation: slideInRight 0.8s ease-out 0.4s both;
}

.feature-card,
.step-card,
.approach-feature {
    animation: scaleIn 0.6s ease-out forwards;
}

.speed-stat {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Interactive animations */
.app-store-button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, filter;
    backface-visibility: hidden;
}

.app-store-button:hover {
    transform: translateY(-2px) scale(1.05);
    filter: brightness(1.1);
}

.app-store-button:active {
    transform: translateY(0) scale(1.02);
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.logo-img {
    will-change: transform;
    backface-visibility: hidden;
}

.logo:hover .logo-img {
    animation: rotate 0.5s ease-in-out;
}

.check-icon {
    animation: pulse 2s infinite;
    will-change: transform;
}

/* Staggered animations for feature cards */
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

/* Staggered animations for step cards */
.step-card:nth-child(1) { animation-delay: 0.2s; }
.step-card:nth-child(2) { animation-delay: 0.4s; }
.step-card:nth-child(3) { animation-delay: 0.6s; }
.step-card:nth-child(4) { animation-delay: 0.8s; }

/* Speed stats staggered animation */
.speed-stat:nth-child(1) { animation-delay: 0.1s; }
.speed-stat:nth-child(2) { animation-delay: 0.3s; }
.speed-stat:nth-child(3) { animation-delay: 0.5s; }

main {
    padding-top: 70px; /* Height of the header */
}

.privacy-policy {
    padding: 4rem 0;
    min-height: calc(100vh - 70px); /* Subtract header height */
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--background-secondary);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.policy-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

.policy-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.9;
}

.policy-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    opacity: 0.9;
}

.policy-content a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.terms-of-use {
    padding: 4rem 0;
    min-height: calc(100vh - 70px); /* Subtract header height */
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--background-secondary);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.terms-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.terms-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

.terms-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.9;
}

.terms-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.terms-content li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    opacity: 0.9;
}

.terms-content a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.support {
    padding: 4rem 0;
    min-height: calc(100vh - 70px); /* Subtract header height */
}

.support-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--background-secondary);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.support-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.support-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

.support-content h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--text-color);
}

.support-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.9;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--background-primary);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.support-content a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.support-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Hero tag styles */
.hero-tag {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

/* Hero content styles */
.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 500px;
}

.hero h1 .highlight-alt {
    position: relative;
    color: inherit;
}

.hero h1 .highlight-alt::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007AFF 0%, #5856D6 100%);
    border-radius: 2px;
}

/* Hero features */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
}

.check-icon {
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Unique approach section */
.unique-approach {
    padding: 8rem 0;
    background-color: var(--background-secondary);
}

.unique-approach-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

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

.approach-feature {
    padding: 1.5rem;
    background-color: var(--background-primary);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.approach-feature h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

.approach-feature p {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.8;
}

.approach-image {
    position: relative;
    width: 60%;
    margin: 0 auto;
}

.approach-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.approach-img.light-mode {
    display: block;
}

.approach-img.dark-mode {
    display: none;
}

@media (prefers-color-scheme: dark) {
    .approach-img.light-mode {
        display: none;
    }
    
    .approach-img.dark-mode {
        display: block;
    }
}

/* Speed section */
.speed-section {
    padding: 8rem 0;
    background-color: #000000;
    color: white;
}

.speed-section .section-header h2,
.speed-section .section-header p {
    color: white;
}

.speed-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.speed-info-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 2rem;
}

.speed-stat {
    padding: 2rem;
    background-color: #1a1a1a;
    border-radius: 16px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.speed-stat:hover {
    transform: translateY(-5px);
    background-color: #222222;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
}

/* SVG styles */
.stat-icon svg {
    width: 48px;
    height: 48px;
}

.stat-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0.5rem 0;
    color: #2e89ff;
    display: block;
    width: 100%;
    text-align: center;
}

.stat-label {
    font-size: 1.1rem;
    color: #e0e0e0;
    opacity: 0.9;
    line-height: 1.5;
    margin-top: 0.5rem;
}

/* Asegurarse de que las reglas de idioma se apliquen a la sección de velocidad */
.speed-section .lang-es, 
.speed-section .lang-en {
    display: block;
}

html[lang="en"] .speed-section .lang-es {
    display: none;
}

html[lang="en"] .speed-section .lang-en {
    display: block;
}

html[lang="es"] .speed-section .lang-es {
    display: block;
}

html[lang="es"] .speed-section .lang-en {
    display: none;
}

/* Media mention section */
.media-mention {
    padding: 6rem 0;
    background-color: var(--background-secondary);
}

.media-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.media-logo {
    max-width: 180px;
}

.media-logo-img {
    width: 100%;
    height: auto;
}

.media-quote {
    max-width: 800px;
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-color);
    position: relative;
    padding: 0 2rem;
}

.media-quote::before,
.media-quote::after {
    content: '"';
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.2;
    position: absolute;
}

.media-quote::before {
    top: -1.5rem;
    left: 0;
}

.media-quote::after {
    bottom: -2.5rem;
    right: 0;
}

.media-quote cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    font-size: 1rem;
    color: var(--accent-color);
}

/* About section */
.about {
    padding: 8rem 0;
    background-color: var(--background-primary);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.social-links {
    margin-top: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background-color: var(--background-secondary);
    border-radius: 100px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.social-icon {
    font-size: 1.2rem;
}

.social-handle {
    font-size: 1rem;
}

/* What's new section */
.whats-new {
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: var(--background-secondary);
    border-radius: 12px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.whats-new h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.whats-new-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.whats-new-list li {
    position: relative;
    padding-left: 2rem;
    line-height: 1.5;
}

.whats-new-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Responsive styles for new sections */
@media (max-width: 1024px) {
    .unique-approach-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .approach-features {
        grid-template-columns: 1fr 1fr;
        margin-bottom: 2rem;
    }
    
    .speed-info-full {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-tag {
        font-size: 0.7rem;
    }
    
    .approach-features {
        grid-template-columns: 1fr;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .speed-info-full {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .speed-stat {
        padding: 1.5rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
        width: 60px;
        height: 60px;
    }
    
    .stat-title {
        font-size: 1.8rem;
    }
    
    .whats-new {
        padding: 1.5rem;
    }
}
