/* ========================================
   InfinitySoftware - White Blue Milky Theme
   ======================================== */

:root {
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f1f5f9;
    --bg-card: rgba(255, 255, 255, 0.95);
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --accent-purple: #6366f1;
    --accent-cyan: #0ea5e9;
    --accent-pink: #ec4899;
    --accent-green: #10b981;
    --accent-blue: #3b82f6;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #0ea5e9 50%, #06b6d4 100%);
    --gradient-soft: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 50%, #cffafe 100%);
    --gradient-glow: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(14, 165, 233, 0.2));
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.15);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-soft: 0 2px 10px rgba(0, 0, 0, 0.05);
    --border-subtle: rgba(0, 0, 0, 0.08);
    --border-light: rgba(99, 102, 241, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Orbitron', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Reduce Section Spacing */
section {
    padding: 50px 0;
}

.hero {
    padding: 80px 0 !important;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: #c7d2fe;
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: #bae6fd;
    bottom: -150px;
    left: -150px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: #a5f3fc;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(50px, -30px) scale(1.1);
    }

    50% {
        transform: translate(-30px, 50px) scale(0.95);
    }

    75% {
        transform: translate(-50px, -20px) scale(1.05);
    }
}

/* Platform Bar */
.platform-bar {
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.08), rgba(14, 165, 233, 0.08));
    border-bottom: 1px solid var(--border-subtle);
    padding: 10px 0;
    position: relative;
    z-index: 100;
}

.platform-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.platforms {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.platform-label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.platform-item {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.platform-item.warning {
    color: #d97706;
}

.platform-item small {
    opacity: 0.7;
    font-size: 0.75rem;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--text-primary);
    background: rgba(99, 102, 241, 0.1);
}

.lang-divider {
    color: var(--text-muted);
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 15px 0;
    box-shadow: var(--shadow-soft);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 10px 25px;
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-medium);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-card);
}

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.mobile-menu a:hover {
    background: rgba(99, 102, 241, 0.1);
}

.mobile-menu.active {
    display: flex;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-medium);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent-purple);
}

.btn-glow {
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    }

    50% {
        box-shadow: 0 6px 25px rgba(99, 102, 241, 0.4), 0 0 40px rgba(14, 165, 233, 0.2);
    }
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 120px;
    position: relative;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(14, 165, 233, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-soft);
}

.hero-feature:hover {
    background: var(--bg-tertiary);
    transform: translateX(5px);
    border-color: var(--accent-purple);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

/* Reel Showcase */
.reel-showcase {
    display: flex;
    align-items: center;
    gap: 25px;
    background: white;
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-subtle);
}

.reel-showcase-image {
    flex-shrink: 0;
}

.showcase-phone {
    width: 180px;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.reel-showcase-features {
    flex: 1;
}

.showcase-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.showcase-tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    padding: 10px 12px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(14, 165, 233, 0.05));
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent-purple);
    line-height: 1.5;
}

.showcase-tagline strong {
    color: var(--accent-purple);
}

.showcase-highlight {
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.showcase-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
}

.showcase-feature:last-child {
    border-bottom: none;
}

.showcase-feature.highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    padding: 10px 12px;
    border-radius: var(--radius-md);
    margin-top: 8px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.showcase-feature.highlight span {
    color: var(--text-primary);
}

.feature-check {
    color: #10b981;
    font-weight: 700;
    font-size: 1rem;
}

.video-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.video-placeholder {
    position: relative;
    background: var(--bg-tertiary);
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* PC App UI Showcase */
.app-ui-showcase {
    margin-top: 40px;
    text-align: center;
}

.app-ui-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(14, 165, 233, 0.15));
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-purple);
    margin-bottom: 20px;
}

.app-ui-screenshot {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-subtle);
    transition: var(--transition-medium);
}

.app-ui-screenshot:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.video-overlay {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: var(--transition-medium);
    margin-bottom: 15px;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.video-overlay p {
    color: var(--text-secondary);
}

.video-mockup {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.mockup-screen {
    width: 100%;
    max-width: 400px;
    background: #1e293b;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-card);
}

.mockup-header {
    display: flex;
    gap: 8px;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.4);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f57;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #28c840;
}

.mockup-content {
    padding: 20px;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-fill {
    height: 100%;
    width: 65%;
    background: var(--gradient-primary);
    border-radius: 10px;
    animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
    0% {
        width: 30%;
    }

    50% {
        width: 80%;
    }

    100% {
        width: 30%;
    }
}

.file-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
}

.file-item.processing {
    background: rgba(139, 92, 246, 0.2);
    animation: processing 1.5s ease-in-out infinite;
}

@keyframes processing {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(14, 165, 233, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: var(--accent-purple);
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Extreme Section */
.extreme-section {
    padding: 100px 0;
    position: relative;
}

.extreme-badge {
    text-align: center;
    margin-bottom: 40px;
}

.extreme-badge span {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b00, #ff0080);
    padding: 12px 30px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    animation: extreme-glow 2s ease-in-out infinite;
}

@keyframes extreme-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 0, 128, 0.7), 0 0 60px rgba(255, 107, 0, 0.5);
    }
}

.extreme-card {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    padding: 50px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
    border: 1px solid rgba(255, 107, 0, 0.2);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.extreme-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.extreme-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.extreme-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.extreme-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.extreme-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
}

.extreme-feature span:first-child {
    color: var(--accent-green);
    font-size: 1.2rem;
}

