:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --secondary: #1d4ed8;
    --accent: #38bdf8;
    --bg-dark: #0a1628;
    --bg-card: rgba(15, 23, 42, 0.75);
    --bg-card-solid: #0f172a;
    --text-light: #f1f5f9;
    --text-dim: #94a3b8;
    --gradient-main: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    --gradient-text: linear-gradient(90deg, #60a5fa, #93c5fd, #38bdf8, #60a5fa);
    --font-main: 'Outfit', sans-serif;
    --glow-primary: 0 0 20px rgba(59, 130, 246, 0.4), 0 0 40px rgba(59, 130, 246, 0.2);
    --glow-secondary: 0 0 20px rgba(29, 78, 216, 0.4), 0 0 40px rgba(29, 78, 216, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

/* Visually hidden class for screen readers - SEO & Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip to main content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: var(--text-light);
    padding: 8px 16px;
    z-index: 10000;
    text-decoration: none;
    border-radius: 0 0 4px 0;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Extra wide container for hero sections */
.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Particles Canvas */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Animated Blobs */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    animation: blobFloat 20s ease-in-out infinite;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.2) 0%, transparent 70%);
    top: 40%;
    right: -15%;
    animation-delay: -7s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
    bottom: 10%;
    left: 20%;
    animation-delay: -14s;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(-30px, -20px) scale(1.02); }
}

/* Background Glow */
.background-glow {
    position: fixed;
    top: -20%;
    left: -20%;
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, rgba(10, 22, 40, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    background: rgba(10, 22, 40, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 22, 40, 0.95);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

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

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width 0.3s;
}

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

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

.btn {
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

@keyframes shimmer {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.btn-glow {
    box-shadow: var(--glow-primary);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6), 0 0 60px rgba(59, 130, 246, 0.4);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary.btn-glow {
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(59, 130, 246, 0.1);
}

.btn-secondary.btn-glow:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

/* CTA Buttons Container */
.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    position: relative;
    overflow: visible;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
    max-width: 1600px;
    padding: 0 80px;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 28px;
    font-weight: 800;
}

.gradient-text {
    background: var(--gradient-text);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease infinite;
}

.typing-text {
    border-right: 3px solid var(--primary);
    padding-right: 5px;
    animation: blinkCursor 0.75s step-end infinite;
    white-space: nowrap;
    overflow: hidden;
}

@keyframes blinkCursor {
    from, to { border-color: transparent }
    50% { border-color: var(--primary) }
}

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

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-dim);
    margin-bottom: 44px;
    max-width: 560px;
    line-height: 1.8;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.badge .dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-group .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 54px;
}

.app-store-btn img {
    height: 54px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

.app-store-btn:hover img {
    transform: scale(1.05) translateY(-2px);
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.4));
}

.rating-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.rating-badge .stars {
    color: #fbbf24;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.rating-badge span {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: bounce 2s infinite;
}

.scroll-indicator .mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-indicator span {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1000px;
    padding: 40px 60px;
}

.phone-glow {
    position: absolute;
    width: 380px;
    height: 580px;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 0;
    animation: phoneGlow 4s ease-in-out infinite alternate;
}

@keyframes phoneGlow {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.1); }
}

.phone-mockup {
    position: relative;
    z-index: 2;
    border-radius: 44px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    width: 320px;
    height: auto;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
    background: linear-gradient(135deg, #131d35 0%, #0a1628 100%);
    padding: 10px;
}

.phone-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.phone-mockup img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 32px;
    object-fit: contain;
}

.floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.floating-icon:hover {
    transform: scale(1.15) !important;
}

.floating-icon img {
    width: 44px;
    height: 44px;
}

.floating-icon.icon-2 img,
.floating-icon.icon-5 img {
    filter: brightness(0) invert(1);
}

.icon-1 { top: 2%; right: 15%; animation-delay: 0s; }
.icon-2 { top: 12%; left: 8%; animation-delay: 1s; }
.icon-3 { bottom: 25%; left: 5%; animation-delay: 4s; }
.icon-4 { bottom: 8%; right: 8%; animation-delay: 3s; }
.icon-5 { top: 38%; right: 2%; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

/* Logos Section */
.logos-section {
    padding: 80px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.logos-section p {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--text-dim);
    margin-bottom: 40px;
    font-weight: 600;
}

.logo-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
}

.logo-grid img {
    height: 48px;
    opacity: 0.9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(0%) brightness(1.2);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
}

