:root {
    /* Colors - Premium Modern Palette */
    --primary-color: #0062E6;
    --primary-dark: #004BC4;
    --primary-light: #33AEFF;
    --accent-color: #00C6FF;
    --text-dark: #0F172A;
    --text-light: #64748B;
    --background-light: #FFFFFF;
    --background-offset: #F8FAFC;
    --border-color: #E2E8F0;
    --white: #FFFFFF;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;
    --section-padding: 8rem 0;
    
    /* Shadows - Premium Soft */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 12px 24px -4px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 24px 48px -8px rgba(15, 23, 42, 0.12);
    --shadow-primary: 0 20px 40px -10px rgba(0, 98, 230, 0.3);
    --shadow-hover: 0 30px 60px -12px rgba(15, 23, 42, 0.15);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Force scroll position on load */
html:target {
    scroll-margin-top: 0;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    background-color: var(--background-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Scroll Animations - elements visible by default, animate when scrolled into view */
.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.hidden {
    opacity: 0;
    transform: translateY(24px);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    box-shadow: var(--shadow-primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 98, 230, 0.4);
}

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

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

/* Modern Section Headers */
.section-header {
    margin-bottom: 5rem;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    line-height: 1.1;
    background: linear-gradient(180deg, var(--text-dark) 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Header */
.header {
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.98);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.header .header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    padding: 0 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 98, 230, 0.2));
}

.logo span {
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.nav-list {
    display: flex;
    gap: 3rem;
}

.nav-list a {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1rem;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

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

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

.mobile-menu-toggle span {
    width: 26px;
    height: 2.5px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Navigation Menu */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-list li:last-child {
    border-bottom: none;
    padding-top: 1rem;
}

.mobile-nav-list a {
    display: block;
    padding: 1rem 0;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

.mobile-nav-list .mobile-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
}

.mobile-nav-list .mobile-cta:hover {
    color: var(--white);
}

/* Mobile menu toggle animation when active */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Premium Hero Section */
.hero {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 2rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: -1;
}

.hero-bg-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 98, 230, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 60%, rgba(51, 174, 255, 0.08) 0%, transparent 40%);
    z-index: -1;
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow svg {
    color: var(--primary-color);
    opacity: 0.7;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(10px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
    justify-content: space-between;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 0;
    letter-spacing: -0.04em;
    color: var(--text-dark);
    text-shadow: 0 2px 10px rgba(0,0,0,0.05);
    background: linear-gradient(to bottom, var(--text-dark) 60%, #64748B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3.5rem;
    max-width: 700px;
    line-height: 1.7;
    margin-left: auto;
    margin-right: auto;
}

.app-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--text-dark);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 50px; /* Modern pill shape */
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    min-width: 200px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 98, 230, 0.25);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.store-badge.google-play {
    background: linear-gradient(135deg, #0062E6, #33AEFF);
}

.store-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.store-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 98, 230, 0.4);
}

.store-badge:hover::before {
    opacity: 1;
}

.store-badge span {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    line-height: 1;
}

.store-badge strong {
    display: block;
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 600;
}

/* 3D Device Mockups */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.devices-container {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    transform-style: preserve-3d;
}

/* Phone Mockup */
.phone-mockup {
    width: 120px; /* Smaller width */
    height: 240px; /* Reduced height to match TV scale */
    background-color: #1a1a1a;
    border-radius: 32px; /* Original radius */
    padding: 8px; /* Original padding */
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 0 0 2px rgba(255,255,255,0.1);
    position: relative;
    border: 3px solid #333; /* Original border thickness */
    transform-origin: bottom center;
    transform: rotateY(-20deg) translateZ(0);
    transition: transform 0.5s ease;
    z-index: 2;
    margin-bottom: 20px; /* Align with TV stand base */
}

/* Phone Notch removed */

.screen {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(160deg, #E0F2FE 0%, #FFFFFF 100%);
}

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

/* TV Mockup */
.tv-mockup {
    width: 400px;
    height: 250px;
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 8px;
    position: relative;
    border: 4px solid #2a2a2a;
    box-shadow: 
        0 30px 60px -10px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255,255,255,0.1);
    transform: rotateY(15deg) translateZ(-10px);
    transition: transform 0.5s ease;
}

.tv-screen {
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(160deg, #E0F2FE 0%, #FFFFFF 100%);
}

.tv-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tv-stand {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 20px;
    background: linear-gradient(to bottom, #2a2a2a, #1a1a1a);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.tv-stand::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 10px;
    background: #1a1a1a;
}

/* Signal Waves Animation */
.signal-waves {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 1;
    margin-top: -40px;
}

.signal-waves span {
    display: block;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 4px;
    opacity: 0;
    animation: signal 1.5s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(0, 98, 230, 0.5);
}

.signal-waves span:nth-child(1) { width: 10px; animation-delay: 0s; }
.signal-waves span:nth-child(2) { width: 25px; animation-delay: 0.3s; }
.signal-waves span:nth-child(3) { width: 40px; animation-delay: 0.6s; }

@keyframes signal {
    0% { opacity: 0; transform: translateX(-10px) scale(0.8); }
    50% { opacity: 1; transform: translateX(0) scale(1); }
    100% { opacity: 0; transform: translateX(10px) scale(0.8); }
}

/* Abstract UI Pattern */
.icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 8px;
    width: 100%;
    height: 100%;
    justify-items: center;
    align-content: center;
}

.icon-grid span {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0, 98, 230, 0.15);
    border: 1px solid rgba(255,255,255,0.9);
}

/* TV grid - same content, scaled up */
.tv-grid {
    gap: 16px;
    padding: 30px;
}

.tv-grid span {
    width: 50px;
    height: 50px;
    border-radius: 12px;
}

/* Hover Effect for both */
.devices-container:hover .phone-mockup {
    transform: rotateY(-15deg) translateZ(30px);
}

.devices-container:hover .tv-mockup {
    transform: rotateY(5deg) translateZ(10px);
}

/* Fixed QR Code Card - Bottom Left */
.fixed-qr-card {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    animation: slideInLeft 0.5s ease-out;
}

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

.qr-card-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.qr-card-link:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.2),
        0 15px 30px rgba(0, 0, 0, 0.12);
}

.qr-code-img {
    width: 160px;
    height: 160px;
    border-radius: 16px;
    margin-bottom: 16px;
}

.qr-card-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.qr-available {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.qr-store {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-dark);
}

.qr-store svg {
    color: var(--primary-color);
}

.qr-store strong {
    font-size: 1rem;
    font-weight: 700;
}

/* Hide QR card on small screens */
@media (max-width: 768px) {
    .fixed-qr-card {
        display: none;
    }
}

/* Hide QR card when at footer */
.fixed-qr-card.qr-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-30px);
    transition: all 0.3s ease;
}
/* --- Brand Marquee Section --- */
.brand-marquee-section {
    padding: 4rem 0;
    background-color: var(--background-light);
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

/* Hero Brands - inside hero section */
.hero-brands {
    width: 100%;
    margin-top: 1rem;
    overflow: hidden;
}

.hero-bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: auto;
}

