:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --secondary: #8b5cf6;
    --accent: #f472b6;
    --bg-dark: #050816;
    --bg-card: rgba(17, 25, 40, 0.75);
    --bg-card-solid: #111928;
    --text-light: #f8fafc;
    --text-dim: #94a3b8;
    --gradient-main: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-text: linear-gradient(90deg, #60a5fa, #a78bfa, #f472b6, #60a5fa);
    --font-main: 'Outfit', sans-serif;
    --glow-primary: 0 0 20px rgba(59, 130, 246, 0.5), 0 0 40px rgba(59, 130, 246, 0.3);
    --glow-secondary: 0 0 20px rgba(139, 92, 246, 0.5), 0 0 40px rgba(139, 92, 246, 0.3);
}

* {
    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(139, 92, 246, 0.25) 0%, transparent 70%);
    top: 40%;
    right: -15%;
    animation-delay: -7s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.2) 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.1) 0%, rgba(5, 8, 22, 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(5, 8, 22, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(5, 8, 22, 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, #1a1a2e 0%, #0f0f1a 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(17, 25, 40, 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(139, 92, 246, 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;
}

/* 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%); }
}

/* Screenshots Section */
.screenshots-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(59, 130, 246, 0.03) 50%, transparent 100%);
}

.screenshot-carousel {
    overflow-x: auto;
    padding: 40px 0;
    scrollbar-width: none;
    cursor: grab;
}

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

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

.screenshot-track {
    display: flex;
    gap: 30px;
    padding: 0;
    width: max-content;
}

.screenshot-track img {
    height: 520px;
    border-radius: 28px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #111;
}

.screenshot-track img:hover {
    transform: scale(1.05) translateY(-10px);
    z-index: 2;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(59, 130, 246, 0.2);
}

/* 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(139, 92, 246, 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%, #8b5cf6 50%, #f472b6 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(139, 92, 246, 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, #8b5cf6, #ec4899, #8b5cf6, #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(15, 15, 35, 0.97) 0%, rgba(20, 20, 45, 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(139, 92, 246, 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(139, 92, 246, 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(139, 92, 246, 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(5, 8, 22, 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(139, 92, 246, 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(139, 92, 246, 0.15), rgba(59, 130, 246, 0.15));
    border: 1px solid rgba(139, 92, 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(17, 25, 40, 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(139, 92, 246, 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(139, 92, 246, 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(139, 92, 246, 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, #8b5cf6, #f472b6, #8b5cf6, #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(139, 92, 246, 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); }
}