.logo-grid img[src*="anthropic"],
.logo-grid img[src*="xai"] {
    filter: brightness(0) invert(1) opacity(0.9) drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}

.logo-grid img:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1.3) drop-shadow(0 0 30px rgba(59, 130, 246, 0.4));
    transform: scale(1.1);
}

.logo-grid img[src*="anthropic"]:hover,
.logo-grid img[src*="xai"]:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(59, 130, 246, 0.6));
}

/* Features Section */
.features {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

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

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background: radial-gradient(
        800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 255, 255, 0.06),
        transparent 40%
    ), linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
    transform: rotate(-15deg);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(59, 130, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.feature-card:hover::after {
    opacity: 1;
    transform: rotate(0deg);
}

.icon-box {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(29, 78, 216, 0.2) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #60a5fa;
    font-size: 2rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.2);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-dim);
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

/* ==========================================
   LOCAL AI SECTION
   ========================================== */
.local-ai-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0c1a30 50%, var(--bg-dark) 100%);
}

.local-ai-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.local-ai-badge {
    background: rgba(16, 185, 129, 0.15) !important;
    color: #34d399 !important;
    border-color: rgba(16, 185, 129, 0.3) !important;
    gap: 10px !important;
    font-size: 0.95rem !important;
}

.local-ai-badge i {
    font-size: 0.85rem;
}

.local-ai-hero-grid {
    margin-bottom: 60px;
}

/* Device Grid */
.device-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.device-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 36px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.06) 0%, rgba(59, 130, 246, 0.06) 100%);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 140px;
}

.device-card:hover {
    transform: translateY(-6px);
    border-color: rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(59, 130, 246, 0.1) 100%);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
}

.device-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #34d399;
}

.device-card span {
    font-weight: 600;
    color: var(--text-dim);
    font-size: 0.95rem;
}

.device-card:hover span {
    color: var(--text-light);
}

/* Local Model Cards */
.local-ai-models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.local-model-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.local-model-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.local-model-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(16, 185, 129, 0.08);
}

.local-model-card:hover::before {
    opacity: 1;
}

.local-model-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    position: relative;
}

.llama-icon {
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.2) 0%, rgba(96, 165, 250, 0.1) 100%);
    color: #60a5fa;
    box-shadow: 0 8px 24px rgba(29, 78, 216, 0.15);
}

.gemma-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(96, 165, 250, 0.1) 100%);
    color: #60a5fa;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

.qwen-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(52, 211, 153, 0.1) 100%);
    color: #34d399;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}

.smollm-icon {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2) 0%, rgba(125, 211, 252, 0.1) 100%);
    color: #38bdf8;
    box-shadow: 0 8px 24px rgba(56, 189, 248, 0.15);
}

.local-model-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.local-model-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.model-specs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.spec-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.08);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.spec-tag i {
    font-size: 0.7rem;
}

/* Local AI Features Strip */
.local-ai-features-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.local-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 28px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.local-feature-item:hover {
    border-color: rgba(16, 185, 129, 0.25);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(59, 130, 246, 0.03) 100%);
    transform: translateY(-4px);
}

.local-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #34d399;
    font-size: 1.1rem;
}

.local-feature-item h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.local-feature-item p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Local model tag in hero */
.model-tag.local-tag {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(52, 211, 153, 0.1) 100%) !important;
    color: #34d399 !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
    position: relative;
    overflow: hidden;
}

.model-tag.local-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), transparent);
    animation: shimmerLocal 3s infinite;
}

@keyframes shimmerLocal {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

/* Feature card highlight for Local AI */
.feature-card-highlight {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
    border-color: rgba(16, 185, 129, 0.2) !important;
    background: radial-gradient(
        800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(16, 185, 129, 0.06),
        transparent 40%
    ), linear-gradient(135deg, rgba(16, 185, 129, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%) !important;
}

.feature-card-highlight:hover {
    border-color: rgba(16, 185, 129, 0.5) !important;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(16, 185, 129, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.icon-box-local {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(52, 211, 153, 0.15) 100%) !important;
    color: #34d399 !important;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.2) !important;
}

/* Responsive for local AI section */
@media (max-width: 1024px) {
    .local-ai-models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .local-ai-features-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .local-ai-models-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 60px;
    }
    
    .local-ai-features-strip {
        grid-template-columns: 1fr;
    }
    
    .device-grid {
        gap: 16px;
    }
    
    .device-card {
        padding: 20px 28px;
        min-width: 120px;
    }
}

/* Chat Section */
.chat-section {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
    z-index: 1;
}

/* Creative Section */
.creative-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-dark), #0f172a);
    position: relative;
}