.hero-bottom .app-buttons {
    margin-top: 0;
}

.hero-brands .marquee-title {
    margin-bottom: 1rem;
}

.marquee-title {
    text-align: center;
    color: #B0B8C4;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 3.5rem;
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: scroll 35s linear infinite;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.brand-item span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #94A3B8;
    transition: all 0.3s ease;
    cursor: default;
}

.brand-item:hover span {
    color: var(--primary-color);
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Premium Feature Grid */
.features-grid-section {
    padding: var(--section-padding);
    background-color: var(--white);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.feature-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 32px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    text-align: left;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

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

.feature-icon-wrapper {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    transform: rotate(10deg) scale(1.1);
}

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

.feature-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Detailed Features */
.detailed-features {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--white) 0%, var(--background-offset) 100%);
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
    margin-bottom: 10rem;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row.reverse .feature-text {
    order: 2;
}

.feature-row.reverse .feature-image {
    order: 1;
}

.feature-text h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.badge {
    display: inline-block;
    background: rgba(0, 98, 230, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.feature-text p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.feature-image {
    position: relative;
}

.image-placeholder {
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 12px solid var(--white);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.feature-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: var(--shadow-lg);
    border: 12px solid var(--white);
    transition: transform 0.4s ease;
}

.feature-row:hover .image-placeholder,
.feature-row:hover .feature-img {
    transform: scale(1.02);
}

/* Modern Steps */
.how-it-works {
    padding: var(--section-padding);
    background-color: var(--white);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-top: 5rem;
    counter-reset: step-counter;
}

.step-card {
    text-align: center;
    position: relative;
    padding: 2rem;
    background: var(--white);
    border-radius: 32px;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-radius: 24px;
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0, 98, 230, 0.2);
}

.step-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-light);
    font-size: 1.1rem;
}