.extreme-quote {
    background: rgba(255, 107, 0, 0.1);
    border-left: 4px solid #ff6b00;
    padding: 20px 25px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--text-secondary);
}

.extreme-visual {
    display: flex;
    justify-content: center;
}

.reel-stack {
    position: relative;
    width: 200px;
    height: 300px;
}

.reel {
    position: absolute;
    width: 120px;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.reel-1 {
    top: 0;
    left: 0;
    transform: rotate(-10deg);
    z-index: 1;
}

.reel-2 {
    top: 20px;
    left: 30px;
    transform: rotate(0deg);
    z-index: 2;
}

.reel-3 {
    top: 40px;
    left: 60px;
    transform: rotate(10deg);
    z-index: 3;
}

.reel-counter {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-display);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 35px;
    border: 1px solid var(--border-subtle);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-purple);
    box-shadow: var(--shadow-glow);
}

.feature-card.featured {
    border-color: var(--accent-purple);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(14, 165, 233, 0.05));
}

.feature-icon-wrap {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(14, 165, 233, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-list li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding-left: 20px;
    position: relative;
}

.feature-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
}

.niche-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.niche-tag {
    background: var(--bg-tertiary);
    padding: 6px 14px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    border: 1px solid var(--border-subtle);
}

.niche-tag:hover {
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-purple);
    border-color: var(--accent-purple);
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
}

.pricing-region {
    margin-bottom: 60px;
}

.region-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--border-subtle);
    text-align: center;
    position: relative;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-soft);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
}

.pricing-card.featured {
    border-color: var(--accent-purple);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(14, 165, 233, 0.03));
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 6px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 25px;
}

.pricing-header span:first-child {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.pricing-header h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.pricing-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-body {
    margin-bottom: 25px;
}

.price-old {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.price-new {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.price-new .currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.price-new .amount {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-new .period {
    color: var(--text-secondary);
    font-size: 1rem;
}

.price-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
    padding: 5px 15px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.price-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

/* Pricing Tabs */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.pricing-tab {
    padding: 12px 30px;
    border: 2px solid var(--border-subtle);
    background: white;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-medium);
    color: var(--text-secondary);
}

.pricing-tab:hover {
    border-color: var(--accent-purple);
    color: var(--accent-purple);
}

.pricing-tab.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    box-shadow: var(--shadow-glow);
}

.pricing-content {
    display: none;
}

.pricing-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Order Section */
.order-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.order-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.order-form {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: white;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group select option {
    background: white;
}

.price-summary {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(14, 165, 233, 0.05));
    padding: 20px;
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.price-summary-label {
    font-weight: 600;
    color: var(--text-secondary);
}

.price-summary-value {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.order-form .btn {
    width: 100%;
    justify-content: center;
}

.order-info {
    padding: 30px;
}

.order-info h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item span:first-child {
    font-size: 1.5rem;
}

.info-item strong {
    display: block;
    margin-bottom: 3px;
}

.info-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Payment Methods */
.payment-methods {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

.payment-title {
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    transition: var(--transition-fast);
}

.payment-logo:hover {
    transform: scale(1.05);
}

.payment-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.7rem;
}

.payment-logo.bkash {
    background: linear-gradient(135deg, #e2136e, #d4145a);
}

.payment-logo.nagad {
    background: linear-gradient(135deg, #f26522, #e85d10);
}

.payment-logo.dbbl {
    background: linear-gradient(135deg, #0066b3, #004a8f);
}

.payment-logo.upay {
    background: linear-gradient(135deg, #6c3494, #5a2a7e);
}

.payment-logo.rocket {
    background: linear-gradient(135deg, #8b2d8b, #7a2277);
}

/* Future Section */
.future-section {
    padding: 100px 0;
    text-align: center;
}

.future-content {
    max-width: 600px;
    margin: 0 auto;
}

.future-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.future-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.future-feature span:first-child {
    color: var(--accent-green);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-tagline {
    color: var(--text-secondary);
    margin-top: 15px;
}

.footer-slogan {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 5px;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 10px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: white;
    padding: 12px 25px;
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-medium);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
}

.footer-bottom p {
    color: var(--text-muted);
    margin-bottom: 5px;
}

.summary-tagline {
    color: var(--text-secondary);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-medium);
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16/9;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.modal-video {
    width: 100%;
    height: 100%;
}

.modal-video iframe {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
}

/* VEO3 Logo */
.veo3-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.veo3-logo-small {
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.badge-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 4px;
}

.highlight-text {
    color: var(--accent-cyan);
    font-weight: 600;
}

.highlight-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff4444 100%);
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin: 12px 0;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4), 0 0 30px rgba(247, 147, 30, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: fire-glow 1.5s ease-in-out infinite;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
}

.fire-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

@keyframes fire-glow {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4), 0 0 30px rgba(247, 147, 30, 0.2);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 6px 30px rgba(255, 107, 53, 0.6), 0 0 50px rgba(247, 147, 30, 0.4), 0 0 80px rgba(255, 68, 68, 0.2);
    }
}

.bulk-status {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    animation: processing 1.5s ease-in-out infinite;
}

/* Devices Section */
.devices-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

/* Two Column Layout */
.devices-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.devices-left .section-header {
    text-align: left;
    margin-bottom: 30px;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.device-card {
    text-align: center;
    transition: var(--transition-medium);
    background: white;
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
}

.device-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
}

.device-image {
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: var(--radius-md);
    transition: var(--transition-medium);
    display: block;
    margin: 0 auto;
}

.device-card:hover .device-image {
    transform: scale(1.02);
}

.device-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

.device-icon {
    font-size: 1.3rem;
}

/* Right Column - Video Samples */
.devices-right {
    position: sticky;
    top: 100px;
}

.samples-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.devices-samples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.device-sample-card {
    text-decoration: none;
    display: block;
    transition: var(--transition-medium);
}

.device-sample-card:hover {
    transform: translateY(-5px);
}

.device-sample-card .sample-video {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-tertiary);
}

.device-sample-card .sample-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sample-title {
    margin-top: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

/* Languages Section */
.languages-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.languages-showcase {
    max-width: 900px;
    margin: 0 auto;
}

.language-featured {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.lang-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 30px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    transition: var(--transition-medium);
    box-shadow: var(--shadow-soft);
}

.lang-card.featured {
    border-color: var(--accent-purple);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(14, 165, 233, 0.05));
}

.lang-card span {
    font-size: 2rem;
}

.lang-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.languages-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.lang-tag {
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.lang-tag:hover {
    background: rgba(139, 92, 246, 0.3);
    color: var(--text-primary);
}

.lang-tag.more {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
}

/* Samples Section */
.samples-section {
    padding: 100px 0;
}

.samples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.sample-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: var(--transition-medium);
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    display: block;
}

.sample-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
    box-shadow: var(--shadow-card);
}

.sample-video {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--bg-tertiary);
    overflow: hidden;
}

.sample-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-medium);
}