.creative-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 60px;
}

.creative-card {
    display: flex;
    align-items: center;
    gap: 60px;
    background: radial-gradient(
        800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 255, 255, 0.06),
        transparent 40%
    ), var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.creative-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
}

.creative-card.reverse {
    flex-direction: row-reverse;
}

.creative-content {
    flex: 1;
}

.creative-content h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.creative-content p {
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.creative-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.creative-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.creative-card:hover .creative-image img {
    transform: scale(1.02);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.feature-list li i {
    color: var(--secondary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .creative-card, .creative-card.reverse {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }
    
    .creative-content h3 {
        font-size: 1.5rem;
    }
}

/* Assistants Marquee */
.assistants-section {
    padding: 120px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.marquee-container {
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.marquee-content {
    display: flex;
    gap: 24px;
    animation: scroll 50s linear infinite;
    width: max-content;
    padding: 20px 0;
}

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

.assistant-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 220px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.assistant-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(59, 130, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.assistant-card img {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    margin-bottom: 20px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.assistant-card span {
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-dim);
    transition: color 0.3s;
}

.assistant-card:hover span {
    color: var(--text-light);
}

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

/* ========================================
   Premium App Store Promotional Screenshots
   ======================================== */
.screenshots-section {
    padding: 120px 0 80px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(59, 130, 246, 0.16), transparent 24%),
        radial-gradient(circle at 88% 72%, rgba(236, 72, 153, 0.12), transparent 26%),
        linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.015) 50%, transparent 100%);
}

.screenshots-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(circle at center, black 32%, transparent 88%);
    pointer-events: none;
    opacity: 0.18;
}

.promo-badge-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.promo-platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--text-dim);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.promo-platform-badge i {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Carousel container — full-bleed horizontal scroll */
.promo-carousel {
    overflow-x: auto;
    overflow-y: visible;
    padding: 40px 0 60px;
    scrollbar-width: none;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
}

.promo-carousel::-webkit-scrollbar {
    display: none;
}

.promo-carousel:active {
    cursor: grabbing;
}

.promo-track {
    display: flex;
    gap: 30px;
    padding: 0 max(32px, calc((100vw - 1200px) / 2));
    width: max-content;
}

/* Individual promo slide */
.promo-slide {
    position: relative;
    width: 360px;
    min-width: 360px;
    min-height: 760px;
    border-radius: 40px;
    padding: 34px 28px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.38),
        0 0 0 1px rgba(255, 255, 255, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.promo-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 40px;
    opacity: 0.18;
    background:
        radial-gradient(ellipse at 24% 10%, currentColor 0%, transparent 54%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 20%, transparent 80%, rgba(255, 255, 255, 0.03) 100%);
    pointer-events: none;
}

.promo-slide::after {
    content: '';
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 17%;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, currentColor 0%, transparent 70%);
    opacity: 0.22;
    filter: blur(40px);
    pointer-events: none;
}

.promo-slide:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 38px 110px rgba(0, 0, 0, 0.48),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Color variants */
.promo-slide--blue {
    background: linear-gradient(168deg, #0c1a3d 0%, #0a1628 40%, #060d1a 100%);
    color: #3b82f6;
}
.promo-slide--violet {
    background: linear-gradient(168deg, #0c1a3d 0%, #0a1628 40%, #060d1a 100%);
    color: #2563eb;
}
.promo-slide--teal {
    background: linear-gradient(168deg, #0c2d2d 0%, #081c1c 40%, #050f14 100%);
    color: #14b8a6;
}
.promo-slide--rose {
    background: linear-gradient(168deg, #2d0c1e 0%, #1c0814 40%, #14050d 100%);
    color: #f43f5e;
}
.promo-slide--amber {
    background: linear-gradient(168deg, #2d1f0c 0%, #1c1408 40%, #140e05 100%);
    color: #f59e0b;
}
.promo-slide--green {
    background: linear-gradient(168deg, #0c2d14 0%, #081c0e 40%, #05140a 100%);
    color: #22c55e;
}
.promo-slide--cyan {
    background: linear-gradient(168deg, #0c2535 0%, #081a24 40%, #051018 100%);
    color: #06b6d4;
}
.promo-slide--indigo {
    background: linear-gradient(168deg, #10103d 0%, #0c0c28 40%, #08081a 100%);
    color: #6366f1;
}
.promo-slide--pink {
    background: linear-gradient(168deg, #0c1e3d 0%, #081628 40%, #050e1a 100%);
    color: #38bdf8;
}

/* Text content */
.promo-slide-content {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.promo-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.72rem;
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.promo-title {
    font-family: var(--font-main);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
    text-wrap: balance;
}

.promo-subtitle {
    font-size: 0.98rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.68);
    font-weight: 500;
    max-width: 290px;
    margin: 0 auto;
    text-wrap: balance;
}

/* Screenshot artwork */
.promo-artwork {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    min-height: 575px;
}

.promo-artwork::before {
    content: '';
    position: absolute;
    width: 88%;
    height: 82%;
    bottom: 2%;
    border-radius: 40px;
    background: radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.02) 56%, transparent 76%);
    opacity: 0.2;
    filter: blur(22px);
}

.promo-artwork::after {
    content: '';
    position: absolute;
    width: 70%;
    height: 32px;
    bottom: 3%;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    filter: blur(18px);
    opacity: 0.8;
}

.promo-shot-shell {
    position: relative;
    width: 314px;
    aspect-ratio: 1284 / 2778;
    border-radius: 34px;
    box-shadow:
        0 46px 90px rgba(0, 0, 0, 0.46),
        0 14px 34px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    transform: translateY(44px);
}

.promo-shot-shell::before {
    content: none;
}

.promo-shot-shell::after {
    content: none;
}

.promo-shot {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 32px;
    object-fit: cover;
    object-position: top;
    box-shadow: 0 26px 54px rgba(0, 0, 0, 0.28);
}

/* Scroll hint */
.promo-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    animation: hintPulse 2.5s ease-in-out infinite;
}

.promo-scroll-hint i {
    font-size: 0.75rem;
    animation: hintArrow 2.5s ease-in-out infinite;
}

@keyframes hintPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

@keyframes hintArrow {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(6px); }
}

/* Responsive — Tablet */
@media (max-width: 1024px) {
    .promo-slide {
        width: 320px;
        min-width: 320px;
        min-height: 700px;
        border-radius: 34px;
        padding: 30px 24px 0;
    }
    .promo-title {
        font-size: 1.75rem;
    }
    .promo-subtitle {
        font-size: 0.92rem;
    }
    .promo-track {
        gap: 20px;
        padding: 0 24px;
    }
    .promo-artwork {
        min-height: 520px;
    }
    .promo-shot-shell {
        width: 278px;
        border-radius: 30px;
    }
    .promo-shot {
        border-radius: 28px;
    }
}

/* Responsive — Mobile */
@media (max-width: 768px) {
    .screenshots-section {
        padding: 80px 0 50px;
    }
    .promo-slide {
        width: 280px;
        min-width: 280px;
        min-height: 610px;
        border-radius: 30px;
        padding: 24px 18px 0;
    }
    .promo-title {
        font-size: 1.45rem;
    }
    .promo-subtitle {
        font-size: 0.84rem;
        max-width: 240px;
    }
    .promo-track {
        gap: 16px;
        padding: 0 16px;
    }
    .promo-artwork {
        min-height: 430px;
    }
    .promo-shot-shell {
        width: 244px;
        border-radius: 28px;
        transform: translateY(26px);
    }
    .promo-shot {
        border-radius: 26px;
    }
    .promo-eyebrow {
        font-size: 0.66rem;
        padding: 7px 11px;
        letter-spacing: 0.14em;
    }
    .promo-badge-row {
        gap: 8px;
    }
    .promo-platform-badge {
        font-size: 0.72rem;
        padding: 5px 12px;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 80px;
    font-family: Georgia, serif;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.4) 0%, rgba(59, 130, 246, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    pointer-events: none;
    opacity: 0.5;
}

.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(59, 130, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.review-card.featured-review {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(29, 78, 216, 0.05) 100%);
    border-color: rgba(59, 130, 246, 0.3);
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-card.featured-review::before {
    color: rgba(59, 130, 246, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #0ea5e9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.reviewer-info {
    flex: 1;
}

.reviewer-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
    font-weight: 600;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.review-stars {
    color: #fbbf24;
    font-size: 0.9rem;
    letter-spacing: 2px;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.5));
}

.review-text {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.featured-review .review-text {
    font-size: 1.1rem;
    color: var(--text-light);
}

.review-date {
    font-size: 0.8rem;
    color: rgba(148, 163, 184, 0.6);
}

/* Pricing Section */
.pricing-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

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

.pricing-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(29, 78, 216, 0.08) 100%);
    border: none;
    transform: scale(1.05);
    position: relative;
    z-index: 1;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 30px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8, #0ea5e9, #1d4ed8, #3b82f6);
    background-size: 300% 300%;
    animation: gradientBorder 4s ease infinite;
    z-index: -2;
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.97) 0%, rgba(15, 23, 42, 0.95) 100%);
    z-index: -1;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card.featured:hover::before {
    animation: gradientBorder 2s ease infinite;
    filter: blur(3px);
    opacity: 0.9;
}

@keyframes gradientBorder {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--glow-primary);
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-header h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--text-dim);
}

.price {
    font-size: 3rem;
    font-weight: 800;
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: super;
    margin-right: 4px;
    opacity: 0.7;
}

.price .period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dim);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-dim);
    font-size: 0.95rem;
}