@media (min-width: 992px) {
    .steps-container {
        position: relative;
    }
    
    .step-card::after {
        content: '';
        position: absolute;
        top: 72px;
        left: 50%;
        width: 100%;
        height: 4px;
        background: linear-gradient(to right, var(--border-color) 50%, transparent 50%);
        background-size: 24px 100%;
        z-index: 0;
        transform: translateY(-50%);
        opacity: 0.5;
    }

    .step-card:last-child::after {
        display: none;
    }
}

/* Testimonials */
.testimonials {
    padding: var(--section-padding);
    padding-bottom: 4rem;
    background-color: var(--background-offset);
    position: relative;
    overflow: hidden;
}

/* Testimonials Marquee */
.testimonials-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    margin-top: 4rem;
    padding: 1rem 0;
    position: relative;
}

.testimonials-marquee-wrapper::before,
.testimonials-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.testimonials-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--background-offset) 0%, transparent 100%);
}

.testimonials-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--background-offset) 0%, transparent 100%);
}

.testimonials-marquee-track {
    display: flex;
    gap: 2rem;
    animation: testimonials-scroll 40s linear infinite;
    width: max-content;
}

.testimonials-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes testimonials-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    min-width: 380px;
    max-width: 380px;
    flex-shrink: 0;
}

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

.stars {
    color: #F59E0B;
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
    font-size: 1rem;
}

.testimonial-card p {
    font-style: normal;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    line-height: 1.7;
    font-weight: 500;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.user-info strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.user-info span {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 4rem auto 0;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--white);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    background: var(--background-offset);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.75rem;
    background: none;
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-family);
}