.play-overlay span {
    color: white;
    font-size: 1.5rem;
    margin-left: 3px;
}

.sample-card:hover .play-overlay {
    background: var(--accent-purple);
    transform: translate(-50%, -50%) scale(1.1);
}

.sample-info {
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sample-niche {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.sample-lang {
    background: rgba(99, 102, 241, 0.1);
    padding: 3px 10px;
    border-radius: var(--radius-xl);
    font-size: 0.7rem;
    color: var(--accent-purple);
    font-weight: 500;
}

/* Updated Pricing */
.pricing-features {
    margin-bottom: 25px;
}

.pricing-feature {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-subtle);
}

.pricing-feature:last-child {
    border-bottom: none;
}

/* Updated Order Form */
.price-summary {
    background: rgba(139, 92, 246, 0.1);
    padding: 25px;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.price-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.price-summary-row.main {
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
    margin: 10px 0;
    padding: 15px 0;
}

.price-summary-label {
    font-weight: 500;
    color: var(--text-secondary);
}

.price-summary-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.price-summary-value {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-summary-savings {
    color: var(--accent-green);
    font-weight: 700;
    font-size: 1.1rem;
}

.price-summary-row.savings {
    background: rgba(16, 185, 129, 0.1);
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    margin-top: 10px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Large Tablets & Small Desktops */
@media (max-width: 1024px) {
    .devices-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .samples-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-badge {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .extreme-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .extreme-features {
        align-items: center;
    }

    .extreme-visual {
        margin-top: 30px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Tablets */
@media (max-width: 768px) {

    /* Navigation */
    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .navbar {
        padding: 12px 0;
    }

    .logo-text {
        font-size: 1rem;
    }

    .veo3-logo {
        width: 32px;
        height: 32px;
    }

    /* Platform Bar - Hide on Mobile */
    .platform-bar {
        display: none;
    }

    /* Hero Section */
    .hero {
        padding: 60px 0 80px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .badge-logo {
        width: 20px;
        height: 20px;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-ctas .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-features {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .hero-feature {
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    /* Reel Showcase Mobile */
    .reel-showcase {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .showcase-phone {
        width: 140px;
    }

    .app-ui-showcase {
        margin-top: 30px;
    }

    .app-ui-screenshot {
        max-width: 100%;
        border-radius: var(--radius-md);
    }

    .showcase-title {
        font-size: 1.1rem;
        text-align: center;
    }

    .showcase-feature {
        font-size: 0.85rem;
        padding: 6px 0;
    }

    .showcase-feature.highlight {
        padding: 8px 10px;
    }

    /* Section Headers */
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .section-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* Devices Section */
    .devices-section {
        padding: 60px 0;
    }

    .devices-two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .devices-left .section-header {
        text-align: center;
    }

    .devices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .device-image {
        max-width: 120px;
    }

    .device-label {
        font-size: 0.85rem;
        margin-top: 10px;
    }

    .devices-right {
        position: static;
    }

    .samples-title {
        font-size: 1.2rem;
        text-align: center;
    }

    .devices-samples-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Extreme Section */
    .extreme-section {
        padding: 60px 0;
    }

    .extreme-badge span {
        font-size: 0.85rem;
        padding: 10px 20px;
    }

    .extreme-card {
        padding: 30px 20px;
    }

    .extreme-title {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 10px;
    }

    .extreme-subtitle {
        font-size: 1rem;
    }

    .extreme-feature {
        font-size: 0.95rem;
    }

    .extreme-quote {
        padding: 15px 20px;
        font-size: 0.95rem;
    }

    .reel-stack {
        width: 150px;
        height: 220px;
    }

    .reel {
        width: 90px;
        height: 150px;
    }

    .reel-counter {
        font-size: 2rem;
    }

    /* Languages Section */
    .languages-section {
        padding: 60px 0;
    }

    .language-featured {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .lang-card {
        padding: 15px 25px;
        width: 100%;
        max-width: 200px;
    }

    .languages-grid {
        gap: 8px;
    }

    .lang-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    /* Features Section */
    .features-section {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 25px;
    }

    .feature-icon-wrap {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.15rem;
    }

    .niche-tags {
        gap: 6px;
    }

    .niche-tag {
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    /* Samples Section */
    .samples-section {
        padding: 60px 0;
    }

    .samples-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sample-card {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Pricing Section */
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-tabs {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 30px;
    }

    .pricing-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .pricing-region {
        margin-bottom: 40px;
    }

    .region-title {
        font-size: 1.3rem;
        justify-content: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card {
        padding: 20px;
    }

    .pricing-header {
        margin-bottom: 15px;
    }

    .pricing-header span:first-child {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }

    .pricing-header h4 {
        font-size: 1.2rem;
        margin-bottom: 3px;
    }

    .pricing-header p {
        font-size: 0.8rem;
    }

    .pricing-body {
        margin-bottom: 15px;
    }

    .price-old {
        font-size: 1rem;
        margin-bottom: 3px;
    }

    .price-new .currency {
        font-size: 1.2rem;
    }

    .price-new .amount {
        font-size: 2rem;
    }

    .price-badge {
        font-size: 0.75rem;
        padding: 4px 12px;
    }

    .price-note {
        font-size: 0.8rem;
    }

    .pricing-features {
        margin-bottom: 15px;
    }

    .pricing-feature {
        font-size: 0.85rem;
        padding: 6px 0;
    }

    .pricing-card .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    /* Order Section */
    .order-section {
        padding: 50px 0;
    }

    .order-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .order-form {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .form-group input,
    .form-group select {
        padding: 10px 14px;
        font-size: 0.95rem;
    }

    .price-summary {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .price-summary-value {
        font-size: 1.3rem;
    }

    .order-form .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .order-info {
        padding: 20px;
        background: white;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-subtle);
        box-shadow: var(--shadow-soft);
    }

    .order-info h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .info-item {
        margin-bottom: 12px;
    }

    .info-item span:first-child {
        font-size: 1.2rem;
    }

    .info-item strong {
        font-size: 0.95rem;
    }

    .info-item p {
        font-size: 0.8rem;
    }

    /* Future Section */
    .future-section {
        padding: 60px 0;
    }

    .future-features {
        flex-direction: column;
        gap: 15px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-brand {
        margin-bottom: 10px;
    }

    .footer-links {
        margin-bottom: 0;
    }

    .whatsapp-btn {
        display: inline-flex;
    }

    /* Sticky CTA */
    .sticky-cta {
        bottom: 15px;
        right: 15px;
        left: 15px;
    }

    .sticky-cta .btn {
        width: 100%;
        justify-content: center;
    }

    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Hero */
    .hero {
        padding: 40px 0 60px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .hero-feature {
        justify-content: center;
    }

    /* Sections */
    .section-title {
        font-size: 1.5rem;
    }

    .section-header {
        margin-bottom: 30px;
    }

    /* Devices */
    .devices-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .device-card {
        max-width: 250px;
        margin: 0 auto;
    }

    /* Extreme */
    .extreme-card {
        padding: 25px 15px;
    }

    .extreme-title {
        font-size: 1.4rem;
    }

    .extreme-feature {
        font-size: 0.9rem;
        text-align: left;
    }

    /* Languages */
    .lang-card {
        padding: 12px 20px;
    }

    .lang-card span {
        font-size: 1.5rem;
    }

    /* Features */
    .feature-card {
        padding: 20px;
    }

    /* Pricing */
    .pricing-card {
        padding: 25px 20px;
    }

    .popular-badge {
        font-size: 0.7rem;
        padding: 4px 15px;
    }

    .price-new .amount {
        font-size: 2.2rem;
    }

    .pricing-feature {
        font-size: 0.85rem;
        padding: 6px 0;
    }

    /* Order */
    .order-form {
        padding: 20px 15px;
    }

    .price-summary {
        padding: 15px;
    }

    .price-summary-row {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .price-summary-row.main {
        padding: 12px 0;
    }

    /* Footer */
    .footer-bottom p {
        font-size: 0.85rem;
    }

    .summary-tagline {
        font-size: 0.8rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .extreme-title {
        font-size: 1.2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .pricing-header h4 {
        font-size: 1.2rem;
    }

    .price-new .amount {
        font-size: 2rem;
    }
}

/* Landscape Mode on Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 40px 0 60px;
    }

    .hero-visual {
        max-width: 350px;
    }

    .video-placeholder {
        aspect-ratio: 16/9;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {

    .feature-card:hover,
    .pricing-card:hover,
    .device-card:hover,
    .sample-card:hover,
    .lang-card:hover {
        transform: none;
    }

    .btn:hover {
        transform: none;
    }

    .nav-links a:hover::after {
        width: 0;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .gradient-orb {
        filter: blur(100px);
    }
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .gradient-orb {
        animation: none;
    }

    .btn-glow {
        animation: none;
    }

    .progress-fill {
        animation: none;
        width: 70%;
    }

    .file-item.processing {
        animation: none;
    }

    .extreme-badge span {
        animation: none;
    }
}/ *   C o m b i n e d   R o w   L a y o u t   f o r   E x t r e m e   &   L a n g u a g e s   * /  
 . c o m b i n e d - r o w   {  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   1 f r   1 f r ;  
         g a p :   3 0 p x ;  
         m a r g i n - t o p :   4 0 p x ;  
 }  
  
 / *   E x t r e m e   C a r d   C o m p a c t   * /  
 . e x t r e m e - c a r d - c o m p a c t   {  
         p o s i t i o n :   r e l a t i v e ;  
         b a c k g r o u n d :   w h i t e ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ;  
         p a d d i n g :   3 0 p x ;  
         b o x - s h a d o w :   v a r ( - - s h a d o w - c a r d ) ;  
         b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r - s u b t l e ) ;  
 }  
  
 . e x t r e m e - g l o w   {  
         p o s i t i o n :   a b s o l u t e ;  
         i n s e t :   - 2 p x ;  
         b a c k g r o u n d :   v a r ( - - g r a d i e n t - p r i m a r y ) ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ;  
         o p a c i t y :   0 . 1 ;  
         z - i n d e x :   0 ;  
 }  
  
 . e x t r e m e - c o n t e n t   {  
         p o s i t i o n :   r e l a t i v e ;  
         z - i n d e x :   1 ;  
 }  
  
 . e x t r e m e - t i t l e   {  
         f o n t - s i z e :   1 . 8 r e m ;  
         f o n t - w e i g h t :   7 0 0 ;  
         m a r g i n - b o t t o m :   1 0 p x ;  
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ;  
 }  
  
 . e x t r e m e - s u b t i t l e   {  
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ;  
         m a r g i n - b o t t o m :   2 0 p x ;  
 }  
  
 . e x t r e m e - f e a t u r e s - c o m p a c t   {  
         d i s p l a y :   f l e x ;  
         f l e x - d i r e c t i o n :   c o l u m n ;  
         g a p :   8 p x ;  
         m a r g i n - b o t t o m :   2 0 p x ;  
 }  
  
 . e x t r e m e - f e a t u r e   {  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   f l e x - s t a r t ;  
         g a p :   1 0 p x ;  
         f o n t - s i z e :   0 . 9 r e m ;  
 }  
  
 . g r e e n - t i c k   {  
         c o l o r :   # 1 0 b 9 8 1 ;  
         f o n t - w e i g h t :   7 0 0 ;  
         f o n t - s i z e :   1 . 1 r e m ;  
         f l e x - s h r i n k :   0 ;  
 }  
  
 . e x t r e m e - q u o t e   {  
         f o n t - s t y l e :   i t a l i c ;  
         c o l o r :   v a r ( - - a c c e n t - p u r p l e ) ;  
         b o r d e r - l e f t :   3 p x   s o l i d   v a r ( - - a c c e n t - p u r p l e ) ;  
         p a d d i n g - l e f t :   1 5 p x ;  
         m a r g i n :   2 0 p x   0   0   0 ;  
         f o n t - s i z e :   0 . 9 5 r e m ;  
 }  
  
 / *   L a n g u a g e s   C a r d   C o m p a c t   * /  
 . l a n g u a g e s - c a r d - c o m p a c t   {  
         b a c k g r o u n d :   w h i t e ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ;  
         p a d d i n g :   3 0 p x ;  
         b o x - s h a d o w :   v a r ( - - s h a d o w - c a r d ) ;  
         b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r - s u b t l e ) ;  
 }  
  
 . l a n g u a g e s - t i t l e   {  
         f o n t - s i z e :   1 . 5 r e m ;  
         f o n t - w e i g h t :   7 0 0 ;  
         m a r g i n - b o t t o m :   8 p x ;  
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ;  
 }  
  
 . l a n g u a g e s - s u b t i t l e   {  
         f o n t - s i z e :   1 . 1 r e m ;  
         f o n t - w e i g h t :   6 0 0 ;  
         c o l o r :   v a r ( - - a c c e n t - p u r p l e ) ;  
         m a r g i n - b o t t o m :   5 p x ;  
 }  
  
 . l a n g u a g e s - d e s c   {  
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ;  
         f o n t - s i z e :   0 . 9 r e m ;  
         m a r g i n - b o t t o m :   2 0 p x ;  
 }  
  
 . l a n g u a g e s - g r i d - c o m p a c t   {  
         d i s p l a y :   f l e x ;  
         f l e x - w r a p :   w r a p ;  
         g a p :   8 p x ;  
         m a r g i n - t o p :   1 5 p x ;  
 }  
  
 . l a n g - t a g   {  
         b a c k g r o u n d :   r g b a ( 9 9 ,   1 0 2 ,   2 4 1 ,   0 . 0 8 ) ;  
         b o r d e r :   1 p x   s o l i d   r g b a ( 9 9 ,   1 0 2 ,   2 4 1 ,   0 . 2 ) ;  
         p a d d i n g :   5 p x   1 2 p x ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - x l ) ;  
         f o n t - s i z e :   0 . 8 r e m ;  
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ;  
         t r a n s i t i o n :   v a r ( - - t r a n s i t i o n - f a s t ) ;  
 }  
  
 . l a n g - t a g : h o v e r   {  
         b a c k g r o u n d :   r g b a ( 9 9 ,   1 0 2 ,   2 4 1 ,   0 . 1 5 ) ;  
         b o r d e r - c o l o r :   v a r ( - - a c c e n t - p u r p l e ) ;  
 }  
  
 / *   E x t r e m e   B a d g e   * /  
 . e x t r e m e - b a d g e   {  
         t e x t - a l i g n :   c e n t e r ;  
         m a r g i n - b o t t o m :   3 0 p x ;  
 }  
  
 . e x t r e m e - b a d g e   s p a n   {  
         d i s p l a y :   i n l i n e - b l o c k ;  
         b a c k g r o u n d :   v a r ( - - g r a d i e n t - p r i m a r y ) ;  
         c o l o r :   w h i t e ;  
         p a d d i n g :   1 2 p x   3 0 p x ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - x l ) ;  
         f o n t - w e i g h t :   7 0 0 ;  
         f o n t - s i z e :   1 r e m ;  
         b o x - s h a d o w :   v a r ( - - s h a d o w - g l o w ) ;  
 }  
  
 / *   M o b i l e   R e s p o n s i v e   * /  
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {  
         . c o m b i n e d - r o w   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
                 g a p :   2 0 p x ;  
         }  
  
         . e x t r e m e - c a r d - c o m p a c t ,  
         . l a n g u a g e s - c a r d - c o m p a c t   {  
                 p a d d i n g :   2 0 p x ;  
         }  
  
         . e x t r e m e - t i t l e   {  
                 f o n t - s i z e :   1 . 4 r e m ;  
         }  
  
         . l a n g u a g e s - t i t l e   {  
                 f o n t - s i z e :   1 . 2 r e m ;  
         }  
 }  
 / *   M o b i l e   H e r o   R e o r d e r i n g   * /  
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {  
         . h e r o   . c o n t a i n e r   {  
                 d i s p l a y :   f l e x ;  
                 f l e x - d i r e c t i o n :   c o l u m n ;  
         }  
  
         . h e r o - c o n t e n t   {  
                 o r d e r :   1 ;  
         }  
  
         . h e r o - v i s u a l   {  
                 o r d e r :   2 ;  
                 d i s p l a y :   f l e x ;  
                 f l e x - d i r e c t i o n :   c o l u m n ;  
         }  
  
         . r e e l - s h o w c a s e   {  
                 o r d e r :   1 ;  
         }  
  
         . a p p - u i - s h o w c a s e   {  
                 o r d e r :   2 ;  
         }  
 }  
 / *   F i x   H e r o   S e c t i o n   O r d e r   o n   M o b i l e   * /  
 . h e r o   . c o n t a i n e r   {  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   1 f r   1 f r ;  
         g a p :   6 0 p x ;  
         a l i g n - i t e m s :   c e n t e r ;  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {  
         . h e r o   . c o n t a i n e r   {  
                 d i s p l a y :   f l e x ;  
                 f l e x - d i r e c t i o n :   c o l u m n ;  
                 g a p :   3 0 p x ;  
         }  
  
         . h e r o - c o n t e n t   {  
                 o r d e r :   1   ! i m p o r t a n t ;  
         }  
  
         . h e r o - v i s u a l   {  
                 o r d e r :   2   ! i m p o r t a n t ;  
         }  
 }  
 / *   P e r f o r m a n c e   O p t i m i z a t i o n s   &   S t i c k y   O r d e r   S e c t i o n   * /  
  
 / *   R e d u c e   a n i m a t i o n s   o n   m o b i l e   f o r   b e t t e r   p e r f o r m a n c e   * /  
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {  
  
         / *   D i s a b l e   h e a v y   a n i m a t i o n s   o n   m o b i l e   * /  
         * ,  
         * : : b e f o r e ,  
         * : : a f t e r   {  
                 a n i m a t i o n - d u r a t i o n :   0 . 3 s   ! i m p o r t a n t ;  
                 t r a n s i t i o n - d u r a t i o n :   0 . 2 s   ! i m p o r t a n t ;  
         }  
  
         / *   D i s a b l e   p a r a l l a x   a n d   c o m p l e x   a n i m a t i o n s   * /  
         . g r a d i e n t - o r b ,  
         . b g - a n i m a t i o n   {  
                 a n i m a t i o n :   n o n e   ! i m p o r t a n t ;  
                 w i l l - c h a n g e :   a u t o   ! i m p o r t a n t ;  
         }  
  
         / *   S i m p l i f y   g l o w   e f f e c t s   * /  
         . b t n - g l o w ,  
         . h i g h l i g h t - f e a t u r e   {  
                 a n i m a t i o n :   n o n e   ! i m p o r t a n t ;  
                 b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 9 9 ,   1 0 2 ,   2 4 1 ,   0 . 3 )   ! i m p o r t a n t ;  
         }  
 }  
  
 / *   S t i c k y   O r d e r   S e c t i o n   * /  
 . o r d e r - s e c t i o n   {  
         p o s i t i o n :   s t i c k y ;  
         t o p :   0 ;  
         z - i n d e x :   1 0 0 ;  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # f 8 f a f c   0 % ,   # e 0 e 7 f f   1 0 0 % ) ;  
 }  
  
 / *   W h e n   o r d e r   s e c t i o n   r e a c h e s   i t s   n a t u r a l   p o s i t i o n ,   u n s t i c k   i t   * /  
 @ m e d i a   ( m i n - w i d t h :   7 6 9 p x )   {  
         . o r d e r - s e c t i o n   {  
                 p o s i t i o n :   r e l a t i v e ;  
         }  
 }  
  
 / *   O p t i m i z e   r e n d e r i n g   * /  
 . o r d e r - f o r m ,  
 . p r i c i n g - c a r d ,  
 . f e a t u r e - c a r d   {  
         w i l l - c h a n g e :   a u t o ;  
         t r a n s f o r m :   t r a n s l a t e Z ( 0 ) ;  
         b a c k f a c e - v i s i b i l i t y :   h i d d e n ;  
 }  
  
 / *   R e d u c e   m o t i o n   f o r   u s e r s   w h o   p r e f e r   i t   * /  
 @ m e d i a   ( p r e f e r s - r e d u c e d - m o t i o n :   r e d u c e )   {  
  
         * ,  
         * : : b e f o r e ,  
         * : : a f t e r   {  
                 a n i m a t i o n - d u r a t i o n :   0 . 0 1 m s   ! i m p o r t a n t ;  
                 a n i m a t i o n - i t e r a t i o n - c o u n t :   1   ! i m p o r t a n t ;  
                 t r a n s i t i o n - d u r a t i o n :   0 . 0 1 m s   ! i m p o r t a n t ;  
         }  
 }  
 / *   A g g r e s s i v e   M o b i l e   P e r f o r m a n c e   O p t i m i z a t i o n s   * /  
  
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {  
  
         / *   C o m p l e t e l y   d i s a b l e   A L L   a n i m a t i o n s   o n   m o b i l e   * /  
         * ,  
         * : : b e f o r e ,  
         * : : a f t e r   {  
                 a n i m a t i o n :   n o n e   ! i m p o r t a n t ;  
                 t r a n s i t i o n :   n o n e   ! i m p o r t a n t ;  
         }  
  
         / *   R e m o v e   a l l   b a c k g r o u n d   a n i m a t i o n s   * /  
         . b g - a n i m a t i o n ,  
         . g r a d i e n t - o r b   {  
                 d i s p l a y :   n o n e   ! i m p o r t a n t ;  
         }  
  
         / *   S m a l l e r   b u t t o n s   t o   r e d u c e   r e n d e r i n g   * /  
         . b t n   {  
                 p a d d i n g :   1 2 p x   2 4 p x   ! i m p o r t a n t ;  
                 f o n t - s i z e :   0 . 9 r e m   ! i m p o r t a n t ;  
         }  
  
         . b t n - p r i m a r y ,  
         . b t n - s e c o n d a r y   {  
                 b o x - s h a d o w :   n o n e   ! i m p o r t a n t ;  
         }  
  
         / *   R e m o v e   g l o w   e f f e c t s   * /  
         . b t n - g l o w   {  
                 b o x - s h a d o w :   n o n e   ! i m p o r t a n t ;  
                 a n i m a t i o n :   n o n e   ! i m p o r t a n t ;  
         }  
  
         / *   S i m p l i f y   h i g h l i g h t   f e a t u r e s   * /  
         . h i g h l i g h t - f e a t u r e   {  
                 a n i m a t i o n :   n o n e   ! i m p o r t a n t ;  
                 b o x - s h a d o w :   n o n e   ! i m p o r t a n t ;  
                 p a d d i n g :   8 p x   1 6 p x   ! i m p o r t a n t ;  
                 f o n t - s i z e :   0 . 8 5 r e m   ! i m p o r t a n t ;  
         }  
  
         / *   D i s a b l e   f i r e   i c o n   a n i m a t i o n s   * /  
         . f i r e - i c o n   {  
                 w i d t h :   1 6 p x   ! i m p o r t a n t ;  
                 h e i g h t :   1 6 p x   ! i m p o r t a n t ;  
         }  
  
         / *   R e m o v e   a l l   h o v e r   e f f e c t s   o n   m o b i l e   * /  
         * : h o v e r   {  
                 t r a n s f o r m :   n o n e   ! i m p o r t a n t ;  
                 b o x - s h a d o w :   n o n e   ! i m p o r t a n t ;  
         }  
  
         / *   D i s a b l e   s t i c k y   o r d e r   s e c t i o n   o n   m o b i l e   -   c a u s e s   l a g   * /  
         . o r d e r - s e c t i o n   {  
                 p o s i t i o n :   r e l a t i v e   ! i m p o r t a n t ;  
                 t o p :   a u t o   ! i m p o r t a n t ;  
         }  
  
         / *   O p t i m i z e   i m a g e s   * /  
         i m g   {  
                 i m a g e - r e n d e r i n g :   a u t o ;  
                 w i l l - c h a n g e :   a u t o ;  
         }  
  
         / *   R e m o v e   s h a d o w s   f r o m   c a r d s   * /  
         . f e a t u r e - c a r d ,  
         . p r i c i n g - c a r d ,  
         . d e v i c e - c a r d   {  
                 b o x - s h a d o w :   0   2 p x   8 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 )   ! i m p o r t a n t ;  
         }  
  
         / *   S i m p l i f y   g r a d i e n t s   * /  
         . g r a d i e n t - t e x t   {  
                 b a c k g r o u n d :   # 6 3 6 6 f 1   ! i m p o r t a n t ;  
                 - w e b k i t - b a c k g r o u n d - c l i p :   t e x t   ! i m p o r t a n t ;  
                 - w e b k i t - t e x t - f i l l - c o l o r :   t r a n s p a r e n t   ! i m p o r t a n t ;  
         }  
  
         / *   R e m o v e   p u l s e   a n i m a t i o n s   * /  
         . b a d g e - p u l s e   {  
                 d i s p l a y :   n o n e   ! i m p o r t a n t ;  
         }  
  
         / *   O p t i m i z e   h e r o   f e a t u r e s   * /  
         . h e r o - f e a t u r e s   {  
                 g a p :   8 p x   ! i m p o r t a n t ;  
         }  
  
         . h e r o - f e a t u r e   {  
                 p a d d i n g :   8 p x   1 0 p x   ! i m p o r t a n t ;  
                 f o n t - s i z e :   0 . 7 5 r e m   ! i m p o r t a n t ;  
         }  
 }  
  
 / *   F o r c e   G P U   a c c e l e r a t i o n   o n l y   w h e r e   n e e d e d   * /  
 . h e r o - t i t l e ,  
 . s e c t i o n - t i t l e   {  
         t r a n s f o r m :   t r a n s l a t e Z ( 0 ) ;  
         b a c k f a c e - v i s i b i l i t y :   h i d d e n ;  
 }  
 / *   U l t r a   A g g r e s s i v e   M o b i l e   O p t i m i z a t i o n s   -   T a r g e t   H i g h l i g h t   B u t t o n s   * /  
  
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {  
  
         / *   M a k e   h i g h l i g h t   f e a t u r e   b u t t o n s   M U C H   s m a l l e r   * /  
         . h i g h l i g h t - f e a t u r e   {  
                 p a d d i n g :   6 p x   1 2 p x   ! i m p o r t a n t ;  
                 f o n t - s i z e :   0 . 7 r e m   ! i m p o r t a n t ;  
                 m a r g i n :   4 p x   0   ! i m p o r t a n t ;  
                 b o r d e r - r a d i u s :   2 0 p x   ! i m p o r t a n t ;  
                 a n i m a t i o n :   n o n e   ! i m p o r t a n t ;  
                 b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # f f 6 b 3 5   0 % ,   # f 7 9 3 1 e   1 0 0 % )   ! i m p o r t a n t ;  
                 b o x - s h a d o w :   n o n e   ! i m p o r t a n t ;  
                 b o r d e r :   n o n e   ! i m p o r t a n t ;  
                 d i s p l a y :   i n l i n e - f l e x   ! i m p o r t a n t ;  
                 a l i g n - i t e m s :   c e n t e r   ! i m p o r t a n t ;  
                 g a p :   4 p x   ! i m p o r t a n t ;  
         }  
  
         / *   S m a l l e r   f i r e / i m a g e   i c o n s   * /  
         . h i g h l i g h t - f e a t u r e   . f i r e - i c o n   {  
                 w i d t h :   1 2 p x   ! i m p o r t a n t ;  
                 h e i g h t :   1 2 p x   ! i m p o r t a n t ;  
                 m i n - w i d t h :   1 2 p x   ! i m p o r t a n t ;  
         }  
  
         / *   S m a l l e r   h e r o   s u b t i t l e   t e x t   * /  
         . h e r o - s u b t i t l e   {  
                 f o n t - s i z e :   0 . 8 5 r e m   ! i m p o r t a n t ;  
                 l i n e - h e i g h t :   1 . 4   ! i m p o r t a n t ;  
         }  
  
         . h e r o - s u b t i t l e   s t r o n g   {  
                 f o n t - s i z e :   0 . 9 r e m   ! i m p o r t a n t ;  
         }  
  
         / *   M a k e   h e r o   t i t l e   s m a l l e r   * /  
         . h e r o - t i t l e   {  
                 f o n t - s i z e :   1 . 8 r e m   ! i m p o r t a n t ;  
                 l i n e - h e i g h t :   1 . 1   ! i m p o r t a n t ;  
         }  
  
         / *   S m a l l e r   h e r o   b a d g e   * /  
         . h e r o - b a d g e   {  
                 p a d d i n g :   6 p x   1 2 p x   ! i m p o r t a n t ;  
                 f o n t - s i z e :   0 . 7 r e m   ! i m p o r t a n t ;  
         }  
  
         . b a d g e - l o g o   {  
                 w i d t h :   1 6 p x   ! i m p o r t a n t ;  
                 h e i g h t :   1 6 p x   ! i m p o r t a n t ;  
         }  
  
         / *   R e m o v e   a l l   g r a d i e n t   b a c k g r o u n d s   -   u s e   s o l i d   c o l o r s   * /  
         . h i g h l i g h t - f e a t u r e [ s t y l e * = " 1 0 b 9 8 1 " ]   {  
                 b a c k g r o u n d :   # 1 0 b 9 8 1   ! i m p o r t a n t ;  
         }  
  
         . h i g h l i g h t - f e a t u r e [ s t y l e * = " 8 b 5 c f 6 " ]   {  
                 b a c k g r o u n d :   # 8 b 5 c f 6   ! i m p o r t a n t ;  
         }  
  
         / *   S m a l l e r   C T A   b u t t o n s   * /  
         . h e r o - c t a s   . b t n   {  
                 p a d d i n g :   1 0 p x   2 0 p x   ! i m p o r t a n t ;  
                 f o n t - s i z e :   0 . 8 5 r e m   ! i m p o r t a n t ;  
         }  
  
         / *   S m a l l e r   h e r o   f e a t u r e s   g r i d   * /  
         . h e r o - f e a t u r e   s p a n : f i r s t - c h i l d   {  
                 f o n t - s i z e :   0 . 7 r e m   ! i m p o r t a n t ;  
         }  
  
         . h e r o - f e a t u r e   s p a n : l a s t - c h i l d   {  
                 f o n t - s i z e :   0 . 7 r e m   ! i m p o r t a n t ;  
         }  
 }  
 