.pricing-features li i {
    color: #22c55e;
    font-size: 0.9rem;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    display: block;
}

/* CTA Section */
.cta-section {
    padding: 80px 0 120px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(29, 78, 216, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 80px 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% -50%, rgba(59, 130, 246, 0.25), transparent 60%);
    pointer-events: none;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 150%, rgba(29, 78, 216, 0.15), transparent 60%);
    pointer-events: none;
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-box p {
    color: var(--text-dim);
    font-size: 1.3rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.cta-box .app-store-btn {
    position: relative;
    z-index: 1;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.footer-brand img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

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

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

.copyright {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Extra large screens - maximize space usage */
@media (min-width: 1800px) {
    .hero .container {
        max-width: 1800px;
        gap: 120px;
    }
    
    .hero-content h1 {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        max-width: 620px;
    }
    
    .phone-mockup {
        width: 360px;
    }
    
    .floating-icon {
        width: 90px;
        height: 90px;
        border-radius: 24px;
    }
    
    .floating-icon img {
        width: 50px;
        height: 50px;
    }
    
    .icon-1 { top: 2%; right: 10%; }
    .icon-2 { top: 8%; left: 2%; }
    .icon-3 { bottom: 45%; left: 0%; }
    .icon-4 { bottom: 5%; right: 5%; }
    .icon-5 { top: 30%; right: 0%; }
}

/* Large screens */
@media (min-width: 1400px) and (max-width: 1799px) {
    .hero .container {
        max-width: 1500px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 0 40px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .floating-icon {
        width: 60px;
        height: 60px;
    }
    
    .floating-icon img {
        width: 32px;
        height: 32px;
    }
    
    .icon-1 { top: 2%; right: 12%; }
    .icon-2 { top: 12%; left: 2%; }
    .icon-3 { bottom: 42%; left: 0%; }
    .icon-4 { bottom: 10%; right: 5%; }
    .icon-5 { top: 32%; right: 0%; }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .pricing-card.featured:hover::before {
        filter: none;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .review-card.featured-review {
        grid-row: span 1;
    }
    
    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        min-height: auto;
        padding: 140px 0 80px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
        font-size: 1.1rem;
    }
    
    .cta-group {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 40px;
        padding: 30px 40px;
    }

    .phone-mockup {
        width: 280px;
        transform: none;
    }
    
    .phone-mockup:hover {
        transform: scale(1.02);
    }
    
    .floating-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
    }
    
    .floating-icon img {
        width: 28px;
        height: 28px;
    }
    
    .icon-1 { top: 2%; right: 8%; }
    .icon-2 { top: 12%; left: 8%; }
    .icon-3 { bottom: 42%; left: 0%; }
    .icon-4 { bottom: 8%; right: 8%; }
    .icon-5 { top: 32%; right: 0%; }
    
    .scroll-indicator {
        display: none;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 50px 24px;
        border-radius: 28px;
    }
    
    .cta-box h2 {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Support Page Styles */
.page-header {
    padding-top: 120px;
    padding-bottom: 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-dim);
}

.support-section {
    padding-bottom: 100px;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-container, .faq-container {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.contact-form-container h2, .faq-container h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--text-light);
}

.contact-form-container p {
    color: var(--text-dim);
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-light);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 16px;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-dim);
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 12px;
}

.direct-contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.direct-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-light);
}