.faq-question .icon {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    background: rgba(0, 98, 230, 0.1);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
    padding-bottom: 2px;
    flex-shrink: 0;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
    background: var(--primary-color);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    padding: 0 1.75rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 2rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* FAQ Contact Button */
.faq-contact {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.faq-contact p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-contact svg {
    transition: transform 0.3s ease;
}

.btn-contact:hover svg {
    transform: scale(1.1);
}

/* Modern Footer */
/* Modern Footer */
.footer-new {
    background-color: #F8F9FA;
    padding: 6rem 0 3rem;
    position: relative;
    overflow: hidden;
    color: var(--text-dark);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-bg-text {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    font-size: 11vw;
    font-weight: 900;
    color: rgba(0, 98, 230, 0.04);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
    font-family: var(--font-main);
    letter-spacing: -0.02em;
    user-select: none;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
}

.footer-new .container {
    position: relative;
    z-index: 1;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5rem;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.branding-col {
    flex: 1;
    max-width: 300px;
    gap: 1.5rem;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.footer-tagline {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.footer-email {
    color: var(--text-dark);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s;
}

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

.footer-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 0.5rem;
    width: fit-content;
    transition: transform 0.3s ease;
}

.footer-store-btn:hover {
    transform: translateY(-2px);
}

.footer-store-btn .btn-content {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.footer-store-btn .small-text {
    font-size: 0.6rem;
    opacity: 0.8;
}

.footer-store-btn .big-text {
    font-size: 1rem;
    font-weight: 600;
}

.links-col {
    gap: 1.2rem;
}

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

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

.legal-col {
    align-items: flex-end;
    text-align: right;
    gap: 2rem;
}

.legal-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    color: var(--text-light);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-socials a:hover {
    color: var(--text-dark);
    transform: translateY(-2px);
}

.footer-bottom-row {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-top: 2rem;
    margin-top: 2rem;
}

.copyright-text {
    display: flex;
    justify-content: space-between;
    width: 100%;
    color: var(--text-light);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-top-row {
        flex-direction: column;
        gap: 3rem;
    }
    
    .legal-col {
        align-items: flex-start;
        text-align: left;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        align-items: center;
    }
    
    .footer-bottom-row {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        text-align: center;
    }
    
    .copyright-text {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .footer-bg-text {
        font-size: 20vw;
        bottom: 5%;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 6rem 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .app-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        perspective: none;
    }

    .phone-mockup {
        margin: 0 auto;
        transform: none;
    }
    
    .phone-mockup:hover {
        transform: none;
    }
    
    /* Device specific adjustments - keep side by side but smaller */
    .devices-container {
        flex-direction: row;
        gap: 15px;
        transform: none;
    }
    
    .phone-mockup {
        width: 90px;
        height: 180px;
        border-radius: 24px;
        padding: 6px;
        transform: rotateY(-10deg);
        margin-bottom: 0;
    }
    
    .phone-mockup .screen {
        border-radius: 18px;
    }
    
    .tv-mockup {
        width: 280px;
        height: 175px;
        transform: rotateY(5deg);
    }
    
    .tv-grid {
        gap: 10px;
        padding: 20px;
    }
    
    .tv-grid span {
        width: 35px;
        height: 35px;
    }
    
    .signal-waves {
        gap: 4px;
    }
    
    .signal-waves span:nth-child(1) { width: 8px; }
    .signal-waves span:nth-child(2) { width: 18px; }
    .signal-waves span:nth-child(3) { width: 28px; }

    .devices-container:hover .phone-mockup {
        transform: rotateY(-10deg);
    }

    .devices-container:hover .tv-mockup {
        transform: rotateY(5deg);
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .feature-row.reverse .feature-text {
        order: 1;
    }
    
    .feature-row.reverse .feature-image {
        order: 2;
    }
    
    .feature-card {
        text-align: center;
        padding: 2.5rem 2rem;
    }
    
    .feature-card::before {
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        transform-origin: center;
    }
    
    .feature-card:hover::before {
        transform: translateX(-50%) scaleX(1);
    }
    
    .feature-icon-wrapper {
        margin: 0 auto 1.5rem auto;
    }
    
    .footer-content {
        gap: 4rem;
    }
    
    .footer-links {
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hide header CTA on mobile - it's in the mobile menu */
    .header-cta {
        display: none;
    }

    .hero {
        padding-top: 6rem;
        padding-bottom: 1.5rem;
        min-height: auto;
    }
    
    .hero-container {
        justify-content: flex-start;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-content {
        margin-bottom: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.15;
        padding: 0 0.5rem;
        width: 100%;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        box-sizing: border-box;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .hero-visual {
        margin: 1rem 0;
        width: 100%;
        max-width: 100%;
        overflow: visible;
        display: flex;
        justify-content: center;
    }
    
    .devices-container {
        width: auto;
        max-width: 100%;
        gap: 10px;
    }
    
    /* Scale down devices for 768px and below */
    .phone-mockup {
        width: 70px;
        height: 140px;
        border-radius: 20px;
        padding: 5px;
    }
    
    .phone-mockup .screen {
        border-radius: 15px;
    }
    
    .tv-mockup {
        width: 200px;
        height: 125px;
    }
    
    .tv-grid {
        gap: 8px;
        padding: 15px;
    }
    
    .tv-grid span {
        width: 28px;
        height: 28px;
    }
    
    .tv-stand {
        width: 80px;
        height: 16px;
        bottom: -16px;
    }
    
    .tv-stand::before {
        width: 30px;
        height: 8px;
        top: -8px;
    }
    
    .signal-waves {
        margin-top: -30px;
    }
    
    .hero-bottom {
        gap: 1rem;
        margin-top: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .qr-code-card {
        display: none;
    }
    
    /* Hide scroll indicator on mobile */
    .scroll-indicator {
        display: none;
    }
    
    /* Testimonials Marquee Mobile */
    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        padding: 2rem;
    }
    
    .testimonial-card p {
        font-size: 1rem;
    }
    
    .testimonials-marquee-track {
        animation-duration: 30s;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 3rem;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .step-card::after {
        display: none;
    }
    
    /* Buttons adaptive */
    .app-buttons {
        justify-content: center;
        width: 100%;
        padding: 0 1rem;
    }
    
    .store-badge {
        min-width: unset;
        width: 100%;
        max-width: 220px;
        padding: 0.65rem 1.5rem;
        justify-content: center;
    }
    
    /* Feature cards */
    .feature-card h3 {
        font-size: 1.25rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
    
    /* Feature rows */
    .feature-text h2 {
        font-size: 1.75rem;
    }
    
    .feature-text p {
        font-size: 1rem;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    /* Steps */
    .step-card h3 {
        font-size: 1.25rem;
    }
    
    .step-card p {
        font-size: 0.9rem;
    }
    
    /* Reviews */
    .review-card {
        padding: 1.5rem;
    }
    
    .review-card p {
        font-size: 0.95rem;
    }
    
    /* FAQ */
    .faq-question {
        font-size: 1rem;
        padding: 1.25rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
    
    /* Brand marquee */
    .marquee-title {
        font-size: 0.7rem;
        margin-bottom: 0.75rem;
    }
    
    .marquee-track {
        gap: 2rem;
    }
    
    .brand-item {
        min-width: 80px;
    }
    
    .brand-item span {
        font-size: 1.1rem;
    }
    
    /* CTA Section */
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
    
    /* Feature images */
    .feature-img {
        border-radius: 24px;
        border-width: 8px;
    }
    
    .image-placeholder {
        border-radius: 24px;
        border-width: 8px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-container,
    .hero-content,
    .hero-visual,
    .hero-bottom {
        width: 100%;
        max-width: 100%;
    }
    
    /* Smaller devices on very small screens */
    .devices-container {
        gap: 8px;
        transform: none;
        flex-wrap: nowrap;
        justify-content: center;
        max-width: 100%;
    }
    
    .phone-mockup {
        width: 60px;
        height: 120px;
        border-radius: 16px;
        padding: 4px;
        border-width: 2px;
    }
    
    .phone-mockup .screen {
        border-radius: 12px;
    }
    
    .icon-grid {
        gap: 3px;
        padding: 4px;
    }
    
    .icon-grid span {
        width: 12px;
        height: 12px;
        border-radius: 3px;
    }
    
    .tv-mockup {
        width: 180px;
        height: 112px;
        border-radius: 8px;
        padding: 5px;
        border-width: 3px;
    }
    
    .tv-grid {
        gap: 6px;
        padding: 12px;
    }
    
    .tv-grid span {
        width: 22px;
        height: 22px;
        border-radius: 6px;
    }
    
    .tv-stand {
        width: 70px;
        height: 14px;
        bottom: -14px;
    }
    
    .tv-stand::before {
        width: 25px;
        height: 7px;
        top: -7px;
    }
    
    .signal-waves {
        gap: 3px;
        margin-top: -25px;
    }
    
    .signal-waves span {
        height: 3px;
    }
    
    .signal-waves span:nth-child(1) { width: 6px; }
    .signal-waves span:nth-child(2) { width: 14px; }
    .signal-waves span:nth-child(3) { width: 22px; }
    
    .hero-title {
        font-size: 1.75rem;
        padding: 0 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-bottom {
        gap: 0.75rem;
    }
    
    .hero-brands {
        margin-top: 0.5rem;
    }
    
    .marquee-track {
        gap: 1.5rem;
    }
    
    .brand-item {
        min-width: 60px;
    }
    
    .brand-item span {
        font-size: 0.9rem;
    }
    
    .store-badge {
        padding: 0.6rem 1.25rem;
    }
    
    .store-badge span {
        font-size: 0.6rem;
    }
    
    .store-badge strong {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .feature-text h2 {
        font-size: 1.5rem;
    }
    
    /* Steps grid */
    .steps-container {
        gap: 2rem;
    }
    
    .step-card {
        padding: 2rem 1.5rem;
    }
    
    /* Feature cards grid */
    .features-grid {
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    /* Reviews */
    .reviews-grid {
        gap: 1.5rem;
    }
    
    /* CTA */
    .cta h2 {
        font-size: 1.75rem;
    }
    
    /* Footer */
    .footer-brand h3 {
        font-size: 1.25rem;
    }
    
    .footer-brand p {
        font-size: 0.9rem;
    }
}

/* ==========================================
   HOW TO USE PAGE STYLES
   ========================================== */

/* Page Hero */
.page-hero {
    padding: calc(var(--header-height) + 4rem) 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.page-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Video Tutorials Section */
.video-tutorials {
    padding: var(--section-padding);
    background: var(--background-light);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.video-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.video-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.video-wrapper:hover .video-overlay {
    opacity: 0;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.play-button svg {
    margin-left: 4px;
}

.video-wrapper:hover .play-button {
    transform: scale(1.1);
}

.video-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    padding: 1.5rem 1.5rem 0.5rem;
}

.video-card > p {
    font-size: 1rem;
    color: var(--text-light);
    padding: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

/* Step Guide Section - Timeline Design */
.step-guide {
    padding: var(--section-padding);
    background: var(--background-offset);
}

.timeline-guide {
    max-width: 700px;
    margin: 4rem auto 0;
    position: relative;
    padding-left: 60px;
}

.timeline-line {
    position: absolute;
    left: 24px;
    top: 30px;
    bottom: 30px;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.timeline-step {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -60px;
    top: 24px;
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-step:hover .timeline-marker {
    background: var(--primary-color);
    transform: scale(1.1);
}

.timeline-step:hover .timeline-marker .marker-number {
    color: white;
}

.marker-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.timeline-marker.final {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 98, 230, 0.4);
}

.timeline-marker.final .marker-number {
    color: white;
}

.timeline-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    gap: 1.25rem;
    transition: all 0.3s ease;
}

.timeline-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.timeline-card.highlight {
    background: linear-gradient(135deg, rgba(0, 98, 230, 0.05) 0%, rgba(0, 198, 255, 0.05) 100%);
    border-color: var(--primary-color);
}

.timeline-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.step-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: gap 0.3s ease;
}

.step-link:hover {
    gap: 0.75rem;
}

.step-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.step-checklist span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #10B981;
}

.success-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Tips Section */
.tips-section {
    padding: var(--section-padding);
    background: var(--background-light);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.tip-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tip-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.tip-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.store-badge.large {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 16px;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-badge.large:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.store-badge.large svg {
    color: var(--primary-color);
}

.store-badge.large div {
    text-align: left;
}

.store-badge.large span {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.store-badge.large strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
}

/* Active nav link */
.nav-list a.active,
.mobile-nav-list a.active {
    color: var(--primary-color);
}

/* How to Use Page Responsive */
@media (max-width: 768px) {
    .page-hero {
        padding: calc(var(--header-height) + 2rem) 0 3rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-guide {
        padding-left: 50px;
    }
    
    .timeline-line {
        left: 18px;
    }
    
    .timeline-marker {
        left: -50px;
        width: 40px;
        height: 40px;
    }
    
    .marker-number {
        font-size: 1rem;
    }
    
    .timeline-card {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .timeline-card:hover {
        transform: translateY(-4px);
    }
    
    .timeline-icon {
        width: 48px;
        height: 48px;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

/* ==========================================
   BROWSER MIRROR SECTION (Landing Page)
   ========================================== */

.browser-mirror-section {
    padding: var(--section-padding);
    background: var(--background-offset);
}

.browser-mirror-section .browser-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.browser-mirror-section .browser-step-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.browser-mirror-section .browser-step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.browser-cta {
    text-align: center;
    margin-top: 3rem;
}

.browser-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.browser-cta .btn-primary svg {
    transition: transform 0.3s ease;
}

.browser-cta .btn-primary:hover svg {
    transform: translate(3px, -3px);
}

@media (max-width: 992px) {
    .browser-mirror-section .browser-steps-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ==========================================
   BROWSER MIRROR PAGE STYLES
   ========================================== */

/* Browser Mirror Hero */
.browser-mirror-hero {
    padding: calc(var(--header-height) + 6rem) 0 4rem;
    background: var(--background-light);
    text-align: center;
}

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

.browser-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.browser-hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Browser Steps Section */
.browser-steps-section {
    padding: 5rem 0 6rem;
    background: var(--background-light);
}

.browser-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.browser-step-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.step-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.browser-step-card:hover .step-icon-wrapper {
    transform: scale(1.05);
}

.step-icon-wrapper.green {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
}

.step-icon-wrapper.blue {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    color: white;
}

.step-icon-wrapper.pink {
    background: linear-gradient(135deg, #EC4899 0%, #BE185D 100%);
    color: white;
}

.devices-icons {
    display: flex;
    align-items: flex-end;
    gap: 4px;
}

.browser-step-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.browser-step-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.highlight-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.highlight-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Browser Info Section */
.browser-info-section {
    padding: 5rem 0;
    background: var(--background-offset);
}

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

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.info-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.info-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.info-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Browser CTA Section */
.browser-cta-section {
    padding: 5rem 0;
    background: var(--background-light);
}

.browser-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.browser-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    border-radius: 100px;
}

.btn-secondary {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-primary.btn-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary.btn-large svg {
    transition: transform 0.3s ease;
}

.btn-primary.btn-large:hover svg {
    transform: translateX(4px);
}

/* Browser Mirror Page Responsive */
@media (max-width: 992px) {
    .browser-steps-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 2rem;
    }
    
    .info-cards-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .browser-hero-content h1 {
        font-size: 2rem;
    }
    
    .browser-hero-content p {
        font-size: 1rem;
    }
    
    .browser-mirror-hero {
        padding: calc(var(--header-height) + 3rem) 0 2rem;
    }
    
    .browser-steps-section {
        padding: 3rem 0 4rem;
    }
    
    .step-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .step-icon-wrapper svg {
        width: 36px;
        height: 36px;
    }
    
    .browser-step-card h3 {
        font-size: 1.2rem;
    }
    
    .browser-cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ==========================================
   BLOG SECTION
   ========================================== */

.blog-section {
    padding: var(--section-padding);
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.blog-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.blog-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--white);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-content {
    padding: 1.75rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-date,
.blog-read-time {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.blog-date {
    position: relative;
    padding-right: 1rem;
}

.blog-date::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--border-color);
    border-radius: 50%;
}

.blog-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.blog-card:hover h3 {
    color: var(--primary-color);
}

.blog-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: gap 0.3s ease;
}

.blog-link:hover {
    gap: 0.75rem;
}

.blog-link svg {
    transition: transform 0.3s ease;
}

.blog-link:hover svg {
    transform: translateX(4px);
}

.blog-cta {
    text-align: center;
    margin-top: 4rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.btn-outline svg {
    transition: transform 0.3s ease;
}

.btn-outline:hover svg {
    transform: translateX(4px);
}

/* Hidden Articles (Load More) */
.hidden-article {
    display: none;
    opacity: 0;
    transform: translateY(24px);
}

.hidden-article.visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.5s ease forwards;
}

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

#load-more-btn {
    cursor: pointer;
    border: none;
}

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

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .blog-card h3 {
        font-size: 1.15rem;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-cta {
        margin-top: 3rem;
    }
}

/* ==========================================
   BLOG PAGE STYLES
   ========================================== */

.blog-hero {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%);
}

.blog-page-section {
    padding: var(--section-padding);
    background: var(--background-offset);
}

/* Featured Article */
.featured-article {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 4rem;
    border: 1px solid var(--border-color);
}

.featured-image {
    position: relative;
    min-height: 400px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    font-size: 0.8rem;
    padding: 0.5rem 1.25rem;
}

.featured-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.featured-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.featured-content .btn {
    width: fit-content;
    gap: 0.5rem;
}

.featured-content .btn svg {
    transition: transform 0.3s ease;
}

.featured-content .btn:hover svg {
    transform: translateX(4px);
}

/* Newsletter Section */
.newsletter-section {
    padding: 5rem 0;
    background: var(--white);
}

.newsletter-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    border-radius: 32px;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    box-shadow: 0 20px 60px rgba(0, 98, 230, 0.3);
}

.newsletter-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.newsletter-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 100px;
    font-size: 1rem;
    font-family: var(--font-family);
    outline: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
}

.newsletter-form input::placeholder {
    color: var(--text-light);
}

.newsletter-form input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-form .btn {
    background: var(--text-dark);
    color: var(--white);
    padding: 1rem 2rem;
    white-space: nowrap;
}

.newsletter-form .btn:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Blog Page Responsive */
@media (max-width: 1024px) {
    .featured-article {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        min-height: 300px;
    }
    
    .featured-content {
        padding: 2rem;
    }
    
    .newsletter-card {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }
    
    .newsletter-form {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .featured-content h2 {
        font-size: 1.5rem;
    }
    
    .featured-content > p {
        font-size: 1rem;
    }
    
    .newsletter-content h2 {
        font-size: 1.75rem;
    }
    
    .newsletter-content p {
        font-size: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ==========================================
   ARTICLE PAGE STYLES
   ========================================== */

.article-hero {
    padding: calc(var(--header-height) + 3rem) 0 3rem;
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%);
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    transition: color 0.3s ease, gap 0.3s ease;
}

.back-to-blog:hover {
    color: var(--primary-color);
    gap: 0.75rem;
}

.article-hero-content {
    max-width: 800px;
}

.article-hero-content .blog-category {
    margin-bottom: 1rem;
}

.article-hero-content h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.article-featured-image {
    margin-top: -1rem;
    padding-bottom: 3rem;
    background: linear-gradient(to bottom, #e0f2fe 0%, var(--background-offset) 50%);
}

.article-featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.article-content {
    padding: 4rem 0;
    background: var(--background-offset);
}

.article-body {
    max-width: 720px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.article-body .lead {
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 500;
}

.article-body h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.article-body p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-body li {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.article-body strong {
    color: var(--text-dark);
}

.article-cta {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.article-cta .btn {
    gap: 0.5rem;
}

/* Related Articles */
.related-articles {
    padding: 5rem 0;
    background: var(--white);
}

.related-articles h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.related-articles .blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Article Page Responsive */
@media (max-width: 768px) {
    .article-hero-content h1 {
        font-size: 1.75rem;
    }
    
    .article-body {
        padding: 2rem 1.5rem;
    }
    
    .article-body .lead {
        font-size: 1.1rem;
    }
    
    .article-body h2 {
        font-size: 1.4rem;
    }
    
    .article-body p,
    .article-body li {
        font-size: 1rem;
    }
    
    .related-articles .blog-grid {
        grid-template-columns: 1fr;
    }
}