.direct-contact a {
    color: var(--primary);
    text-decoration: none;
}

.direct-contact a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
}

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

/* Blog Listing Page */
.blog-hero {
    padding: 160px 0 80px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.blog-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 100%;
    animation: gradientShift 4s ease infinite;
}

.blog-hero .hero-description {
    font-size: 1.25rem;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.blog-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.category-tag {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-dim);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.category-tag:hover,
.category-tag.active {
    background: var(--gradient-main);
    border-color: transparent;
    color: white;
    box-shadow: var(--glow-primary);
}

/* Blog Grid */
.blog-section {
    padding: 60px 0 120px;
    position: relative;
    z-index: 1;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 32px;
    margin-top: 20px;
}

/* Blog Card */
.blog-card {
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 255, 255, 0.06),
        transparent 40%
    ), linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(29, 78, 216, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(10, 22, 40, 0.8) 100%);
    z-index: 1;
}

.blog-card-image i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    z-index: 0;
}

.blog-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--gradient-main);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-meta i {
    color: var(--primary);
    font-size: 0.8rem;
}

.blog-card h3 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover h3 {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-card-excerpt {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}

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

.blog-card:hover .blog-card-link {
    gap: 12px;
}

/* Featured Blog Card */
.blog-card.featured {
    grid-column: span 2;
    flex-direction: row;
}

.blog-card.featured .blog-card-image {
    width: 45%;
    height: auto;
    min-height: 350px;
}

.blog-card.featured .blog-card-content {
    width: 55%;
    padding: 40px;
    justify-content: center;
}

.blog-card.featured h3 {
    font-size: 1.8rem;
}

/* Blog Post Page Styles */
.blog-post-header {
    padding: 160px 0 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.blog-post-header .container {
    max-width: 900px;
}

.blog-post-category {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-main);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.blog-post-header h1 {
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--text-light);
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    color: var(--text-dim);
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-post-meta i {
    color: var(--primary);
}

.blog-post-image {
    width: 100%;
    max-width: 1000px;
    height: 400px;
    margin: 40px auto;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4), rgba(29, 78, 216, 0.4));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.blog-post-image i {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Blog Post Content */
.blog-post-content {
    padding: 60px 0 100px;
    position: relative;
    z-index: 1;
}

.blog-post-content .container {
    max-width: 800px;
}

.blog-post-body {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.9;
}

.blog-post-body h2 {
    font-size: 2rem;
    margin: 48px 0 20px;
    color: var(--text-light);
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-post-body h3 {
    font-size: 1.5rem;
    margin: 36px 0 16px;
    color: var(--text-light);
}

.blog-post-body p {
    margin-bottom: 24px;
    color: #c8d4e6;
}

.blog-post-body ul,
.blog-post-body ol {
    margin: 24px 0;
    padding-left: 24px;
}

.blog-post-body li {
    margin-bottom: 12px;
    color: #c8d4e6;
}

.blog-post-body strong {
    color: var(--text-light);
    font-weight: 600;
}

.blog-post-body blockquote {
    margin: 32px 0;
    padding: 24px 32px;
    background: rgba(59, 130, 246, 0.1);
    border-left: 4px solid var(--primary);
    border-radius: 0 16px 16px 0;
    font-style: italic;
    color: var(--text-light);
}

.blog-post-body a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.blog-post-body a:hover {
    border-bottom-color: var(--primary);
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    margin: 32px 0;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table th {
    background: rgba(59, 130, 246, 0.15);
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.comparison-table td {
    color: #c8d4e6;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Key Takeaways Box */
.key-takeaways {
    margin: 40px 0;
    padding: 32px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(29, 78, 216, 0.15));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
}

.key-takeaways h3 {
    margin-top: 0 !important;
    display: flex;
    align-items: center;
    gap: 12px;
}

.key-takeaways h3 i {
    color: var(--secondary);
}

/* CTA Box in Blog Post */
.blog-cta-box {
    margin: 48px 0;
    padding: 40px;
    background: var(--gradient-main);
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.blog-cta-box h3 {
    margin: 0 0 12px !important;
    color: white !important;
    background: none !important;
    -webkit-text-fill-color: white !important;
    font-size: 1.6rem;
}

.blog-cta-box p {
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 24px;
}

.blog-cta-box .btn {
    background: white;
    color: var(--primary-dark);
    padding: 14px 32px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.blog-cta-box .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Author Box */
.author-box {
    margin-top: 60px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    font-size: 2rem;
    color: white;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: var(--text-light);
}

.author-info p {
    margin: 0;
    font-size: 0.95rem;
}

/* Related Posts */
.related-posts {
    padding: 80px 0;
    background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.5));
    position: relative;
    z-index: 1;
}

.related-posts h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Table of Contents */
.table-of-contents {
    margin: 40px 0;
    padding: 28px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.table-of-contents h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-of-contents li {
    margin-bottom: 10px;
}

.table-of-contents a {
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.table-of-contents a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.table-of-contents a::before {
    content: '→';
    color: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.table-of-contents a:hover::before {
    opacity: 1;
}

/* Blog Responsive Styles */
@media (max-width: 1024px) {
    .blog-card.featured {
        grid-column: span 1;
        flex-direction: column;
    }
    
    .blog-card.featured .blog-card-image {
        width: 100%;
        height: 220px;
    }
    
    .blog-card.featured .blog-card-content {
        width: 100%;
        padding: 28px;
    }
    
    .blog-card.featured h3 {
        font-size: 1.4rem;
    }
    
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2.5rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post-header h1 {
        font-size: 2rem;
    }
    
    .blog-post-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .blog-post-image {
        height: 250px;
        margin: 30px auto;
    }
    
    .blog-post-body h2 {
        font-size: 1.6rem;
    }
    
    .blog-post-body h3 {
        font-size: 1.3rem;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-cta-box {
        padding: 30px 24px;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 14px;
    }
}
/* ========================================
   NEW ENHANCED VISUAL STYLES 2026
   ======================================== */

/* AI Models Badge in Hero */
.ai-models-badge {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
    margin-bottom: 32px;
}

.ai-models-badge .badge-label {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.model-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.model-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(29, 78, 216, 0.15) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #60a5fa;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

.model-tag:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(29, 78, 216, 0.25) 100%);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

/* CTA Features */
.cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.cta-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.cta-feature i {
    color: #22c55e;
}

.cta-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

/* Enhanced Glowing Effects */
.hero-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(29, 78, 216, 0.1) 40%, transparent 70%);
    filter: blur(60px);
    animation: heroGlow 6s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes heroGlow {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.2); }
}

/* Enhanced Feature Card Animations */
.feature-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

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

/* Animated Gradient Border for Featured Pricing */
.pricing-card.featured::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8, #0ea5e9, #1d4ed8, #3b82f6);
    background-size: 300% 100%;
    border-radius: 30px;
    z-index: -1;
    animation: gradientBorder 4s ease infinite;
}

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

/* Enhanced Icon Glow */
.icon-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    filter: blur(15px);
    opacity: 0.5;
    border-radius: inherit;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.feature-card:hover .icon-box::after {
    opacity: 0.8;
}

/* Sparkle Animation on Buttons */
.btn-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.btn-glow:hover::after {
    left: 100%;
}

/* Stats Counter Section (for potential addition) */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(59, 130, 246, 0.05) 50%, transparent 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-dim);
    margin-top: 8px;
}

/* Enhanced Badge Pulse Animation */
.badge.pulse::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: inherit;
    animation: badgePulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes badgePulse {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.15); }
}

/* Responsive Adjustments for New Elements */
@media (max-width: 768px) {
    .ai-models-badge {
        align-items: center;
        text-align: center;
    }
    
    .model-logos {
        justify-content: center;
    }
    
    .model-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .cta-features {
        gap: 12px;
    }
    
    .cta-feature {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }
    
    .cta-buttons .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Trust Indicators */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px 0;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dim);
    font-size: 0.95rem;
}

.trust-badge i {
    font-size: 1.5rem;
    color: var(--primary);
}

.trust-badge span {
    font-weight: 500;
}

/* Animated Text Highlight */
.highlight-text {
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.3), rgba(29, 78, 216, 0.3));
    border-radius: 4px;
    z-index: -1;
}

/* Enhanced Scroll Indicator */
.scroll-indicator::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

/* ==========================================
   Legal Pages — Privacy Policy & Terms
   ========================================== */

.legal-hero {
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
}

.legal-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.legal-hero .legal-subtitle {
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
    font-weight: 400;
}

.legal-hero .legal-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.legal-hero .legal-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.45);
    font-size: 0.875rem;
}

.legal-hero .legal-meta span i {
    color: rgba(99, 102, 241, 0.7);
    font-size: 0.8rem;
}

/* Table of Contents */
.legal-toc {
    padding: 0 0 40px;
}

.legal-toc-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 28px 32px;
    max-width: 860px;
    margin: 0 auto;
}

.legal-toc-card h2 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 6px 24px;
}

.legal-toc-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.legal-toc-list li a:hover {
    background: rgba(99, 102, 241, 0.08);
    color: rgba(255,255,255,0.9);
}

.legal-toc-list li a .toc-number {
    color: rgba(99, 102, 241, 0.6);
    font-weight: 600;
    font-size: 0.8rem;
    min-width: 20px;
}

/* Legal Body */
.legal-body {
    padding: 0 0 80px;
}

.legal-container {
    max-width: 860px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.legal-section-header .section-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.legal-section-header .section-icon.icon-blue {
    background: rgba(59, 130, 246, 0.12);
    color: #3b82f6;
}
.legal-section-header .section-icon.icon-purple {
    background: rgba(29, 78, 216, 0.12);
    color: #2563eb;
}
.legal-section-header .section-icon.icon-green {
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
}
.legal-section-header .section-icon.icon-amber {
    background: rgba(245, 158, 11, 0.12);
    color: #f59e0b;
}
.legal-section-header .section-icon.icon-rose {
    background: rgba(244, 63, 94, 0.12);
    color: #f43f5e;
}
.legal-section-header .section-icon.icon-cyan {
    background: rgba(6, 182, 212, 0.12);
    color: #06b6d4;
}
.legal-section-header .section-icon.icon-indigo {
    background: rgba(99, 102, 241, 0.12);
    color: #6366f1;
}
.legal-section-header .section-icon.icon-emerald {
    background: rgba(52, 211, 153, 0.12);
    color: #34d399;
}
.legal-section-header .section-icon.icon-teal {
    background: rgba(20, 184, 166, 0.12);
    color: #14b8a6;
}
.legal-section-header .section-icon.icon-orange {
    background: rgba(249, 115, 22, 0.12);
    color: #f97316;
}
.legal-section-header .section-icon.icon-pink {
    background: rgba(56, 189, 248, 0.12);
    color: #38bdf8;
}
.legal-section-header .section-icon.icon-sky {
    background: rgba(14, 165, 233, 0.12);
    color: #0ea5e9;
}

.legal-section-header h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: rgba(255,255,255,0.92);
    margin: 0;
}

.legal-section p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.legal-section h3 {
    color: rgba(255,255,255,0.82);
    font-size: 1.05rem;
    font-weight: 600;
    margin: 28px 0 12px;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.legal-section ul li {
    position: relative;
    padding: 8px 0 8px 24px;
    color: rgba(255,255,255,0.58);
    font-size: 0.93rem;
    line-height: 1.7;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.5);
}

.legal-section a {
    color: #818cf8;
    text-decoration: none;
    transition: color 0.2s;
}

.legal-section a:hover {
    color: #a5b4fc;
    text-decoration: underline;
}

/* Info boxes / callouts */
.legal-callout {
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 20px 0;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.legal-callout.callout-green {
    background: rgba(16, 185, 129, 0.06);
    border-color: rgba(16, 185, 129, 0.12);
}

.legal-callout.callout-amber {
    background: rgba(245, 158, 11, 0.06);
    border-color: rgba(245, 158, 11, 0.12);
}

.legal-callout i {
    color: #818cf8;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.legal-callout.callout-green i {
    color: #34d399;
}

.legal-callout.callout-amber i {
    color: #fbbf24;
}

.legal-callout p {
    margin: 0;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* Provider grid */
.legal-provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
    margin: 16px 0;
}

.legal-provider-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: border-color 0.2s;
}

.legal-provider-item:hover {
    border-color: rgba(255,255,255,0.12);
}

.legal-provider-item .provider-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.legal-provider-item .provider-info {
    display: flex;
    flex-direction: column;
}

.legal-provider-item .provider-name {
    color: rgba(255,255,255,0.8);
    font-size: 0.88rem;
    font-weight: 600;
}

.legal-provider-item .provider-detail {
    color: rgba(255,255,255,0.4);
    font-size: 0.78rem;
}

.legal-provider-item a {
    margin-left: auto;
    color: rgba(255,255,255,0.35);
    font-size: 0.75rem;
    text-decoration: none;
    transition: color 0.2s;
}

.legal-provider-item a:hover {
    color: #818cf8;
}

/* Legal footer contact */
.legal-contact-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    margin-top: 48px;
}

.legal-contact-card h2 {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.legal-contact-card p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.legal-contact-card a.legal-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #818cf8;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.legal-contact-card a.legal-email:hover {
    color: #a5b4fc;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-hero {
        padding: 120px 0 40px;
    }
    .legal-hero h1 {
        font-size: 1.8rem;
    }
    .legal-toc-card {
        padding: 20px 20px;
    }
    .legal-toc-list {
        grid-template-columns: 1fr;
    }
    .legal-section-header .section-icon {
        display: none;
    }
    .legal-provider-grid {
        grid-template-columns: 1fr;
    }
    .legal-callout {
        padding: 16px 18px;
    }
    .legal-contact-card {
        padding: 24px 20px;
    }
}
}